@charset "UTF-8";
html {
  scroll-behavior: smooth; }

body.admin-bar .nav-wrap {
  top: 32px; }

/* ================================================================
   USX CYBER — HOME PAGE
   Dynamic Defense™ | Sleek, Commanding, Market-Leader
   ================================================================ */
/* ── Design Tokens ─────────────────────────────────────────────── */
:root {
  --cida: #44d7b6;
  /* brand teal */
  --principle: #4fabbd;
  /* CTA blue   */
  --deep: #006e7b;
  /* anchor panels */
  --alert: #f1754a;
  /* warning orange */
  --bg: #07080b;
  --bg2: #0c0f14;
  --bg3: #111620;
  --surface: #161d2a;
  --text: #eef2f8;
  --muted: #9bb8cc;
  --faint: rgba(255, 255, 255, 0.04);
  --border: rgba(68, 215, 182, 0.13);
  --font-d: "Outfit", sans-serif;
  --font-b: "DM Sans", sans-serif;
  --max-w: 1200px;
  --nav-h: 68px;
  --r: 6px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --tr: all 0.2s var(--ease); }

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

html {
  scroll-behavior: smooth; }

body {
  font-family: var(--font-b);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  /* dot-grid texture */
  background-image: radial-gradient(rgba(68, 215, 182, 0.05) 1px, transparent 1px);
  background-size: 32px 32px; }

img {
  max-width: 100%;
  height: auto;
  display: block; }

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

ul {
  list-style: none; }

strong {
  color: var(--text);
  font-weight: 600; }

/* ── Container ──────────────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 36px; }

/* ── Headings ───────────────────────────────────────────────────── */
h1,
h2,
h3,
h4 {
  font-family: var(--font-d);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em; }

.sec-h {
  font-size: clamp(32px, 5vw, 56px);
  margin-bottom: 20px;
  letter-spacing: -0.025em; }

/* ── Eyebrow ─────────────────────────────────────────────────────── */
.eyebrow {
  display: inline-block;
  font-family: var(--font-d);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cida);
  margin-bottom: 20px; }

/* ── Buttons ─────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-d);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 30px;
  border-radius: var(--r);
  transition: var(--tr);
  cursor: pointer;
  border: none; }

.btn-cta {
  background: var(--principle);
  color: #fff;
  font-size: 16px;
  padding: 16px 36px; }

.btn-cta:hover {
  background: #5cbece;
  box-shadow: 0 0 32px rgba(79, 171, 189, 0.45);
  transform: translateY(-2px); }

.btn-cida {
  background: var(--cida);
  color: #000; }

.btn-cida:hover {
  background: #5ce8c7;
  box-shadow: 0 0 28px rgba(68, 215, 182, 0.35);
  transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 16px;
  padding: 16px 36px; }

.btn-outline:hover {
  border-color: var(--cida);
  color: var(--cida);
  background: rgba(68, 215, 182, 0.04); }

.btn-block {
  width: 100%;
  justify-content: center; }

/* ── Scroll-reveal ───────────────────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease); }

[data-reveal-right] {
  opacity: 0;
  transform: translateX(22px);
  transition: opacity 0.65s var(--ease) 0.12s, transform 0.65s var(--ease) 0.12s; }

.revealed {
  opacity: 1 !important;
  transform: translate(0, 0) !important; }

/* ================================================================
   NAVIGATION
   ================================================================ */
.nav-wrap {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: var(--nav-h);
  background: rgba(7, 8, 11, 0.65);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border-bottom: 1px solid rgba(68, 215, 182, 0.06);
  transition: var(--tr); }

.nav-wrap.scrolled {
  background: rgba(7, 8, 11, 0.96);
  border-bottom-color: var(--border);
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.55); }

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 36px;
  height: 100%;
  display: flex;
  align-items: center; }

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0; }

.nav-logo img {
  height: 42px;
  width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: 44px; }

.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.02em;
  transition: color 0.15s; }

.nav-links a:hover {
  color: var(--text); }

.nav-mobile-cta {
  display: none; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto; }

.nav-login {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  padding: 8px 14px;
  transition: color 0.15s; }

.nav-login:hover {
  color: var(--text); }

.nav-cta {
  font-family: var(--font-d);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: var(--r);
  background: var(--principle);
  color: #fff;
  transition: all 0.17s;
  white-space: nowrap;
  position: relative;
  overflow: hidden; }

.nav-cta:hover {
  background: #5cbece;
  box-shadow: 0 0 20px rgba(79, 171, 189, 0.35); }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: 16px; }

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--tr); }

.nav-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px); }

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0); }

.nav-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px); }

/* ================================================================
   HERO
   ================================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  padding: 0; }

/* Ambient orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0; }

.hero-orb-1 {
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(68, 215, 182, 0.07) 0%, transparent 60%);
  top: -250px;
  right: -180px;
  animation: orbDrift 12s ease-in-out infinite; }

.hero-orb-2 {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(0, 110, 123, 0.09) 0%, transparent 60%);
  bottom: -150px;
  left: -180px;
  animation: orbDrift 14s ease-in-out infinite reverse; }

.hero-orb-3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(79, 171, 189, 0.05) 0%, transparent 60%);
  top: 40%;
  left: 35%;
  animation: orbDrift 9s ease-in-out infinite 3s; }

@keyframes orbDrift {
  0%,
  100% {
    transform: translate(0, 0); }
  33% {
    transform: translate(30px, -20px); }
  66% {
    transform: translate(-20px, 30px); } }

/* Hero two-col layout */
.hero-body {
  position: relative;
  z-index: 1;
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
  padding-top: calc(var(--nav-h) + 30px);
  padding-bottom: 60px; }

/* ── Hero text ── */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-d);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cida);
  margin-bottom: 32px;
  animation: fadeUp 0.5s ease both 0.05s; }

.eyebrow-line {
  width: 28px;
  height: 1px;
  background: var(--cida);
  flex-shrink: 0; }

.hero-text h1 {
  font-size: clamp(46px, 6.5vw, 84px);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 28px;
  animation: fadeUp 0.55s ease both 0.15s; }

.h1-line {
  display: block; }

.h1-white {
  color: var(--text); }

.h1-cida {
  color: var(--cida); }

.h1-blue {
  color: var(--principle); }

.hero-lede {
  font-size: clamp(15px, 1.6vw, 18px);
  color: var(--muted);
  line-height: 1.78;
  max-width: 520px;
  margin-bottom: 40px;
  animation: fadeUp 0.5s ease both 0.25s; }

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 44px;
  animation: fadeUp 0.5s ease both 0.35s; }

.hero-proof {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  animation: fadeUp 0.5s ease both 0.45s; }

.proof-item {
  display: flex;
  align-items: center;
  gap: 8px; }

.proof-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cida);
  flex-shrink: 0; }

.proof-item span:last-child {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.01em; }

.proof-sep {
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, 0.1);
  flex-shrink: 0; }

/* ── Hero visual (video frame) ── */
.hero-visual {
  position: relative;
  animation: fadeLeft 0.65s ease both 0.2s; }

@keyframes fadeLeft {
  from {
    opacity: 0;
    transform: translateX(28px); }
  to {
    opacity: 1;
    transform: translateX(0); } }

.video-frame {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(68, 215, 182, 0.22);
  animation: frameGlow 5s ease-in-out infinite;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.65); }

@keyframes frameGlow {
  0%,
  100% {
    box-shadow: 0 0 0 1px rgba(68, 215, 182, 0.06), 0 0 50px rgba(68, 215, 182, 0.07), 0 30px 80px rgba(0, 0, 0, 0.65); }
  50% {
    box-shadow: 0 0 0 1px rgba(68, 215, 182, 0.16), 0 0 90px rgba(68, 215, 182, 0.14), 0 30px 80px rgba(0, 0, 0, 0.65); } }

.video-chrome {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(7, 8, 11, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06); }

.vc-dots {
  display: flex;
  gap: 5px; }

.vc-dots span {
  width: 11px;
  height: 11px;
  border-radius: 50%; }

.dot-r {
  background: #ff5f57; }

.dot-y {
  background: #febc2e; }

.dot-g {
  background: #28c840; }

.vc-label {
  flex: 1;
  text-align: center;
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.28);
  font-family: var(--font-d);
  letter-spacing: 0.04em; }

.vc-live {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-d);
  font-size: 10px;
  font-weight: 700;
  color: var(--cida);
  letter-spacing: 0.1em;
  text-transform: uppercase; }

.live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cida);
  animation: livePulse 2s ease infinite; }

@keyframes livePulse {
  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(68, 215, 182, 0.5); }
  50% {
    opacity: 0.7;
    box-shadow: 0 0 0 6px rgba(68, 215, 182, 0); } }

.video-body video {
  width: 100%;
  display: block;
  background: #000; }

/* Floating stat pills */
.float-badge {
  position: absolute;
  background: rgba(11, 14, 20, 0.95);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 12px 18px;
  backdrop-filter: blur(14px); }

.float-badge-tl {
  bottom: -22px;
  left: -32px;
  animation: badgeFloat 4.5s ease-in-out infinite; }

.float-badge-br {
  top: 36px;
  right: -32px;
  animation: badgeFloat 4.5s ease-in-out infinite 2.2s; }

.fb-num {
  display: block;
  font-family: var(--font-d);
  font-size: 22px;
  font-weight: 800;
  color: var(--cida);
  line-height: 1;
  margin-bottom: 3px; }

.fb-label {
  display: block;
  font-size: 11px;
  color: var(--muted);
  white-space: nowrap; }

@keyframes badgeFloat {
  0%,
  100% {
    transform: translateY(0); }
  50% {
    transform: translateY(-9px); } }

/* ── Stats strip ── */
.stats-strip {
  position: relative;
  z-index: 1;
  padding: 0 36px 64px; }

.stats-inner {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  padding: 22px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px; }

.stat-item {
  text-align: center; }

.stn {
  display: block;
  font-family: var(--font-d);
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--cida);
  line-height: 1;
  margin-bottom: 4px; }

.stl {
  font-size: 11px;
  color: var(--muted);
  font-weight: 500; }

.st-div {
  width: 1px;
  height: 34px;
  background: rgba(255, 255, 255, 0.07);
  flex-shrink: 0; }

/* Hero entrance animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px); }
  to {
    opacity: 1;
    transform: translateY(0); } }

/* ================================================================
   STATEMENT BAR
   ================================================================ */
.statement-bar {
  background: var(--cida);
  position: relative;
  z-index: 1;
  overflow: hidden; }

/* Shimmer sweep */
.statement-bar::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent 20%, rgba(255, 255, 255, 0.18) 50%, transparent 80%);
  animation: sbShimmer 3.5s ease infinite; }

@keyframes sbShimmer {
  from {
    transform: translateX(-100%); }
  to {
    transform: translateX(100%); } }

.sb-inner {
  display: flex;
  align-items: stretch;
  position: relative; }

.sb-text {
  flex: 1;
  padding: 26px 0;
  font-family: var(--font-d);
  font-size: clamp(16px, 2.1vw, 22px);
  font-weight: 700;
  color: #000;
  line-height: 1.2;
  letter-spacing: -0.01em; }

.sb-link {
  background: #000;
  padding: 26px 44px;
  display: flex;
  align-items: center;
  font-family: var(--font-d);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cida);
  white-space: nowrap;
  transition: background 0.15s;
  flex-shrink: 0; }

.sb-link:hover {
  background: #111; }

/* ================================================================
   SECTIONS — SHARED
   ================================================================ */
section {
  padding: 108px 0; }

p.sec-sub {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.75;
  max-width: 560px; }

/* ================================================================
   PROBLEM / SOLUTION
   ================================================================ */
.section-problem {
  background: var(--bg2); }

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start; }

.problem-left h2 {
  font-size: clamp(26px, 3.2vw, 42px);
  margin-bottom: 20px;
  line-height: 1.1; }

.problem-left h2 em {
  font-style: normal;
  color: var(--cida); }

.problem-left p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8; }

.problem-left p + p {
  margin-top: 14px; }

/* Compare blocks */
.compare-label {
  font-family: var(--font-d);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
  padding: 0 4px; }

.compare-bad {
  color: var(--alert); }

.compare-good {
  color: var(--cida); }

.compare-block {
  background: var(--bg3);
  border: 1px solid;
  border-radius: var(--r);
  padding: 18px 20px; }

.compare-block-bad {
  border-color: rgba(241, 117, 74, 0.22); }

.compare-block-good {
  border-color: rgba(68, 215, 182, 0.22); }

.ci {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 9px 0;
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.5;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04); }

.ci:last-child {
  border-bottom: none;
  padding-bottom: 0; }

.ci-icon {
  flex-shrink: 0;
  font-size: 13px;
  font-weight: 700;
  margin-top: 1px; }

.ci-bad {
  color: var(--alert); }

.ci-good {
  color: var(--cida); }

/* ================================================================
   PLATFORM MODULES
   ================================================================ */
.section-platform {
  background: var(--bg); }

.platform-hdr {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 52px; }

.platform-hdr-r {
  text-align: right; }

.platform-hdr-r p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 16px; }

.platform-tag {
  display: inline-block;
  font-family: var(--font-d);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: rgba(79, 171, 189, 0.1);
  border: 1px solid rgba(79, 171, 189, 0.25);
  color: var(--principle);
  border-radius: 4px;
  padding: 6px 14px; }

.modules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden; }

.module {
  background: var(--bg2);
  padding: 34px 28px;
  position: relative;
  border-top: 2px solid transparent;
  transition: background 0.2s, border-top-color 0.25s; }

.module:hover {
  background: var(--bg3);
  border-top-color: var(--cida); }

.module-accent {
  border-top-color: var(--principle) !important; }

.module-accent:hover {
  border-top-color: var(--principle); }

.mod-num {
  font-family: var(--font-d);
  font-size: 46px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.04);
  line-height: 1;
  margin-bottom: 8px;
  user-select: none; }

.mod-name {
  font-family: var(--font-d);
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px; }

.mod-sub {
  font-family: var(--font-d);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cida);
  margin-bottom: 16px; }

.module-accent .mod-sub {
  color: var(--principle); }

.mod-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.75; }

.mod-new-badge {
  display: inline-block;
  margin-bottom: 10px;
  background: var(--principle);
  color: #fff;
  font-family: var(--font-d);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 2px; }

/* ================================================================
   COMPLIANCE STRIP
   ================================================================ */
.compliance-strip {
  background: var(--deep);
  position: relative;
  overflow: hidden; }

.compliance-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.35) 0%, transparent 18%, transparent 82%, rgba(0, 0, 0, 0.35) 100%);
  pointer-events: none; }

.cs-wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  position: relative; }

.cs-label {
  padding: 26px 36px;
  background: rgba(0, 0, 0, 0.3);
  font-family: var(--font-d);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  display: flex;
  align-items: center;
  white-space: nowrap;
  flex-shrink: 0; }

.cs-list {
  flex: 1;
  display: flex;
  align-items: stretch;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch; }

.cs-fw {
  flex: 1;
  min-width: 120px;
  padding: 22px 18px;
  text-align: center;
  font-family: var(--font-d);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.85);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.15s, color 0.15s;
  cursor: default; }

.cs-fw:hover {
  background: rgba(255, 255, 255, 0.07);
  color: var(--cida); }

.cs-fw span {
  display: block;
  font-size: 10px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 3px;
  letter-spacing: 0.06em;
  text-transform: uppercase; }

/* ================================================================
   WHY GUARDIENT
   ================================================================ */
.section-why {
  background: var(--bg2); }

.why-hdr {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 48px; }

.why-intro {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.75;
  font-weight: 300; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden; }

.why-card {
  background: var(--bg3);
  padding: 40px 32px;
  border-top: 2px solid transparent;
  transition: background 0.2s, border-top-color 0.25s; }

.why-card:hover {
  background: var(--surface);
  border-top-color: var(--cida); }

.why-num {
  font-family: var(--font-d);
  font-size: 46px;
  font-weight: 800;
  color: var(--cida);
  line-height: 1;
  margin-bottom: 16px; }

.why-title {
  font-family: var(--font-d);
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px; }

.why-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.75; }

/* ================================================================
   SOCIAL PROOF
   ================================================================ */
.section-proof {
  background: var(--bg); }

.proof-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 72px; }

.proof-intro {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 4px; }

.stat-boxes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 28px; }

.stat-box {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 24px 18px;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s; }

.stat-box:hover {
  border-color: rgba(68, 215, 182, 0.3);
  transform: translateY(-3px); }

.sb-num {
  font-family: var(--font-d);
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px; }

.sb-num.cida {
  color: var(--cida); }

.sb-num.blue {
  color: var(--principle); }

.stat-box p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5; }

/* Testimonials */
.testi-col {
  display: flex;
  flex-direction: column;
  gap: 12px; }

.testi {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 26px;
  transition: border-color 0.2s, transform 0.2s; }

.testi:hover {
  border-color: rgba(68, 215, 182, 0.3);
  transform: translateY(-3px); }

.testi-q {
  font-size: 14px;
  color: var(--text);
  line-height: 1.72;
  font-style: italic;
  font-weight: 300;
  margin-bottom: 18px;
  padding-left: 14px;
  border-left: 2px solid var(--cida); }

.testi-by {
  display: flex;
  align-items: center;
  gap: 12px; }

.testi-av {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-d);
  font-size: 11px;
  font-weight: 900;
  color: var(--cida);
  flex-shrink: 0; }

.testi-name {
  font-size: 13px;
  font-weight: 600; }

.testi-role {
  font-size: 11px;
  color: var(--muted);
  margin-top: 2px; }

/* Logo marquee */
.marquee-wrap {
  margin-top: 72px; }

.marquee-label {
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: 0.45;
  margin-bottom: 28px; }

.marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }

.marquee-track {
  display: flex;
  align-items: center;
  gap: 56px;
  animation: marqueeScroll 28s linear infinite;
  width: max-content; }

.marquee-track img {
  height: 36px;
  width: auto;
  object-fit: contain;
  opacity: 0.75;
  filter: none;
  transition: opacity 0.2s, filter 0.2s;
  flex-shrink: 0; }

.marquee-track:hover {
  animation-play-state: paused; }

.marquee-track img:hover {
  opacity: 1;
  filter: none; }

@keyframes marqueeScroll {
  from {
    transform: translateX(0); }
  to {
    transform: translateX(-50%); } }

/* ================================================================
   DEMO / FINAL CTA
   ================================================================ */
.section-demo {
  background: var(--bg2);
  padding: 0; }

.demo-frame {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden; }

.demo-left {
  background: var(--deep);
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  overflow: hidden; }

/* Ambient orb on demo left */
.demo-left::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(68, 215, 182, 0.18), transparent 65%);
  pointer-events: none; }

.demo-headline {
  font-size: clamp(28px, 3.5vw, 48px);
  color: #000;
  line-height: 1.05; }

.demo-sub {
  font-size: 15px;
  color: rgba(0, 0, 0, 0.65);
  line-height: 1.75;
  font-weight: 400; }

.demo-sub strong {
  color: #000;
  font-weight: 700; }

.demo-sig {
  font-family: var(--font-d);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.4); }

.demo-right {
  padding: 72px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center; }

.demo-right-label {
  display: block;
  font-family: var(--font-d);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--cida);
  margin-bottom: 14px; }

.demo-right-h {
  font-size: clamp(22px, 2.8vw, 36px);
  margin-bottom: 10px; }

.demo-right-sub {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
  font-weight: 400;
  margin-bottom: 28px; }

.demo-form {
  display: flex;
  flex-direction: column;
  gap: 12px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px; }

.demo-form input {
  width: 100%;
  padding: 13px 16px;
  background: var(--faint);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r);
  font-size: 14px;
  color: var(--text);
  font-family: var(--font-b);
  transition: border-color 0.2s, box-shadow 0.2s; }

.demo-form input::placeholder {
  color: rgba(155, 184, 204, 0.45); }

.demo-form input:focus {
  outline: none;
  border-color: var(--cida);
  background: rgba(68, 215, 182, 0.04);
  box-shadow: 0 0 0 3px rgba(68, 215, 182, 0.1); }

.demo-form .btn {
  margin-top: 4px;
  font-size: 15px;
  padding: 15px 28px; }

/* ================================================================
   FOOTER
   ================================================================ */
.site-footer {
  background: #000;
  border-top: 1px solid rgba(68, 215, 182, 0.07);
  padding: 64px 0 32px; }

.ft-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 48px; }

.ft-logo {
  height: 44px;
  width: auto;
  margin-bottom: 14px; }

.ft-tagline {
  font-family: var(--font-d);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--cida);
  margin-bottom: 10px; }

.ft-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.28);
  line-height: 1.75;
  max-width: 260px; }

.ft-addr {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.18);
  line-height: 1.75;
  margin-top: 14px; }

.ft-col h4 {
  font-family: var(--font-d);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.28);
  margin-bottom: 18px; }

.ft-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px; }

.ft-col a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.38);
  transition: color 0.15s; }

.ft-col a:hover {
  color: var(--cida); }

.ft-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px; }

.ft-bottom p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.18); }

.ft-awards {
  display: flex;
  gap: 12px;
  align-items: center; }

.ft-awards img {
  height: 56px;
  width: auto;
  object-fit: contain;
  opacity: 0.9;
  filter: none;
  transition: opacity 0.2s; }

.ft-awards img:hover {
  opacity: 1; }

/* ================================================================
   RESPONSIVE — TABLET  (≤ 1024px)
   ================================================================ */
@media (max-width: 1024px) {
  :root {
    --nav-h: 64px; }
  section {
    padding: 88px 0; }
  .container {
    padding: 0 28px; }
  /* Nav: hide links + right, show toggle */
  .nav-links {
    display: none; }
  .nav-right {
    display: none; }
  .nav-toggle {
    display: flex;
    margin-left: auto; }
  /* Hero: stack columns */
  .hero-body {
    grid-template-columns: 1fr;
    gap: 48px;
    padding-top: calc(var(--nav-h) + 64px);
    padding-bottom: 40px;
    text-align: center; }
  .hero-visual {
    order: -1; }
  /* video first on mobile */
  .hero-ctas {
    justify-content: center; }
  .hero-proof {
    justify-content: center; }
  .hero-lede {
    max-width: 100%;
    margin-inline: auto; }
  .float-badge {
    display: none; }
  /* hide floating badges on mobile */
  /* Stats strip */
  .stats-inner {
    flex-wrap: wrap;
    gap: 0;
    padding: 12px 24px; }
  .st-div {
    display: none; }
  .stat-item {
    width: 50%;
    padding: 14px 8px; }
  /* Sections */
  .problem-grid {
    grid-template-columns: 1fr;
    gap: 48px; }
  .platform-hdr {
    grid-template-columns: 1fr; }
  .platform-hdr-r {
    text-align: left; }
  .modules-grid {
    grid-template-columns: repeat(2, 1fr); }
  .why-hdr {
    grid-template-columns: 1fr; }
  .why-grid {
    grid-template-columns: 1fr; }
  .proof-layout {
    grid-template-columns: 1fr;
    gap: 56px; }
  .demo-frame {
    grid-template-columns: 1fr; }
  .demo-left {
    padding: 56px 40px; }
  .demo-right {
    padding: 56px 40px; }
  .ft-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px; }
  .cs-label {
    display: none; } }

/* Mobile nav overlay ─────────────────────────────────────────── */
.nav-links.open {
  display: flex !important;
  flex-direction: column;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(7, 8, 11, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 36px 36px;
  gap: 0;
  z-index: 9999;
  overflow-y: auto; }

.nav-links.open li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06); }

.nav-links.open a {
  display: block;
  padding: 18px 0;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em; }

.nav-links.open a:hover {
  color: var(--cida); }

.nav-mobile-cta {
  display: none; }

.nav-links.open .nav-mobile-cta {
  display: block;
  border-bottom: none;
  padding-top: 28px; }

.nav-links.open .nav-mobile-cta .btn {
  width: 100%;
  justify-content: center;
  font-size: 15px;
  padding: 15px 28px; }

/* ================================================================
   RESPONSIVE — MOBILE  (≤ 640px)
   ================================================================ */
@media (max-width: 640px) {
  .container {
    padding: 0 20px; }
  section {
    padding: 72px 0; }
  .btn-cta,
  .btn-outline {
    width: 100%;
    justify-content: center;
    font-size: 15px;
    padding: 14px 24px; }
  .hero-ctas {
    flex-direction: column; }
  .hero-proof {
    gap: 10px;
    flex-direction: column;
    align-items: flex-start; }
  .hero-proof {
    align-items: center; }
  .proof-sep {
    display: none; }
  .stats-strip {
    padding: 0 20px 52px; }
  .stats-inner {
    padding: 14px 16px; }
  .stn {
    font-size: 1.5rem; }
  .statement-bar .sb-link {
    display: none; }
  .sb-text {
    padding: 20px; }
  .modules-grid {
    grid-template-columns: 1fr; }
  .stat-boxes {
    grid-template-columns: 1fr; }
  .demo-left {
    padding: 48px 24px; }
  .demo-right {
    padding: 48px 24px; }
  .form-row {
    grid-template-columns: 1fr; }
  .ft-top {
    grid-template-columns: 1fr;
    gap: 36px; }
  .ft-bottom {
    flex-direction: column;
    text-align: center; }
  .ft-awards {
    justify-content: center; } }

/* ================================================================
   SMALL MOBILE  (≤ 400px)
   ================================================================ */
@media (max-width: 400px) {
  .hero-text h1 {
    font-size: 38px; }
  .stat-item {
    width: 100%; } }

.usx-ccmc {
  /* ================================================================
   USX CYBER — CMMC 2.0 PAGE
   Dynamic Defense™ | CMMC 2.0 Compliance & Certification
   ================================================================ */
  /* ── Design Tokens ─────────────────────────────────────────────── */
  /* ── Reset ──────────────────────────────────────────────────────── */
  /* ── Container ──────────────────────────────────────────────────── */
  /* ── Headings ───────────────────────────────────────────────────── */
  /* ── Eyebrow ─────────────────────────────────────────────────────── */
  /* ── Buttons ─────────────────────────────────────────────────────── */
  /* ── Scroll-reveal ───────────────────────────────────────────────── */
  /* ================================================================
   ANIMATIONS
   ================================================================ */
  /* ================================================================
   NAVIGATION
   ================================================================ */
  /* ================================================================
   HERO
   ================================================================ */
  /* Compliance hero stats panel — shared class */
  /* Floating badges */
  /* ================================================================
   SECTION — SHARED
   ================================================================ */
  /* ================================================================
   STATEMENT BAR
   ================================================================ */
  /* ================================================================
   WHAT IS CMMC 2.0 — Background info
   ================================================================ */
  /* ================================================================
   THE 3 CMMC LEVELS
   ================================================================ */
  /* ================================================================
   GUARDIENT MAPS TO CMMC
   ================================================================ */
  /* ================================================================
   ASSESSMENT PROCESS — TIMELINE
   ================================================================ */
  /* ================================================================
   WHAT'S INCLUDED — ENGAGEMENT OPTIONS
   ================================================================ */
  /* ================================================================
   FAQ
   ================================================================ */
  /* ================================================================
   DEMO CTA
   ================================================================ */
  /* ================================================================
   FOOTER
   ================================================================ */
  /* ================================================================
   RESPONSIVE — TABLET  (≤ 1024px)
   ================================================================ */
  /* Mobile nav overlay */
  /* ================================================================
   RESPONSIVE — MOBILE  (≤ 640px)
   ================================================================ */ }
  .usx-ccmc :root {
    --cida: #44d7b6;
    --principle: #4fabbd;
    --deep: #006e7b;
    --alert: #f1754a;
    --bg: #07080b;
    --bg2: #0c0f14;
    --bg3: #111620;
    --surface: #161d2a;
    --text: #eef2f8;
    --muted: #9bb8cc;
    --faint: rgba(255, 255, 255, 0.04);
    --border: rgba(68, 215, 182, 0.13);
    --font-d: "Outfit", sans-serif;
    --font-b: "DM Sans", sans-serif;
    --max-w: 1200px;
    --nav-h: 68px;
    --r: 6px;
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --tr: all 0.2s var(--ease); }
  .usx-ccmc *,
  .usx-ccmc *::before,
  .usx-ccmc *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0; }
  .usx-ccmc html {
    scroll-behavior: smooth; }
  .usx-ccmc body {
    font-family: var(--font-b);
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    background-image: radial-gradient(rgba(68, 215, 182, 0.05) 1px, transparent 1px);
    background-size: 32px 32px; }
  .usx-ccmc img {
    max-width: 100%;
    height: auto;
    display: block; }
  .usx-ccmc a {
    text-decoration: none;
    color: inherit; }
  .usx-ccmc ul {
    list-style: none; }
  .usx-ccmc strong {
    color: var(--text);
    font-weight: 600; }
  .usx-ccmc .container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 36px; }
  .usx-ccmc h1,
  .usx-ccmc h2,
  .usx-ccmc h3,
  .usx-ccmc h4 {
    font-family: var(--font-d);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.02em; }
  .usx-ccmc .sec-h {
    font-size: clamp(32px, 5vw, 56px);
    margin-bottom: 20px;
    letter-spacing: -0.025em; }
  .usx-ccmc .eyebrow {
    display: inline-block;
    font-family: var(--font-d);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--cida);
    margin-bottom: 20px; }
  .usx-ccmc .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-d);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 14px 30px;
    border-radius: var(--r);
    transition: var(--tr);
    cursor: pointer;
    border: none; }
  .usx-ccmc .btn-cta {
    background: var(--principle);
    color: #fff;
    font-size: 16px;
    padding: 16px 36px; }
  .usx-ccmc .btn-cta:hover {
    background: #5cbece;
    box-shadow: 0 0 32px rgba(79, 171, 189, 0.45);
    transform: translateY(-2px); }
  .usx-ccmc .btn-cida {
    background: var(--cida);
    color: #000; }
  .usx-ccmc .btn-cida:hover {
    background: #5ce8c7;
    box-shadow: 0 0 28px rgba(68, 215, 182, 0.35);
    transform: translateY(-2px); }
  .usx-ccmc .btn-outline {
    background: transparent;
    color: var(--text);
    border: 1px solid rgba(255, 255, 255, 0.18);
    font-size: 16px;
    padding: 16px 36px; }
  .usx-ccmc .btn-outline:hover {
    border-color: var(--cida);
    color: var(--cida);
    background: rgba(68, 215, 182, 0.04); }
  .usx-ccmc .btn-block {
    width: 100%;
    justify-content: center; }
  .usx-ccmc .btn-sm {
    font-size: 12px;
    padding: 10px 20px; }
  .usx-ccmc .btn-lg {
    font-size: 17px;
    padding: 20px 48px; }
  .usx-ccmc [data-reveal] {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.65s var(--ease), transform 0.65s var(--ease); }
  .usx-ccmc [data-reveal-right] {
    opacity: 0;
    transform: translateX(22px);
    transition: opacity 0.65s var(--ease) 0.12s, transform 0.65s var(--ease) 0.12s; }
  .usx-ccmc .revealed {
    opacity: 1 !important;
    transform: translate(0, 0) !important; }
  .usx-ccmc [data-reveal-stagger] > * {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.55s var(--ease), transform 0.55s var(--ease); }
  .usx-ccmc [data-reveal-stagger].revealed > *:nth-child(1) {
    transition-delay: 0s;
    opacity: 1;
    transform: none; }
  .usx-ccmc [data-reveal-stagger].revealed > *:nth-child(2) {
    transition-delay: 0.1s;
    opacity: 1;
    transform: none; }
  .usx-ccmc [data-reveal-stagger].revealed > *:nth-child(3) {
    transition-delay: 0.2s;
    opacity: 1;
    transform: none; }
  .usx-ccmc [data-reveal-stagger].revealed > *:nth-child(4) {
    transition-delay: 0.3s;
    opacity: 1;
    transform: none; }
  .usx-ccmc [data-reveal-stagger].revealed > *:nth-child(5) {
    transition-delay: 0.4s;
    opacity: 1;
    transform: none; }
  .usx-ccmc [data-reveal-stagger].revealed > *:nth-child(6) {
    transition-delay: 0.5s;
    opacity: 1;
    transform: none; }
  .usx-ccmc [data-reveal-stagger].revealed > *:nth-child(7) {
    transition-delay: 0.55s;
    opacity: 1;
    transform: none; }
  .usx-ccmc [data-reveal-stagger].revealed > *:nth-child(8) {
    transition-delay: 0.6s;
    opacity: 1;
    transform: none; }

@keyframes orbDrift {
  0%,
  100% {
    transform: translate(0, 0); }
  33% {
    transform: translate(30px, -20px); }
  66% {
    transform: translate(-20px, 30px); } }

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px); }
  to {
    opacity: 1;
    transform: translateY(0); } }

@keyframes fadeLeft {
  from {
    opacity: 0;
    transform: translateX(28px); }
  to {
    opacity: 1;
    transform: translateX(0); } }

@keyframes frameGlow {
  0%,
  100% {
    box-shadow: 0 0 0 1px rgba(68, 215, 182, 0.06), 0 0 50px rgba(68, 215, 182, 0.07), 0 30px 80px rgba(0, 0, 0, 0.65); }
  50% {
    box-shadow: 0 0 0 1px rgba(68, 215, 182, 0.16), 0 0 90px rgba(68, 215, 182, 0.14), 0 30px 80px rgba(0, 0, 0, 0.65); } }

@keyframes badgeFloat {
  0%,
  100% {
    transform: translateY(0); }
  50% {
    transform: translateY(-9px); } }

@keyframes sbShimmer {
  from {
    transform: translateX(-100%); }
  to {
    transform: translateX(100%); } }
  .usx-ccmc .nav-wrap {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    height: var(--nav-h);
    background: rgba(7, 8, 11, 0.65);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    border-bottom: 1px solid rgba(68, 215, 182, 0.06);
    transition: var(--tr); }
  .usx-ccmc .nav-wrap.scrolled {
    background: rgba(7, 8, 11, 0.96);
    border-bottom-color: var(--border);
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.55); }
  .usx-ccmc .nav-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 36px;
    height: 100%;
    display: flex;
    align-items: center; }
  .usx-ccmc .nav-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0; }
  .usx-ccmc .nav-logo img {
    height: 42px;
    width: auto; }
  .usx-ccmc .nav-links {
    display: flex;
    align-items: center;
    gap: 26px;
    margin-left: 44px; }
  .usx-ccmc .nav-links a {
    font-size: 13px;
    font-weight: 500;
    color: var(--muted);
    letter-spacing: 0.02em;
    transition: color 0.15s; }
  .usx-ccmc .nav-links a:hover {
    color: var(--text); }
  .usx-ccmc .nav-links a.active {
    color: var(--cida); }
  .usx-ccmc .nav-mobile-cta {
    display: none; }
  .usx-ccmc .nav-right {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto; }
  .usx-ccmc .nav-login {
    font-size: 13px;
    font-weight: 500;
    color: var(--muted);
    padding: 8px 14px;
    transition: color 0.15s; }
  .usx-ccmc .nav-login:hover {
    color: var(--text); }
  .usx-ccmc .nav-cta {
    font-family: var(--font-d);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 10px 22px;
    border-radius: var(--r);
    background: var(--principle);
    color: #fff;
    transition: all 0.17s;
    white-space: nowrap; }
  .usx-ccmc .nav-cta:hover {
    background: #5cbece;
    box-shadow: 0 0 20px rgba(79, 171, 189, 0.35); }
  .usx-ccmc .nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    margin-left: 16px; }
  .usx-ccmc .nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: var(--tr); }
  .usx-ccmc .nav-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px); }
  .usx-ccmc .nav-toggle.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0); }
  .usx-ccmc .nav-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px); }
  .usx-ccmc .hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden; }
  .usx-ccmc .hero-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0; }
  .usx-ccmc .hero-orb-1 {
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, rgba(68, 215, 182, 0.07) 0%, transparent 60%);
    top: -250px;
    right: -180px;
    animation: orbDrift 12s ease-in-out infinite; }
  .usx-ccmc .hero-orb-2 {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(0, 110, 123, 0.09) 0%, transparent 60%);
    bottom: -150px;
    left: -180px;
    animation: orbDrift 14s ease-in-out infinite reverse; }
  .usx-ccmc .hero-orb-3 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(79, 171, 189, 0.05) 0%, transparent 60%);
    top: 30%;
    left: 30%;
    animation: orbDrift 10s ease-in-out infinite 2s; }
  .usx-ccmc .hero-body {
    position: relative;
    z-index: 1;
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 64px;
    padding-bottom: 60px; }
  .usx-ccmc .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-d);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--cida);
    margin-bottom: 32px;
    animation: fadeUp 0.5s ease both 0.05s; }
  .usx-ccmc .eyebrow-line {
    width: 28px;
    height: 1px;
    background: var(--cida);
    flex-shrink: 0; }
  .usx-ccmc .hero-text h1 {
    font-size: clamp(40px, 5.8vw, 76px);
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 28px;
    animation: fadeUp 0.55s ease both 0.15s; }
  .usx-ccmc .h1-white {
    display: block;
    color: var(--text); }
  .usx-ccmc .h1-cida {
    display: block;
    color: var(--cida); }
  .usx-ccmc .h1-blue {
    display: block;
    color: var(--principle); }
  .usx-ccmc .hero-lede {
    font-size: clamp(15px, 1.6vw, 18px);
    color: var(--muted);
    line-height: 1.78;
    max-width: 520px;
    margin-bottom: 40px;
    animation: fadeUp 0.5s ease both 0.25s; }
  .usx-ccmc .hero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    animation: fadeUp 0.5s ease both 0.35s; }
  .usx-ccmc .hero-visual {
    position: relative;
    animation: fadeLeft 0.65s ease both 0.2s; }
  .usx-ccmc .compliance-hero-panel {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    animation: frameGlow 5s ease-in-out infinite; }
  .usx-ccmc .chp-header {
    padding: 18px 24px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 12px; }
  .usx-ccmc .chp-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--cida); }
  .usx-ccmc .chp-title {
    font-family: var(--font-d);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--muted); }
  .usx-ccmc .chp-body {
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 14px; }
  .usx-ccmc .chp-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    background: var(--bg3);
    border-radius: 6px;
    border-left: 2px solid transparent;
    transition: border-color 0.2s; }
  .usx-ccmc .chp-row:hover {
    border-left-color: var(--cida); }
  .usx-ccmc .chp-fw {
    font-family: var(--font-d);
    font-size: 13px;
    font-weight: 700;
    color: var(--text); }
  .usx-ccmc .chp-status {
    display: flex;
    align-items: center;
    gap: 8px; }
  .usx-ccmc .chp-bar {
    width: 80px;
    height: 4px;
    background: var(--bg);
    border-radius: 2px;
    overflow: hidden; }
  .usx-ccmc .chp-fill {
    height: 100%;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--cida), var(--principle)); }
  .usx-ccmc .chp-pct {
    font-family: var(--font-d);
    font-size: 12px;
    font-weight: 700;
    color: var(--cida);
    min-width: 34px;
    text-align: right; }
  .usx-ccmc .float-badge {
    position: absolute;
    background: rgba(11, 14, 20, 0.95);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 12px 18px;
    backdrop-filter: blur(14px); }
  .usx-ccmc .float-badge-tl {
    bottom: -22px;
    left: -32px;
    animation: badgeFloat 4.5s ease-in-out infinite; }
  .usx-ccmc .float-badge-br {
    top: 36px;
    right: -32px;
    animation: badgeFloat 4.5s ease-in-out infinite 2.2s; }
  .usx-ccmc .fb-num {
    display: block;
    font-family: var(--font-d);
    font-size: 22px;
    font-weight: 800;
    color: var(--cida);
    line-height: 1;
    margin-bottom: 3px; }
  .usx-ccmc .fb-label {
    display: block;
    font-size: 11px;
    color: var(--muted);
    white-space: nowrap; }
  .usx-ccmc section {
    padding: 108px 0; }
  .usx-ccmc .sec-intro {
    max-width: 660px;
    margin-bottom: 52px; }
  .usx-ccmc .sec-intro.center {
    margin-inline: auto;
    text-align: center; }
  .usx-ccmc .sec-intro.center p {
    margin-inline: auto; }
  .usx-ccmc .sec-intro h2 {
    font-size: clamp(28px, 3.5vw, 48px);
    margin-bottom: 16px; }
  .usx-ccmc .sec-intro p {
    font-size: 16px;
    color: var(--muted);
    line-height: 1.75;
    max-width: 580px; }
  .usx-ccmc .statement-bar {
    background: var(--cida);
    position: relative;
    z-index: 1;
    overflow: hidden; }
  .usx-ccmc .statement-bar::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, transparent 20%, rgba(255, 255, 255, 0.18) 50%, transparent 80%);
    animation: sbShimmer 3.5s ease infinite; }
  .usx-ccmc .sb-inner {
    display: flex;
    align-items: stretch;
    position: relative; }
  .usx-ccmc .sb-text {
    flex: 1;
    padding: 26px 0;
    font-family: var(--font-d);
    font-size: clamp(16px, 2.1vw, 22px);
    font-weight: 700;
    color: #000;
    line-height: 1.2;
    letter-spacing: -0.01em; }
  .usx-ccmc .sb-link {
    background: #000;
    padding: 26px 44px;
    display: flex;
    align-items: center;
    font-family: var(--font-d);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--cida);
    white-space: nowrap;
    transition: background 0.15s;
    flex-shrink: 0; }
  .usx-ccmc .sb-link:hover {
    background: #111; }
  .usx-ccmc .section-what {
    background: var(--bg2); }
  .usx-ccmc .what-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start; }
  .usx-ccmc .what-left h2 {
    font-size: clamp(28px, 3.2vw, 44px);
    margin-bottom: 24px; }
  .usx-ccmc .what-left p {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.8; }
  .usx-ccmc .what-left p + p {
    margin-top: 14px; }
  .usx-ccmc .what-stats {
    display: flex;
    flex-direction: column;
    gap: 16px; }
  .usx-ccmc .stat-card {
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 28px 28px;
    border-left: 3px solid var(--cida);
    transition: transform 0.2s, box-shadow 0.2s; }
  .usx-ccmc .stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 44px rgba(0, 0, 0, 0.4); }
  .usx-ccmc .stat-num {
    font-family: var(--font-d);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 900;
    color: var(--cida);
    line-height: 1;
    margin-bottom: 6px; }
  .usx-ccmc .stat-label {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.5; }
  .usx-ccmc .section-levels {
    background: var(--bg); }
  .usx-ccmc .levels-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start; }
  .usx-ccmc .level-card {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s; }
  .usx-ccmc .level-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4); }
  .usx-ccmc .level-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px; }
  .usx-ccmc .level-1::before {
    background: var(--muted); }
  .usx-ccmc .level-2::before {
    background: linear-gradient(90deg, var(--cida), var(--principle)); }
  .usx-ccmc .level-3::before {
    background: var(--principle); }
  .usx-ccmc .level-card.level-2 {
    background: var(--surface);
    border-color: rgba(68, 215, 182, 0.3); }
  .usx-ccmc .level-card.level-2:hover {
    border-color: rgba(68, 215, 182, 0.55); }
  .usx-ccmc .level-badge {
    font-family: var(--font-d);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    border-radius: 3px;
    margin-bottom: 18px;
    align-self: flex-start; }
  .usx-ccmc .level-1 .level-badge {
    background: rgba(155, 184, 204, 0.1);
    color: var(--muted); }
  .usx-ccmc .level-2 .level-badge {
    background: rgba(68, 215, 182, 0.15);
    color: var(--cida); }
  .usx-ccmc .level-3 .level-badge {
    background: rgba(79, 171, 189, 0.15);
    color: var(--principle); }
  .usx-ccmc .level-recommended {
    background: rgba(68, 215, 182, 0.1);
    border: 1px solid rgba(68, 215, 182, 0.25);
    border-radius: 3px;
    padding: 3px 10px;
    font-family: var(--font-d);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--cida); }
  .usx-ccmc .level-card h3 {
    font-family: var(--font-d);
    font-size: 22px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 8px; }
  .usx-ccmc .level-subtitle {
    font-size: 12px;
    color: var(--principle);
    font-weight: 600;
    letter-spacing: 0.02em;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06); }
  .usx-ccmc .level-practices {
    font-family: var(--font-d);
    font-size: 28px;
    font-weight: 900;
    color: var(--cida);
    margin-bottom: 4px; }
  .usx-ccmc .level-practices-label {
    font-size: 11px;
    color: var(--muted);
    margin-bottom: 18px; }
  .usx-ccmc .level-list {
    display: flex;
    flex-direction: column;
    gap: 10px; }
  .usx-ccmc .level-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    color: var(--muted);
    line-height: 1.5; }
  .usx-ccmc .level-list li::before {
    content: "→";
    color: var(--cida);
    font-weight: 700;
    flex-shrink: 0;
    font-size: 10px;
    margin-top: 2px; }
  .usx-ccmc .level-note {
    margin-top: 20px;
    padding: 14px 16px;
    background: rgba(68, 215, 182, 0.08);
    border-left: 2px solid var(--cida);
    border-radius: 0 4px 4px 0;
    font-size: 12px;
    color: var(--cida);
    font-style: italic;
    line-height: 1.5; }
  .usx-ccmc .section-platform {
    background: var(--bg2); }
  .usx-ccmc .platform-split {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 80px;
    align-items: start; }
  .usx-ccmc .platform-left h2 {
    font-size: clamp(28px, 3.2vw, 44px);
    margin-bottom: 16px; }
  .usx-ccmc .platform-left p {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.8; }
  .usx-ccmc .diff-list {
    display: flex;
    flex-direction: column;
    gap: 0; }
  .usx-ccmc .diff-item {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 24px;
    padding: 32px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    align-items: flex-start;
    transition: opacity 0.2s; }
  .usx-ccmc .diff-item:last-child {
    border-bottom: none; }
  .usx-ccmc .diff-item:hover .diff-num {
    color: rgba(68, 215, 182, 0.45); }
  .usx-ccmc .diff-num {
    font-family: var(--font-d);
    font-size: 44px;
    font-weight: 900;
    color: rgba(68, 215, 182, 0.13);
    line-height: 1;
    transition: color 0.2s; }
  .usx-ccmc .diff-body h3 {
    font-family: var(--font-d);
    font-size: 17px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
    padding-top: 5px; }
  .usx-ccmc .diff-body p {
    font-size: 13.5px;
    color: var(--muted);
    line-height: 1.75; }
  .usx-ccmc .section-process {
    background: var(--bg); }
  .usx-ccmc .process-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative; }
  .usx-ccmc .process-steps::before {
    content: "";
    position: absolute;
    left: 28px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, var(--cida), transparent);
    opacity: 0.2; }
  .usx-ccmc .process-step {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 32px;
    padding: 36px 0;
    align-items: flex-start;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: opacity 0.2s; }
  .usx-ccmc .process-step:last-child {
    border-bottom: none; }
  .usx-ccmc .step-num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--bg2);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-d);
    font-size: 18px;
    font-weight: 900;
    color: var(--cida);
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    transition: background 0.2s, border-color 0.2s; }
  .usx-ccmc .process-step:hover .step-num {
    background: rgba(68, 215, 182, 0.1);
    border-color: var(--cida); }
  .usx-ccmc .step-body {
    padding-top: 10px; }
  .usx-ccmc .step-body h3 {
    font-family: var(--font-d);
    font-size: 19px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px; }
  .usx-ccmc .step-body p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.8; }
  .usx-ccmc .step-callout {
    display: inline-block;
    margin-top: 12px;
    background: rgba(68, 215, 182, 0.08);
    border-left: 2px solid var(--cida);
    padding: 8px 14px;
    border-radius: 0 4px 4px 0;
    font-size: 12px;
    color: var(--cida);
    font-style: italic; }
  .usx-ccmc .section-packages {
    background: var(--bg2); }
  .usx-ccmc .packages-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px; }
  .usx-ccmc .package-card {
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 44px 36px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s; }
  .usx-ccmc .package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4); }
  .usx-ccmc .package-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px; }
  .usx-ccmc .package-readiness::before {
    background: var(--principle); }
  .usx-ccmc .package-full::before {
    background: linear-gradient(90deg, var(--cida), var(--principle)); }
  .usx-ccmc .package-full {
    background: var(--surface);
    border-color: rgba(68, 215, 182, 0.28); }
  .usx-ccmc .package-full:hover {
    border-color: rgba(68, 215, 182, 0.5); }
  .usx-ccmc .package-tag {
    font-family: var(--font-d);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    border-radius: 3px;
    margin-bottom: 18px;
    align-self: flex-start; }
  .usx-ccmc .package-readiness .package-tag {
    background: rgba(79, 171, 189, 0.15);
    color: var(--principle); }
  .usx-ccmc .package-full .package-tag {
    background: rgba(68, 215, 182, 0.15);
    color: var(--cida); }
  .usx-ccmc .package-most-complete {
    background: rgba(68, 215, 182, 0.1);
    border: 1px solid rgba(68, 215, 182, 0.25);
    border-radius: 3px;
    padding: 3px 10px;
    font-family: var(--font-d);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--cida); }
  .usx-ccmc .package-card h3 {
    font-family: var(--font-d);
    font-size: 24px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 10px; }
  .usx-ccmc .package-subtitle {
    font-size: 12px;
    color: var(--principle);
    font-weight: 600;
    letter-spacing: 0.02em;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06); }
  .usx-ccmc .package-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
    flex: 1; }
  .usx-ccmc .package-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: var(--muted);
    line-height: 1.5; }
  .usx-ccmc .package-list li::before {
    content: "✓";
    color: var(--cida);
    font-weight: 700;
    flex-shrink: 0; }
  .usx-ccmc .package-price {
    font-size: 13px;
    color: var(--muted);
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 4px;
    line-height: 1.5;
    border-left: 2px solid rgba(68, 215, 182, 0.3); }
  .usx-ccmc .section-faq {
    background: var(--bg); }
  .usx-ccmc .faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px; }
  .usx-ccmc .faq-item {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 32px 36px;
    border-left: 3px solid var(--cida);
    transition: transform 0.2s, box-shadow 0.2s; }
  .usx-ccmc .faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.3); }
  .usx-ccmc .faq-q {
    font-family: var(--font-d);
    font-size: 17px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 14px;
    line-height: 1.3; }
  .usx-ccmc .faq-a {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.8; }
  .usx-ccmc .section-demo {
    background: var(--bg2); }
  .usx-ccmc .demo-cta-inner {
    max-width: 760px;
    margin: 0 auto;
    text-align: center; }
  .usx-ccmc .demo-cta-inner h2 {
    font-size: clamp(30px, 4vw, 52px);
    margin-bottom: 18px; }
  .usx-ccmc .demo-cta-inner p {
    font-size: 16px;
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 40px; }
  .usx-ccmc .demo-cta-inner .btn-lg {
    margin: 0 auto; }
  .usx-ccmc .site-footer {
    background: #000;
    border-top: 1px solid rgba(68, 215, 182, 0.07);
    padding: 64px 0 32px; }
  .usx-ccmc .ft-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 56px;
    margin-bottom: 48px; }
  .usx-ccmc .ft-logo {
    height: 44px;
    width: auto;
    margin-bottom: 14px; }
  .usx-ccmc .ft-tagline {
    font-family: var(--font-d);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--cida);
    margin-bottom: 10px; }
  .usx-ccmc .ft-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.28);
    line-height: 1.75;
    max-width: 260px; }
  .usx-ccmc .ft-addr {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.18);
    line-height: 1.75;
    margin-top: 14px; }
  .usx-ccmc .ft-col h4 {
    font-family: var(--font-d);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.28);
    margin-bottom: 18px; }
  .usx-ccmc .ft-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px; }
  .usx-ccmc .ft-col a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.38);
    transition: color 0.15s; }
  .usx-ccmc .ft-col a:hover {
    color: var(--cida); }
  .usx-ccmc .ft-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px; }
  .usx-ccmc .ft-bottom p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.18); }
  .usx-ccmc .ft-awards {
    display: flex;
    gap: 12px;
    align-items: center; }
  .usx-ccmc .ft-awards img {
    height: 56px;
    width: auto;
    object-fit: contain;
    opacity: 0.9;
    filter: none;
    transition: opacity 0.2s; }
  .usx-ccmc .ft-awards img:hover {
    opacity: 1; }
  @media (max-width: 1024px) {
    .usx-ccmc :root {
      --nav-h: 64px; }
    .usx-ccmc section {
      padding: 88px 0; }
    .usx-ccmc .container {
      padding: 0 28px; }
    .usx-ccmc .nav-links {
      display: none; }
    .usx-ccmc .nav-right {
      display: none; }
    .usx-ccmc .nav-toggle {
      display: flex;
      margin-left: auto; }
    .usx-ccmc .hero-body {
      grid-template-columns: 1fr;
      gap: 48px;
      padding-top: calc(var(--nav-h) + 64px);
      padding-bottom: 40px;
      text-align: center; }
    .usx-ccmc .hero-visual {
      order: -1; }
    .usx-ccmc .hero-ctas {
      justify-content: center; }
    .usx-ccmc .hero-lede {
      max-width: 100%;
      margin-inline: auto; }
    .usx-ccmc .float-badge {
      display: none; }
    .usx-ccmc .what-split {
      grid-template-columns: 1fr;
      gap: 48px; }
    .usx-ccmc .platform-split {
      grid-template-columns: 1fr;
      gap: 48px; }
    .usx-ccmc .levels-grid {
      grid-template-columns: 1fr; }
    .usx-ccmc .packages-grid {
      grid-template-columns: 1fr; }
    .usx-ccmc .ft-top {
      grid-template-columns: 1fr 1fr;
      gap: 40px; } }
  .usx-ccmc .nav-links.open {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(7, 8, 11, 0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 36px 36px;
    gap: 0;
    z-index: 9999;
    overflow-y: auto; }
  .usx-ccmc .nav-links.open li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06); }
  .usx-ccmc .nav-links.open a {
    display: block;
    padding: 18px 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text);
    letter-spacing: -0.01em; }
  .usx-ccmc .nav-links.open a:hover {
    color: var(--cida); }
  .usx-ccmc .nav-links.open .nav-mobile-cta {
    display: block;
    border-bottom: none;
    padding-top: 28px; }
  .usx-ccmc .nav-links.open .nav-mobile-cta .btn {
    width: 100%;
    justify-content: center;
    font-size: 15px;
    padding: 15px 28px; }
  @media (max-width: 640px) {
    .usx-ccmc .container {
      padding: 0 20px; }
    .usx-ccmc section {
      padding: 72px 0; }
    .usx-ccmc .hero-text h1 {
      font-size: clamp(36px, 10vw, 54px); }
    .usx-ccmc .hero-ctas {
      flex-direction: column;
      align-items: center; }
    .usx-ccmc .hero-ctas .btn {
      width: 100%;
      justify-content: center; }
    .usx-ccmc .process-steps::before {
      display: none; }
    .usx-ccmc .process-step {
      grid-template-columns: 1fr;
      gap: 16px; }
    .usx-ccmc .ft-top {
      grid-template-columns: 1fr; }
    .usx-ccmc .sb-link {
      display: none; }
    .usx-ccmc .demo-cta-inner .btn-lg {
      width: 100%;
      justify-content: center; } }
  @media (max-width: 400px) {
    .usx-ccmc :root {
      --nav-h: 60px; }
    .usx-ccmc .nav-logo img {
      height: 34px; } }

.usx-blog {
  /* ================================================================
   USX CYBER — NEWS & ALERTS / BLOG PAGE
   Dynamic Defense™ | News & Alerts
   ================================================================ */
  /* ── Design Tokens ─────────────────────────────────────────────── */
  /* ── Reset ──────────────────────────────────────────────────────── */
  /* ── Container ──────────────────────────────────────────────────── */
  /* ── Headings ───────────────────────────────────────────────────── */
  /* ── Eyebrow ─────────────────────────────────────────────────────── */
  /* ── Buttons ─────────────────────────────────────────────────────── */
  /* ── Scroll-reveal ───────────────────────────────────────────────── */
  /* ================================================================
   ANIMATIONS
   ================================================================ */
  /* ================================================================
   NAVIGATION
   ================================================================ */
  /* ================================================================
   HERO — short centered
   ================================================================ */
  /* ================================================================
   FILTER BAR
   ================================================================ */
  /* ================================================================
   CATEGORY TAGS (on cards)
   ================================================================ */
  /* ================================================================
   FEATURED POST
   ================================================================ */
  /* ================================================================
   POST GRID
   ================================================================ */
  /* Empty state */
  /* ================================================================
   NEWSLETTER / ALERT SIGNUP
   ================================================================ */
  /* ================================================================
   FOOTER
   ================================================================ */
  /* ================================================================
   RESPONSIVE — TABLET  (≤ 1024px)
   ================================================================ */
  /* Mobile nav overlay */
  /* ================================================================
   RESPONSIVE — MOBILE  (≤ 640px)
   ================================================================ */ }
  .usx-blog :root {
    --cida: #44d7b6;
    --principle: #4fabbd;
    --deep: #006e7b;
    --alert: #f1754a;
    --bg: #07080b;
    --bg2: #0c0f14;
    --bg3: #111620;
    --surface: #161d2a;
    --text: #eef2f8;
    --muted: #9bb8cc;
    --faint: rgba(255, 255, 255, 0.04);
    --border: rgba(68, 215, 182, 0.13);
    --font-d: "Outfit", sans-serif;
    --font-b: "DM Sans", sans-serif;
    --max-w: 1200px;
    --nav-h: 68px;
    --r: 6px;
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --tr: all 0.2s var(--ease); }
  .usx-blog *,
  .usx-blog *::before,
  .usx-blog *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0; }
  .usx-blog html {
    scroll-behavior: smooth; }
  .usx-blog body {
    font-family: var(--font-b);
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    background-image: radial-gradient(rgba(68, 215, 182, 0.05) 1px, transparent 1px);
    background-size: 32px 32px; }
  .usx-blog img {
    max-width: 100%;
    height: auto;
    display: block; }
  .usx-blog a {
    text-decoration: none;
    color: inherit; }
  .usx-blog ul {
    list-style: none; }
  .usx-blog strong {
    color: var(--text);
    font-weight: 600; }
  .usx-blog .container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 36px; }
  .usx-blog h1,
  .usx-blog h2,
  .usx-blog h3,
  .usx-blog h4 {
    font-family: var(--font-d);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.02em; }
  .usx-blog .eyebrow {
    display: inline-block;
    font-family: var(--font-d);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--cida);
    margin-bottom: 20px; }
  .usx-blog .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-d);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 14px 30px;
    border-radius: var(--r);
    transition: var(--tr);
    cursor: pointer;
    border: none; }
  .usx-blog .btn-cta {
    background: var(--principle);
    color: #fff;
    font-size: 16px;
    padding: 16px 36px; }
  .usx-blog .btn-cta:hover {
    background: #5cbece;
    box-shadow: 0 0 32px rgba(79, 171, 189, 0.45);
    transform: translateY(-2px); }
  .usx-blog .btn-cida {
    background: var(--cida);
    color: #000;
    font-size: 16px;
    padding: 16px 36px; }
  .usx-blog .btn-cida:hover {
    background: #5ce8c7;
    box-shadow: 0 0 28px rgba(68, 215, 182, 0.35);
    transform: translateY(-2px); }
  .usx-blog .btn-outline {
    background: transparent;
    color: var(--text);
    border: 1px solid rgba(255, 255, 255, 0.18);
    font-size: 16px;
    padding: 16px 36px; }
  .usx-blog .btn-outline:hover {
    border-color: var(--cida);
    color: var(--cida);
    background: rgba(68, 215, 182, 0.04); }
  .usx-blog [data-reveal] {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.65s var(--ease), transform 0.65s var(--ease); }
  .usx-blog [data-reveal-right] {
    opacity: 0;
    transform: translateX(22px);
    transition: opacity 0.65s var(--ease) 0.12s, transform 0.65s var(--ease) 0.12s; }
  .usx-blog .revealed {
    opacity: 1 !important;
    transform: translate(0, 0) !important; }
  .usx-blog [data-reveal-stagger] > * {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.55s var(--ease), transform 0.55s var(--ease); }
  .usx-blog [data-reveal-stagger].revealed > *:nth-child(1) {
    transition-delay: 0s;
    opacity: 1;
    transform: none; }
  .usx-blog [data-reveal-stagger].revealed > *:nth-child(2) {
    transition-delay: 0.1s;
    opacity: 1;
    transform: none; }
  .usx-blog [data-reveal-stagger].revealed > *:nth-child(3) {
    transition-delay: 0.2s;
    opacity: 1;
    transform: none; }
  .usx-blog [data-reveal-stagger].revealed > *:nth-child(4) {
    transition-delay: 0.3s;
    opacity: 1;
    transform: none; }
  .usx-blog [data-reveal-stagger].revealed > *:nth-child(5) {
    transition-delay: 0.4s;
    opacity: 1;
    transform: none; }
  .usx-blog [data-reveal-stagger].revealed > *:nth-child(6) {
    transition-delay: 0.5s;
    opacity: 1;
    transform: none; }

@keyframes orbDrift {
  0%,
  100% {
    transform: translate(0, 0); }
  33% {
    transform: translate(30px, -20px); }
  66% {
    transform: translate(-20px, 30px); } }

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px); }
  to {
    opacity: 1;
    transform: translateY(0); } }

@keyframes sbShimmer {
  from {
    transform: translateX(-100%); }
  to {
    transform: translateX(100%); } }
  .usx-blog .nav-wrap {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    height: var(--nav-h);
    background: rgba(7, 8, 11, 0.65);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    border-bottom: 1px solid rgba(68, 215, 182, 0.06);
    transition: var(--tr); }
  .usx-blog .nav-wrap.scrolled {
    background: rgba(7, 8, 11, 0.96);
    border-bottom-color: var(--border);
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.55); }
  .usx-blog .nav-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 36px;
    height: 100%;
    display: flex;
    align-items: center; }
  .usx-blog .nav-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0; }
  .usx-blog .nav-logo img {
    height: 42px;
    width: auto; }
  .usx-blog .nav-links {
    display: flex;
    align-items: center;
    gap: 26px;
    margin-left: 44px; }
  .usx-blog .nav-links a {
    font-size: 13px;
    font-weight: 500;
    color: var(--muted);
    letter-spacing: 0.02em;
    transition: color 0.15s; }
  .usx-blog .nav-links a:hover {
    color: var(--text); }
  .usx-blog .nav-links a.active {
    color: var(--cida); }
  .usx-blog .nav-mobile-cta {
    display: none; }
  .usx-blog .nav-right {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto; }
  .usx-blog .nav-login {
    font-size: 13px;
    font-weight: 500;
    color: var(--muted);
    padding: 8px 14px;
    transition: color 0.15s; }
  .usx-blog .nav-login:hover {
    color: var(--text); }
  .usx-blog .nav-cta {
    font-family: var(--font-d);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 10px 22px;
    border-radius: var(--r);
    background: var(--principle);
    color: #fff;
    transition: all 0.17s;
    white-space: nowrap; }
  .usx-blog .nav-cta:hover {
    background: #5cbece;
    box-shadow: 0 0 20px rgba(79, 171, 189, 0.35); }
  .usx-blog .nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    margin-left: 16px; }
  .usx-blog .nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: var(--tr); }
  .usx-blog .nav-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px); }
  .usx-blog .nav-toggle.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0); }
  .usx-blog .nav-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px); }
  .usx-blog .hero {
    min-height: 52vh;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden; }
  .usx-blog .hero-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0; }
  .usx-blog .hero-orb-1 {
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(68, 215, 182, 0.05) 0%, transparent 60%);
    top: -300px;
    right: -200px;
    animation: orbDrift 12s ease-in-out infinite; }
  .usx-blog .hero-orb-2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 110, 123, 0.07) 0%, transparent 60%);
    bottom: -200px;
    left: -160px;
    animation: orbDrift 14s ease-in-out infinite reverse; }
  .usx-blog .hero-body {
    position: relative;
    z-index: 1;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    max-width: 760px;
    padding-top: calc(var(--nav-h) + 72px);
    padding-bottom: 64px;
    padding-left: 36px;
    padding-right: 36px;
    margin: 0 auto; }
  .usx-blog .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-d);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--cida);
    margin-bottom: 28px;
    animation: fadeUp 0.5s ease both 0.05s; }
  .usx-blog .eyebrow-line {
    width: 28px;
    height: 1px;
    background: var(--cida);
    flex-shrink: 0; }
  .usx-blog .hero-body h1 {
    font-size: clamp(36px, 5vw, 64px);
    letter-spacing: -0.03em;
    line-height: 1.01;
    margin-bottom: 22px;
    animation: fadeUp 0.55s ease both 0.15s; }
  .usx-blog .hero-lede {
    font-size: clamp(15px, 1.6vw, 18px);
    color: var(--muted);
    line-height: 1.78;
    max-width: 600px;
    animation: fadeUp 0.5s ease both 0.25s; }
  .usx-blog .filter-bar {
    background: var(--bg2);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: var(--nav-h);
    z-index: 100; }
  .usx-blog .filter-inner {
    display: flex;
    align-items: center;
    gap: 8px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 16px 0;
    scrollbar-width: none; }
  .usx-blog .filter-inner::-webkit-scrollbar {
    display: none; }
  .usx-blog .filter-btn {
    flex-shrink: 0;
    font-family: var(--font-d);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 8px 18px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: transparent;
    color: var(--muted);
    cursor: pointer;
    transition: var(--tr);
    white-space: nowrap; }
  .usx-blog .filter-btn:hover {
    border-color: var(--cida);
    color: var(--text); }
  .usx-blog .filter-btn.active {
    background: var(--cida);
    color: #000;
    border-color: var(--cida); }
  .usx-blog .filter-count {
    font-size: 10px;
    font-weight: 800;
    background: rgba(255, 255, 255, 0.1);
    color: var(--muted);
    border-radius: 100px;
    padding: 1px 7px;
    margin-left: 4px;
    transition: var(--tr); }
  .usx-blog .filter-btn.active .filter-count {
    background: rgba(0, 0, 0, 0.2);
    color: rgba(0, 0, 0, 0.65); }
  .usx-blog .post-tag {
    display: inline-block;
    font-family: var(--font-d);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 100px; }
  .usx-blog .tag-press {
    background: rgba(68, 215, 182, 0.12);
    color: var(--cida); }
  .usx-blog .tag-announce {
    background: rgba(79, 171, 189, 0.12);
    color: var(--principle); }
  .usx-blog .tag-alert {
    background: rgba(241, 117, 74, 0.12);
    color: var(--alert); }
  .usx-blog .tag-compliance {
    background: rgba(0, 110, 123, 0.2);
    color: #7dd3dd; }
  .usx-blog .section-featured {
    background: var(--bg);
    padding: 72px 0 0; }
  .usx-blog .featured-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    transition: border-color 0.2s, box-shadow 0.2s; }
  .usx-blog .featured-card:hover {
    border-color: rgba(68, 215, 182, 0.25);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5); }
  .usx-blog .featured-img {
    min-height: 360px;
    background: var(--bg3);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden; }
  .usx-blog .featured-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7; }
  .usx-blog .featured-img-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    width: 100%;
    height: 100%;
    min-height: 360px;
    background: linear-gradient(135deg, var(--bg3) 0%, rgba(0, 110, 123, 0.15) 100%); }
  .usx-blog .featured-img-placeholder svg {
    opacity: 0.25; }
  .usx-blog .featured-img-placeholder span {
    font-family: var(--font-d);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(68, 215, 182, 0.3); }
  .usx-blog .featured-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    font-family: var(--font-d);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    background: var(--cida);
    color: #000;
    padding: 5px 12px;
    border-radius: 100px; }
  .usx-blog .featured-body {
    padding: 52px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center; }
  .usx-blog .featured-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px; }
  .usx-blog .featured-date {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
    font-weight: 500; }
  .usx-blog .featured-body h2 {
    font-size: clamp(22px, 2.4vw, 32px);
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    transition: color 0.15s; }
  .usx-blog .featured-card:hover .featured-body h2 {
    color: var(--cida); }
  .usx-blog .featured-body p {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.78;
    margin-bottom: 32px; }
  .usx-blog .featured-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-d);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--cida);
    transition: gap 0.15s; }
  .usx-blog .featured-link:hover {
    gap: 12px; }
  .usx-blog .featured-link svg {
    transition: transform 0.15s; }
  .usx-blog .featured-link:hover svg {
    transform: translateX(3px); }
  .usx-blog .section-posts {
    background: var(--bg);
    padding: 56px 0 108px; }
  .usx-blog .posts-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 40px; }
  .usx-blog .posts-header h3 {
    font-size: 13px;
    font-weight: 700;
    font-family: var(--font-d);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--muted); }
  .usx-blog .posts-count {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.2); }
  .usx-blog .posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px; }
  .usx-blog .post-card {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s; }
  .usx-blog .post-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
    border-color: rgba(68, 215, 182, 0.22); }
  .usx-blog .post-card[data-hidden="true"] {
    display: none; }
  .usx-blog .post-card-img {
    height: 180px;
    background: var(--bg3);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative; }
  .usx-blog .post-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.65;
    transition: opacity 0.2s, transform 0.3s; }
  .usx-blog .post-card:hover .post-card-img img {
    opacity: 0.85;
    transform: scale(1.03); }
  .usx-blog .post-card-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg3), rgba(0, 110, 123, 0.1)); }
  .usx-blog .post-card-img-placeholder svg {
    opacity: 0.15; }
  .usx-blog .post-card-body {
    padding: 28px 28px 32px;
    flex: 1;
    display: flex;
    flex-direction: column; }
  .usx-blog .post-card-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    flex-wrap: wrap; }
  .usx-blog .post-card-date {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
    font-weight: 500; }
  .usx-blog .post-card-body h3 {
    font-size: clamp(16px, 1.6vw, 19px);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
    transition: color 0.15s;
    flex: 1; }
  .usx-blog .post-card:hover h3 {
    color: var(--cida); }
  .usx-blog .post-card-body p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.72;
    margin-bottom: 24px;
    flex: 1; }
  .usx-blog .post-read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    font-family: var(--font-d);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    transition: color 0.15s, gap 0.15s; }
  .usx-blog .post-card:hover .post-read-more {
    color: var(--cida);
    gap: 9px; }
  .usx-blog .posts-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 72px 0;
    font-family: var(--font-d);
    color: rgba(255, 255, 255, 0.18);
    font-size: 14px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    display: none; }
  .usx-blog .posts-empty.visible {
    display: block; }
  .usx-blog .section-subscribe {
    background: var(--bg2);
    padding: 96px 0;
    border-top: 1px solid var(--border); }
  .usx-blog .subscribe-inner {
    max-width: 680px;
    margin: 0 auto;
    text-align: center; }
  .usx-blog .subscribe-inner h2 {
    font-size: clamp(26px, 3.5vw, 44px);
    margin-bottom: 16px; }
  .usx-blog .subscribe-inner p {
    font-size: 16px;
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 36px; }
  .usx-blog .subscribe-form {
    display: flex;
    gap: 12px;
    max-width: 520px;
    margin: 0 auto; }
  .usx-blog .subscribe-input {
    flex: 1;
    background: var(--bg3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--r);
    padding: 14px 18px;
    font-family: var(--font-b);
    font-size: 15px;
    color: var(--text);
    outline: none;
    transition: border-color 0.15s; }
  .usx-blog .subscribe-input::placeholder {
    color: rgba(255, 255, 255, 0.22); }
  .usx-blog .subscribe-input:focus {
    border-color: var(--cida); }
  .usx-blog .subscribe-btn {
    flex-shrink: 0;
    font-family: var(--font-d);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 14px 24px;
    border-radius: var(--r);
    background: var(--cida);
    color: #000;
    border: none;
    cursor: pointer;
    transition: var(--tr);
    white-space: nowrap; }
  .usx-blog .subscribe-btn:hover {
    background: #5ce8c7;
    box-shadow: 0 0 24px rgba(68, 215, 182, 0.3); }
  .usx-blog .subscribe-note {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.2);
    margin-top: 14px; }
  .usx-blog .site-footer {
    background: #000;
    border-top: 1px solid rgba(68, 215, 182, 0.07);
    padding: 64px 0 32px; }
  .usx-blog .ft-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 56px;
    margin-bottom: 48px; }
  .usx-blog .ft-logo {
    height: 44px;
    width: auto;
    margin-bottom: 14px; }
  .usx-blog .ft-tagline {
    font-family: var(--font-d);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--cida);
    margin-bottom: 10px; }
  .usx-blog .ft-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.28);
    line-height: 1.75;
    max-width: 260px; }
  .usx-blog .ft-addr {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.18);
    line-height: 1.75;
    margin-top: 14px; }
  .usx-blog .ft-col h4 {
    font-family: var(--font-d);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.28);
    margin-bottom: 18px; }
  .usx-blog .ft-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px; }
  .usx-blog .ft-col a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.38);
    transition: color 0.15s; }
  .usx-blog .ft-col a:hover {
    color: var(--cida); }
  .usx-blog .ft-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px; }
  .usx-blog .ft-bottom p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.18); }
  .usx-blog .ft-awards {
    display: flex;
    gap: 12px;
    align-items: center; }
  .usx-blog .ft-awards img {
    height: 56px;
    width: auto;
    object-fit: contain;
    opacity: 0.9;
    filter: none;
    transition: opacity 0.2s; }
  .usx-blog .ft-awards img:hover {
    opacity: 1; }
  @media (max-width: 1024px) {
    .usx-blog :root {
      --nav-h: 64px; }
    .usx-blog .container {
      padding: 0 28px; }
    .usx-blog .nav-links {
      display: none; }
    .usx-blog .nav-right {
      display: none; }
    .usx-blog .nav-toggle {
      display: flex;
      margin-left: auto; }
    .usx-blog .hero-body {
      padding-left: 28px;
      padding-right: 28px; }
    .usx-blog .featured-card {
      grid-template-columns: 1fr; }
    .usx-blog .featured-img {
      min-height: 260px; }
    .usx-blog .posts-grid {
      grid-template-columns: repeat(2, 1fr); }
    .usx-blog .ft-top {
      grid-template-columns: 1fr 1fr;
      gap: 40px; } }
  .usx-blog .nav-links.open {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(7, 8, 11, 0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 36px 36px;
    gap: 0;
    z-index: 9999;
    overflow-y: auto; }
  .usx-blog .nav-links.open li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06); }
  .usx-blog .nav-links.open a {
    display: block;
    padding: 18px 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text);
    letter-spacing: -0.01em; }
  .usx-blog .nav-links.open a:hover {
    color: var(--cida); }
  .usx-blog .nav-links.open .nav-mobile-cta {
    display: block;
    border-bottom: none;
    padding-top: 28px; }
  .usx-blog .nav-links.open .nav-mobile-cta .btn {
    width: 100%;
    justify-content: center;
    font-size: 15px;
    padding: 15px 28px; }
  @media (max-width: 640px) {
    .usx-blog .container {
      padding: 0 20px; }
    .usx-blog .posts-grid {
      grid-template-columns: 1fr; }
    .usx-blog .subscribe-form {
      flex-direction: column; }
    .usx-blog .subscribe-btn {
      width: 100%; }
    .usx-blog .ft-top {
      grid-template-columns: 1fr; }
    .usx-blog .posts-header {
      flex-direction: column;
      gap: 6px; } }
  @media (max-width: 400px) {
    .usx-blog :root {
      --nav-h: 60px; }
    .usx-blog .nav-logo img {
      height: 34px; } }

.usx-company {
  /* ================================================================
   USX CYBER — COMPANY / ABOUT PAGE
   Dynamic Defense™ | About USX Cyber
   ================================================================ */
  /* ── Design Tokens ─────────────────────────────────────────────── */
  /* ── Reset ──────────────────────────────────────────────────────── */
  /* ── Container ──────────────────────────────────────────────────── */
  /* ── Headings ───────────────────────────────────────────────────── */
  /* ── Eyebrow ─────────────────────────────────────────────────────── */
  /* ── Buttons ─────────────────────────────────────────────────────── */
  /* ── Scroll-reveal ───────────────────────────────────────────────── */
  /* ================================================================
   ANIMATIONS
   ================================================================ */
  /* ================================================================
   NAVIGATION
   ================================================================ */
  /* ================================================================
   HERO — centered, no visual split
   ================================================================ */
  /* ================================================================
   SECTION — SHARED
   ================================================================ */
  /* ================================================================
   STATEMENT BAR
   ================================================================ */
  /* ================================================================
   MISSION
   ================================================================ */
  /* ================================================================
   WHO WE ARE
   ================================================================ */
  /* ================================================================
   BY THE NUMBERS
   ================================================================ */
  /* ================================================================
   WHAT MAKES US DIFFERENT
   ================================================================ */
  /* ================================================================
   OUR VALUES
   ================================================================ */
  /* ================================================================
   THE TEAM
   ================================================================ */
  /* ================================================================
   OUR PROMISE
   ================================================================ */
  /* ================================================================
   AWARDS & RECOGNITION
   ================================================================ */
  /* ================================================================
   CLOSING CTA
   ================================================================ */
  /* ================================================================
   FOOTER
   ================================================================ */
  /* ================================================================
   RESPONSIVE — TABLET  (≤ 1024px)
   ================================================================ */
  /* Mobile nav overlay */
  /* ================================================================
   RESPONSIVE — MOBILE  (≤ 640px)
   ================================================================ */ }
  .usx-company :root {
    --cida: #44d7b6;
    --principle: #4fabbd;
    --deep: #006e7b;
    --alert: #f1754a;
    --bg: #07080b;
    --bg2: #0c0f14;
    --bg3: #111620;
    --surface: #161d2a;
    --text: #eef2f8;
    --muted: #9bb8cc;
    --faint: rgba(255, 255, 255, 0.04);
    --border: rgba(68, 215, 182, 0.13);
    --font-d: "Outfit", sans-serif;
    --font-b: "DM Sans", sans-serif;
    --max-w: 1200px;
    --nav-h: 68px;
    --r: 6px;
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --tr: all 0.2s var(--ease); }
  .usx-company *,
  .usx-company *::before,
  .usx-company *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0; }
  .usx-company html {
    scroll-behavior: smooth; }
  .usx-company body {
    font-family: var(--font-b);
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    background-image: radial-gradient(rgba(68, 215, 182, 0.05) 1px, transparent 1px);
    background-size: 32px 32px; }
  .usx-company img {
    max-width: 100%;
    height: auto;
    display: block; }
  .usx-company a {
    text-decoration: none;
    color: inherit; }
  .usx-company ul {
    list-style: none; }
  .usx-company strong {
    color: var(--text);
    font-weight: 600; }
  .usx-company .container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 36px; }
  .usx-company h1,
  .usx-company h2,
  .usx-company h3,
  .usx-company h4 {
    font-family: var(--font-d);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.02em; }
  .usx-company .eyebrow {
    display: inline-block;
    font-family: var(--font-d);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--cida);
    margin-bottom: 20px; }
  .usx-company .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-d);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 14px 30px;
    border-radius: var(--r);
    transition: var(--tr);
    cursor: pointer;
    border: none; }
  .usx-company .btn-cta {
    background: var(--principle);
    color: #fff;
    font-size: 16px;
    padding: 16px 36px; }
  .usx-company .btn-cta:hover {
    background: #5cbece;
    box-shadow: 0 0 32px rgba(79, 171, 189, 0.45);
    transform: translateY(-2px); }
  .usx-company .btn-cida {
    background: var(--cida);
    color: #000;
    font-size: 16px;
    padding: 16px 36px; }
  .usx-company .btn-cida:hover {
    background: #5ce8c7;
    box-shadow: 0 0 28px rgba(68, 215, 182, 0.35);
    transform: translateY(-2px); }
  .usx-company .btn-outline {
    background: transparent;
    color: var(--text);
    border: 1px solid rgba(255, 255, 255, 0.18);
    font-size: 16px;
    padding: 16px 36px; }
  .usx-company .btn-outline:hover {
    border-color: var(--cida);
    color: var(--cida);
    background: rgba(68, 215, 182, 0.04); }
  .usx-company .btn-block {
    width: 100%;
    justify-content: center; }
  .usx-company [data-reveal] {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.65s var(--ease), transform 0.65s var(--ease); }
  .usx-company [data-reveal-right] {
    opacity: 0;
    transform: translateX(22px);
    transition: opacity 0.65s var(--ease) 0.12s, transform 0.65s var(--ease) 0.12s; }
  .usx-company .revealed {
    opacity: 1 !important;
    transform: translate(0, 0) !important; }
  .usx-company [data-reveal-stagger] > * {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.55s var(--ease), transform 0.55s var(--ease); }
  .usx-company [data-reveal-stagger].revealed > *:nth-child(1) {
    transition-delay: 0s;
    opacity: 1;
    transform: none; }
  .usx-company [data-reveal-stagger].revealed > *:nth-child(2) {
    transition-delay: 0.1s;
    opacity: 1;
    transform: none; }
  .usx-company [data-reveal-stagger].revealed > *:nth-child(3) {
    transition-delay: 0.2s;
    opacity: 1;
    transform: none; }
  .usx-company [data-reveal-stagger].revealed > *:nth-child(4) {
    transition-delay: 0.3s;
    opacity: 1;
    transform: none; }
  .usx-company [data-reveal-stagger].revealed > *:nth-child(5) {
    transition-delay: 0.4s;
    opacity: 1;
    transform: none; }
  .usx-company [data-reveal-stagger].revealed > *:nth-child(6) {
    transition-delay: 0.5s;
    opacity: 1;
    transform: none; }

@keyframes orbDrift {
  0%,
  100% {
    transform: translate(0, 0); }
  33% {
    transform: translate(30px, -20px); }
  66% {
    transform: translate(-20px, 30px); } }

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px); }
  to {
    opacity: 1;
    transform: translateY(0); } }

@keyframes fadeLeft {
  from {
    opacity: 0;
    transform: translateX(28px); }
  to {
    opacity: 1;
    transform: translateX(0); } }

@keyframes sbShimmer {
  from {
    transform: translateX(-100%); }
  to {
    transform: translateX(100%); } }

@keyframes numPulse {
  0%,
  100% {
    text-shadow: 0 0 0 rgba(68, 215, 182, 0); }
  50% {
    text-shadow: 0 0 40px rgba(68, 215, 182, 0.3); } }
  .usx-company .nav-wrap {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    height: var(--nav-h);
    background: rgba(7, 8, 11, 0.65);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    border-bottom: 1px solid rgba(68, 215, 182, 0.06);
    transition: var(--tr); }
  .usx-company .nav-wrap.scrolled {
    background: rgba(7, 8, 11, 0.96);
    border-bottom-color: var(--border);
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.55); }
  .usx-company .nav-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 36px;
    height: 100%;
    display: flex;
    align-items: center; }
  .usx-company .nav-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0; }
  .usx-company .nav-logo img {
    height: 42px;
    width: auto; }
  .usx-company .nav-links {
    display: flex;
    align-items: center;
    gap: 26px;
    margin-left: 44px; }
  .usx-company .nav-links a {
    font-size: 13px;
    font-weight: 500;
    color: var(--muted);
    letter-spacing: 0.02em;
    transition: color 0.15s; }
  .usx-company .nav-links a:hover {
    color: var(--text); }
  .usx-company .nav-links a.active {
    color: var(--cida); }
  .usx-company .nav-mobile-cta {
    display: none; }
  .usx-company .nav-right {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto; }
  .usx-company .nav-login {
    font-size: 13px;
    font-weight: 500;
    color: var(--muted);
    padding: 8px 14px;
    transition: color 0.15s; }
  .usx-company .nav-login:hover {
    color: var(--text); }
  .usx-company .nav-cta {
    font-family: var(--font-d);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 10px 22px;
    border-radius: var(--r);
    background: var(--principle);
    color: #fff;
    transition: all 0.17s;
    white-space: nowrap; }
  .usx-company .nav-cta:hover {
    background: #5cbece;
    box-shadow: 0 0 20px rgba(79, 171, 189, 0.35); }
  .usx-company .nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    margin-left: 16px; }
  .usx-company .nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: var(--tr); }
  .usx-company .nav-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px); }
  .usx-company .nav-toggle.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0); }
  .usx-company .nav-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px); }
  .usx-company .hero {
    min-height: 72vh;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden; }
  .usx-company .hero-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0; }
  .usx-company .hero-orb-1 {
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, rgba(68, 215, 182, 0.06) 0%, transparent 60%);
    top: -250px;
    right: -200px;
    animation: orbDrift 12s ease-in-out infinite; }
  .usx-company .hero-orb-2 {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(0, 110, 123, 0.08) 0%, transparent 60%);
    bottom: -200px;
    left: -180px;
    animation: orbDrift 14s ease-in-out infinite reverse; }
  .usx-company .hero-body {
    position: relative;
    z-index: 1;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 820px;
    padding-bottom: 72px;
    padding-left: 36px;
    padding-right: 36px;
    margin: 0 auto;
    text-align: center;
    align-items: center; }
  .usx-company .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-d);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--cida);
    margin-bottom: 32px;
    animation: fadeUp 0.5s ease both 0.05s; }
  .usx-company .eyebrow-line {
    width: 28px;
    height: 1px;
    background: var(--cida);
    flex-shrink: 0; }
  .usx-company .hero-body h1 {
    font-size: clamp(40px, 5.5vw, 74px);
    letter-spacing: -0.03em;
    line-height: 1.01;
    margin-bottom: 28px;
    animation: fadeUp 0.55s ease both 0.15s;
    color: var(--text); }
  .usx-company .hero-lede {
    font-size: clamp(16px, 1.7vw, 19px);
    color: var(--muted);
    line-height: 1.78;
    max-width: 660px;
    margin-bottom: 40px;
    animation: fadeUp 0.5s ease both 0.25s; }
  .usx-company .hero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
    animation: fadeUp 0.5s ease both 0.35s; }
  .usx-company section {
    padding: 108px 0; }
  .usx-company .sec-intro {
    max-width: 720px;
    margin-bottom: 56px; }
  .usx-company .sec-intro.center {
    margin-inline: auto;
    text-align: center; }
  .usx-company .sec-intro h2 {
    font-size: clamp(28px, 3.5vw, 50px);
    margin-bottom: 16px; }
  .usx-company .sec-intro p {
    font-size: 16px;
    color: var(--muted);
    line-height: 1.75; }
  .usx-company .sec-intro p + p {
    margin-top: 16px; }
  .usx-company .statement-bar {
    background: var(--cida);
    position: relative;
    z-index: 1;
    overflow: hidden; }
  .usx-company .statement-bar::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, transparent 20%, rgba(255, 255, 255, 0.18) 50%, transparent 80%);
    animation: sbShimmer 3.5s ease infinite; }
  .usx-company .sb-inner {
    display: flex;
    align-items: stretch;
    position: relative; }
  .usx-company .sb-text {
    flex: 1;
    padding: 26px 0;
    font-family: var(--font-d);
    font-size: clamp(16px, 2.1vw, 22px);
    font-weight: 700;
    color: #000;
    line-height: 1.2;
    letter-spacing: -0.01em; }
  .usx-company .section-mission {
    background: var(--bg2); }
  .usx-company .mission-body {
    max-width: 780px;
    margin: 0 auto; }
  .usx-company .mission-body h2 {
    font-size: clamp(28px, 3.5vw, 50px);
    margin-bottom: 28px; }
  .usx-company .mission-body p {
    font-size: clamp(15px, 1.5vw, 17px);
    color: var(--muted);
    line-height: 1.85; }
  .usx-company .mission-body p + p {
    margin-top: 20px; }
  .usx-company .mission-body .mission-closer {
    margin-top: 32px;
    font-family: var(--font-d);
    font-size: clamp(16px, 1.6vw, 18px);
    font-weight: 600;
    color: var(--text);
    line-height: 1.6; }
  .usx-company .section-who {
    background: var(--bg); }
  .usx-company .who-intro {
    max-width: 780px;
    margin: 0 auto 64px; }
  .usx-company .who-intro h2 {
    font-size: clamp(28px, 3.5vw, 50px);
    margin-bottom: 20px; }
  .usx-company .who-intro p {
    font-size: clamp(15px, 1.5vw, 17px);
    color: var(--muted);
    line-height: 1.85; }
  .usx-company .who-intro p + p {
    margin-top: 16px; }
  .usx-company .who-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px; }
  .usx-company .who-pillar {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 40px 32px;
    border-top: 2px solid var(--cida);
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s; }
  .usx-company .who-pillar:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    border-color: rgba(68, 215, 182, 0.3); }
  .usx-company .who-pillar-num {
    font-family: var(--font-d);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.2em;
    color: rgba(68, 215, 182, 0.5);
    margin-bottom: 14px;
    display: block; }
  .usx-company .who-pillar h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3; }
  .usx-company .who-pillar p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.75; }
  .usx-company .section-numbers {
    background: var(--bg2); }
  .usx-company .numbers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden; }
  .usx-company .num-stat {
    background: var(--bg3);
    padding: 44px 36px;
    border-top: 2px solid transparent;
    transition: background 0.2s, border-top-color 0.25s; }
  .usx-company .num-stat:hover {
    background: var(--surface);
    border-top-color: var(--cida); }
  .usx-company .num-value {
    font-family: var(--font-d);
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 900;
    color: var(--cida);
    line-height: 1;
    margin-bottom: 10px;
    letter-spacing: -0.02em; }
  .usx-company .num-label {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.5; }
  .usx-company .section-diff {
    background: var(--bg); }
  .usx-company .diff-list {
    display: flex;
    flex-direction: column;
    gap: 0; }
  .usx-company .diff-item {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 36px;
    padding: 44px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    align-items: flex-start;
    transition: background 0.15s; }
  .usx-company .diff-item:last-child {
    border-bottom: none; }
  .usx-company .diff-num {
    font-family: var(--font-d);
    font-size: 44px;
    font-weight: 900;
    color: rgba(68, 215, 182, 0.12);
    line-height: 1;
    transition: color 0.2s;
    padding-top: 4px; }
  .usx-company .diff-item:hover .diff-num {
    color: rgba(68, 215, 182, 0.28); }
  .usx-company .diff-body h3 {
    font-family: var(--font-d);
    font-size: clamp(18px, 1.9vw, 22px);
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px;
    padding-top: 8px; }
  .usx-company .diff-body p {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.78;
    max-width: 680px; }
  .usx-company .section-values {
    background: var(--bg2); }
  .usx-company .values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px; }
  .usx-company .value-card {
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 44px 36px;
    border-left: 3px solid var(--cida);
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s; }
  .usx-company .value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    background: var(--surface); }
  .usx-company .value-card h3 {
    font-family: var(--font-d);
    font-size: clamp(17px, 1.8vw, 21px);
    font-weight: 700;
    color: var(--text);
    margin-bottom: 14px; }
  .usx-company .value-card p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.78; }
  .usx-company .section-team {
    background: var(--bg); }
  .usx-company .team-inner {
    max-width: 780px;
    margin: 0 auto; }
  .usx-company .team-inner h2 {
    font-size: clamp(28px, 3.5vw, 50px);
    margin-bottom: 20px; }
  .usx-company .team-inner > p {
    font-size: clamp(15px, 1.5vw, 17px);
    color: var(--muted);
    line-height: 1.85; }
  .usx-company .team-inner > p + p {
    margin-top: 16px; }
  .usx-company .team-highlights {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden; }
  .usx-company .team-highlight {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 22px 28px;
    background: var(--bg2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.15s; }
  .usx-company .team-highlight:last-child {
    border-bottom: none; }
  .usx-company .team-highlight:hover {
    background: var(--bg3); }
  .usx-company .team-highlight-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--cida);
    flex-shrink: 0;
    margin-top: 9px; }
  .usx-company .team-highlight p {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.65; }
  .usx-company .section-promise {
    background: var(--deep);
    padding: 96px 0;
    position: relative;
    overflow: hidden; }
  .usx-company .section-promise::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -120px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(68, 215, 182, 0.18), transparent 65%);
    pointer-events: none; }
  .usx-company .section-promise::after {
    content: "";
    position: absolute;
    bottom: -100px;
    left: -80px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.3), transparent 65%);
    pointer-events: none; }
  .usx-company .promise-inner {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1; }
  .usx-company .promise-inner h2 {
    font-size: clamp(28px, 3.5vw, 50px);
    color: #000;
    margin-bottom: 28px; }
  .usx-company .promise-inner p {
    font-size: clamp(15px, 1.5vw, 17px);
    color: rgba(0, 0, 0, 0.65);
    line-height: 1.85; }
  .usx-company .promise-inner p + p {
    margin-top: 18px; }
  .usx-company .promise-closer {
    margin-top: 40px;
    font-family: var(--font-d);
    font-size: clamp(20px, 2.5vw, 32px);
    font-weight: 800;
    color: #000;
    letter-spacing: -0.01em; }
  .usx-company .section-awards {
    background: var(--bg2); }
  .usx-company .awards-inner {
    max-width: 780px;
    margin: 0 auto; }
  .usx-company .awards-inner h2 {
    font-size: clamp(28px, 3.5vw, 50px);
    margin-bottom: 16px; }
  .usx-company .awards-inner > p {
    font-size: 16px;
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 52px; }
  .usx-company .awards-grid {
    display: flex;
    gap: 32px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap; }
  .usx-company .award-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 36px 44px;
    min-width: 220px;
    transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s; }
  .usx-company .award-item:hover {
    transform: translateY(-5px);
    border-color: rgba(68, 215, 182, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5); }
  .usx-company .award-item img {
    height: 80px;
    width: auto;
    object-fit: contain;
    opacity: 0.7;
    transition: opacity 0.2s; }
  .usx-company .award-item:hover img {
    opacity: 1; }
  .usx-company .award-label {
    font-family: var(--font-d);
    font-size: 12px;
    font-weight: 700;
    color: var(--muted);
    letter-spacing: 0.06em;
    text-align: center; }
  .usx-company .section-cta-company {
    background: var(--bg3);
    padding: 108px 0; }
  .usx-company .cta-company-inner {
    max-width: 680px;
    margin: 0 auto;
    text-align: center; }
  .usx-company .cta-company-inner h2 {
    font-size: clamp(30px, 4vw, 54px);
    margin-bottom: 20px; }
  .usx-company .cta-company-inner p {
    font-size: 16px;
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 44px; }
  .usx-company .cta-company-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center; }
  .usx-company .site-footer {
    background: #000;
    border-top: 1px solid rgba(68, 215, 182, 0.07);
    padding: 64px 0 32px; }
  .usx-company .ft-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 56px;
    margin-bottom: 48px; }
  .usx-company .ft-logo {
    height: 44px;
    width: auto;
    margin-bottom: 14px; }
  .usx-company .ft-tagline {
    font-family: var(--font-d);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--cida);
    margin-bottom: 10px; }
  .usx-company .ft-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.28);
    line-height: 1.75;
    max-width: 260px; }
  .usx-company .ft-addr {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.18);
    line-height: 1.75;
    margin-top: 14px; }
  .usx-company .ft-col h4 {
    font-family: var(--font-d);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.28);
    margin-bottom: 18px; }
  .usx-company .ft-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px; }
  .usx-company .ft-col a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.38);
    transition: color 0.15s; }
  .usx-company .ft-col a:hover {
    color: var(--cida); }
  .usx-company .ft-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px; }
  .usx-company .ft-bottom p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.18); }
  .usx-company .ft-awards {
    display: flex;
    gap: 12px;
    align-items: center; }
  .usx-company .ft-awards img {
    height: 56px;
    width: auto;
    object-fit: contain;
    opacity: 0.9;
    filter: none;
    transition: opacity 0.2s; }
  .usx-company .ft-awards img:hover {
    opacity: 1; }
  @media (max-width: 1024px) {
    .usx-company :root {
      --nav-h: 64px; }
    .usx-company section {
      padding: 88px 0; }
    .usx-company .container {
      padding: 0 28px; }
    .usx-company .nav-links {
      display: none; }
    .usx-company .nav-right {
      display: none; }
    .usx-company .nav-toggle {
      display: flex;
      margin-left: auto; }
    .usx-company .hero-body {
      padding-left: 28px;
      padding-right: 28px; }
    .usx-company .who-pillars {
      grid-template-columns: 1fr; }
    .usx-company .numbers-grid {
      grid-template-columns: repeat(2, 1fr); }
    .usx-company .diff-item {
      grid-template-columns: 44px 1fr;
      gap: 24px; }
    .usx-company .values-grid {
      grid-template-columns: 1fr; }
    .usx-company .ft-top {
      grid-template-columns: 1fr 1fr;
      gap: 40px; } }
  .usx-company .nav-links.open {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(7, 8, 11, 0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 36px 36px;
    gap: 0;
    z-index: 9999;
    overflow-y: auto; }
  .usx-company .nav-links.open li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06); }
  .usx-company .nav-links.open a {
    display: block;
    padding: 18px 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text);
    letter-spacing: -0.01em; }
  .usx-company .nav-links.open a:hover {
    color: var(--cida); }
  .usx-company .nav-links.open .nav-mobile-cta {
    display: block;
    border-bottom: none;
    padding-top: 28px; }
  .usx-company .nav-links.open .nav-mobile-cta .btn {
    width: 100%;
    justify-content: center;
    font-size: 15px;
    padding: 15px 28px; }
  @media (max-width: 640px) {
    .usx-company .container {
      padding: 0 20px; }
    .usx-company section {
      padding: 72px 0; }
    .usx-company .hero-body {
      padding-left: 20px;
      padding-right: 20px;
      text-align: left;
      align-items: flex-start; }
    .usx-company .hero-ctas {
      flex-direction: column;
      align-items: flex-start; }
    .usx-company .hero-ctas .btn {
      width: 100%;
      justify-content: center; }
    .usx-company .numbers-grid {
      grid-template-columns: 1fr; }
    .usx-company .diff-item {
      grid-template-columns: 1fr;
      gap: 8px; }
    .usx-company .diff-num {
      font-size: 28px; }
    .usx-company .awards-grid {
      flex-direction: column;
      align-items: center; }
    .usx-company .cta-company-btns {
      flex-direction: column;
      align-items: center; }
    .usx-company .cta-company-btns .btn {
      width: 100%;
      justify-content: center; }
    .usx-company .ft-top {
      grid-template-columns: 1fr; }
    .usx-company .sb-link {
      display: none; } }
  @media (max-width: 400px) {
    .usx-company :root {
      --nav-h: 60px; }
    .usx-company .nav-logo img {
      height: 34px; } }

.usx-compliance {
  /* ================================================================
   USX CYBER — COMPLIANCE PAGE
   Dynamic Defense™ | Compliance Advisory & Platform
   ================================================================ */
  /* ── Design Tokens ─────────────────────────────────────────────── */
  /* ── Reset ──────────────────────────────────────────────────────── */
  /* ── Container ──────────────────────────────────────────────────── */
  /* ── Headings ───────────────────────────────────────────────────── */
  /* ── Eyebrow ─────────────────────────────────────────────────────── */
  /* ── Buttons ─────────────────────────────────────────────────────── */
  /* ── Scroll-reveal ───────────────────────────────────────────────── */
  /* ================================================================
   ANIMATIONS
   ================================================================ */
  /* ================================================================
   NAVIGATION
   ================================================================ */
  /* ================================================================
   HERO
   ================================================================ */
  /* Compliance hero stats panel */
  /* Floating badges */
  /* ================================================================
   SECTION — SHARED
   ================================================================ */
  /* ================================================================
   STATEMENT BAR
   ================================================================ */
  /* ================================================================
   THE PROBLEM
   ================================================================ */
  /* ================================================================
   THE USX CYBER APPROACH
   ================================================================ */
  /* ================================================================
   FRAMEWORKS COVERED
   ================================================================ */
  /* Full-width multi-framework card */
  /* ================================================================
   COMPLIANCE TIERS
   ================================================================ */
  /* ================================================================
   WHY CONTINUOUS BEATS PERIODIC
   ================================================================ */
  /* ================================================================
   FRAMEWORKS STRIP
   ================================================================ */
  /* ================================================================
   DEMO CTA
   ================================================================ */
  /* ================================================================
   FOOTER
   ================================================================ */
  /* ================================================================
   RESPONSIVE — TABLET  (≤ 1024px)
   ================================================================ */
  /* Mobile nav overlay */
  /* ================================================================
   RESPONSIVE — MOBILE  (≤ 640px)
   ================================================================ */ }
  .usx-compliance :root {
    --cida: #44d7b6;
    --principle: #4fabbd;
    --deep: #006e7b;
    --alert: #f1754a;
    --bg: #07080b;
    --bg2: #0c0f14;
    --bg3: #111620;
    --surface: #161d2a;
    --text: #eef2f8;
    --muted: #9bb8cc;
    --faint: rgba(255, 255, 255, 0.04);
    --border: rgba(68, 215, 182, 0.13);
    --font-d: "Outfit", sans-serif;
    --font-b: "DM Sans", sans-serif;
    --max-w: 1200px;
    --nav-h: 68px;
    --r: 6px;
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --tr: all 0.2s var(--ease); }
  .usx-compliance *,
  .usx-compliance *::before,
  .usx-compliance *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0; }
  .usx-compliance html {
    scroll-behavior: smooth; }
  .usx-compliance body {
    font-family: var(--font-b);
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    background-image: radial-gradient(rgba(68, 215, 182, 0.05) 1px, transparent 1px);
    background-size: 32px 32px; }
  .usx-compliance img {
    max-width: 100%;
    height: auto;
    display: block; }
  .usx-compliance a {
    text-decoration: none;
    color: inherit; }
  .usx-compliance ul {
    list-style: none; }
  .usx-compliance strong {
    color: var(--text);
    font-weight: 600; }
  .usx-compliance .container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 36px; }
  .usx-compliance h1,
  .usx-compliance h2,
  .usx-compliance h3,
  .usx-compliance h4 {
    font-family: var(--font-d);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.02em; }
  .usx-compliance .sec-h {
    font-size: clamp(32px, 5vw, 56px);
    margin-bottom: 20px;
    letter-spacing: -0.025em; }
  .usx-compliance .eyebrow {
    display: inline-block;
    font-family: var(--font-d);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--cida);
    margin-bottom: 20px; }
  .usx-compliance .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-d);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 14px 30px;
    border-radius: var(--r);
    transition: var(--tr);
    cursor: pointer;
    border: none; }
  .usx-compliance .btn-cta {
    background: var(--principle);
    color: #fff;
    font-size: 16px;
    padding: 16px 36px; }
  .usx-compliance .btn-cta:hover {
    background: #5cbece;
    box-shadow: 0 0 32px rgba(79, 171, 189, 0.45);
    transform: translateY(-2px); }
  .usx-compliance .btn-cida {
    background: var(--cida);
    color: #000; }
  .usx-compliance .btn-cida:hover {
    background: #5ce8c7;
    box-shadow: 0 0 28px rgba(68, 215, 182, 0.35);
    transform: translateY(-2px); }
  .usx-compliance .btn-outline {
    background: transparent;
    color: var(--text);
    border: 1px solid rgba(255, 255, 255, 0.18);
    font-size: 16px;
    padding: 16px 36px; }
  .usx-compliance .btn-outline:hover {
    border-color: var(--cida);
    color: var(--cida);
    background: rgba(68, 215, 182, 0.04); }
  .usx-compliance .btn-block {
    width: 100%;
    justify-content: center; }
  .usx-compliance .btn-sm {
    font-size: 12px;
    padding: 10px 20px; }
  .usx-compliance [data-reveal] {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.65s var(--ease), transform 0.65s var(--ease); }
  .usx-compliance [data-reveal-right] {
    opacity: 0;
    transform: translateX(22px);
    transition: opacity 0.65s var(--ease) 0.12s, transform 0.65s var(--ease) 0.12s; }
  .usx-compliance .revealed {
    opacity: 1 !important;
    transform: translate(0, 0) !important; }
  .usx-compliance [data-reveal-stagger] > * {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.55s var(--ease), transform 0.55s var(--ease); }
  .usx-compliance [data-reveal-stagger].revealed > *:nth-child(1) {
    transition-delay: 0s;
    opacity: 1;
    transform: none; }
  .usx-compliance [data-reveal-stagger].revealed > *:nth-child(2) {
    transition-delay: 0.1s;
    opacity: 1;
    transform: none; }
  .usx-compliance [data-reveal-stagger].revealed > *:nth-child(3) {
    transition-delay: 0.2s;
    opacity: 1;
    transform: none; }
  .usx-compliance [data-reveal-stagger].revealed > *:nth-child(4) {
    transition-delay: 0.3s;
    opacity: 1;
    transform: none; }
  .usx-compliance [data-reveal-stagger].revealed > *:nth-child(5) {
    transition-delay: 0.4s;
    opacity: 1;
    transform: none; }
  .usx-compliance [data-reveal-stagger].revealed > *:nth-child(6) {
    transition-delay: 0.5s;
    opacity: 1;
    transform: none; }
  .usx-compliance [data-reveal-stagger].revealed > *:nth-child(7) {
    transition-delay: 0.55s;
    opacity: 1;
    transform: none; }
  .usx-compliance [data-reveal-stagger].revealed > *:nth-child(8) {
    transition-delay: 0.6s;
    opacity: 1;
    transform: none; }

@keyframes orbDrift {
  0%,
  100% {
    transform: translate(0, 0); }
  33% {
    transform: translate(30px, -20px); }
  66% {
    transform: translate(-20px, 30px); } }

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px); }
  to {
    opacity: 1;
    transform: translateY(0); } }

@keyframes fadeLeft {
  from {
    opacity: 0;
    transform: translateX(28px); }
  to {
    opacity: 1;
    transform: translateX(0); } }

@keyframes frameGlow {
  0%,
  100% {
    box-shadow: 0 0 0 1px rgba(68, 215, 182, 0.06), 0 0 50px rgba(68, 215, 182, 0.07), 0 30px 80px rgba(0, 0, 0, 0.65); }
  50% {
    box-shadow: 0 0 0 1px rgba(68, 215, 182, 0.16), 0 0 90px rgba(68, 215, 182, 0.14), 0 30px 80px rgba(0, 0, 0, 0.65); } }

@keyframes badgeFloat {
  0%,
  100% {
    transform: translateY(0); }
  50% {
    transform: translateY(-9px); } }

@keyframes sbShimmer {
  from {
    transform: translateX(-100%); }
  to {
    transform: translateX(100%); } }
  .usx-compliance .nav-wrap {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    height: var(--nav-h);
    background: rgba(7, 8, 11, 0.65);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    border-bottom: 1px solid rgba(68, 215, 182, 0.06);
    transition: var(--tr); }
  .usx-compliance .nav-wrap.scrolled {
    background: rgba(7, 8, 11, 0.96);
    border-bottom-color: var(--border);
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.55); }
  .usx-compliance .nav-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 36px;
    height: 100%;
    display: flex;
    align-items: center; }
  .usx-compliance .nav-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0; }
  .usx-compliance .nav-logo img {
    height: 42px;
    width: auto; }
  .usx-compliance .nav-links {
    display: flex;
    align-items: center;
    gap: 26px;
    margin-left: 44px; }
  .usx-compliance .nav-links a {
    font-size: 13px;
    font-weight: 500;
    color: var(--muted);
    letter-spacing: 0.02em;
    transition: color 0.15s; }
  .usx-compliance .nav-links a:hover {
    color: var(--text); }
  .usx-compliance .nav-links a.active {
    color: var(--cida); }
  .usx-compliance .nav-mobile-cta {
    display: none; }
  .usx-compliance .nav-right {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto; }
  .usx-compliance .nav-login {
    font-size: 13px;
    font-weight: 500;
    color: var(--muted);
    padding: 8px 14px;
    transition: color 0.15s; }
  .usx-compliance .nav-login:hover {
    color: var(--text); }
  .usx-compliance .nav-cta {
    font-family: var(--font-d);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 10px 22px;
    border-radius: var(--r);
    background: var(--principle);
    color: #fff;
    transition: all 0.17s;
    white-space: nowrap; }
  .usx-compliance .nav-cta:hover {
    background: #5cbece;
    box-shadow: 0 0 20px rgba(79, 171, 189, 0.35); }
  .usx-compliance .nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    margin-left: 16px; }
  .usx-compliance .nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: var(--tr); }
  .usx-compliance .nav-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px); }
  .usx-compliance .nav-toggle.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0); }
  .usx-compliance .nav-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px); }
  .usx-compliance .hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden; }
  .usx-compliance .hero-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0; }
  .usx-compliance .hero-orb-1 {
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, rgba(68, 215, 182, 0.07) 0%, transparent 60%);
    top: -250px;
    right: -180px;
    animation: orbDrift 12s ease-in-out infinite; }
  .usx-compliance .hero-orb-2 {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(0, 110, 123, 0.09) 0%, transparent 60%);
    bottom: -150px;
    left: -180px;
    animation: orbDrift 14s ease-in-out infinite reverse; }
  .usx-compliance .hero-orb-3 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(79, 171, 189, 0.05) 0%, transparent 60%);
    top: 30%;
    left: 30%;
    animation: orbDrift 10s ease-in-out infinite 2s; }
  .usx-compliance .hero-body {
    position: relative;
    z-index: 1;
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 64px;
    padding-bottom: 60px; }
  .usx-compliance .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-d);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--cida);
    margin-bottom: 32px;
    animation: fadeUp 0.5s ease both 0.05s; }
  .usx-compliance .eyebrow-line {
    width: 28px;
    height: 1px;
    background: var(--cida);
    flex-shrink: 0; }
  .usx-compliance .hero-text h1 {
    font-size: clamp(40px, 5.8vw, 76px);
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 28px;
    animation: fadeUp 0.55s ease both 0.15s; }
  .usx-compliance .h1-white {
    display: block;
    color: var(--text); }
  .usx-compliance .h1-cida {
    display: block;
    color: var(--cida); }
  .usx-compliance .h1-blue {
    display: block;
    color: var(--principle); }
  .usx-compliance .hero-lede {
    font-size: clamp(15px, 1.6vw, 18px);
    color: var(--muted);
    line-height: 1.78;
    max-width: 520px;
    margin-bottom: 40px;
    animation: fadeUp 0.5s ease both 0.25s; }
  .usx-compliance .hero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    animation: fadeUp 0.5s ease both 0.35s; }
  .usx-compliance .hero-visual {
    position: relative;
    animation: fadeLeft 0.65s ease both 0.2s; }
  .usx-compliance .hero-img-frame {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(68, 215, 182, 0.22);
    animation: frameGlow 5s ease-in-out infinite;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.65); }
  .usx-compliance .hero-img-frame img {
    width: 100%;
    display: block; }
  .usx-compliance .compliance-hero-panel {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    animation: frameGlow 5s ease-in-out infinite; }
  .usx-compliance .chp-header {
    padding: 18px 24px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 12px; }
  .usx-compliance .chp-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--cida); }
  .usx-compliance .chp-title {
    font-family: var(--font-d);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--muted); }
  .usx-compliance .chp-body {
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 14px; }
  .usx-compliance .chp-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    background: var(--bg3);
    border-radius: 6px;
    border-left: 2px solid transparent;
    transition: border-color 0.2s; }
  .usx-compliance .chp-row:hover {
    border-left-color: var(--cida); }
  .usx-compliance .chp-fw {
    font-family: var(--font-d);
    font-size: 13px;
    font-weight: 700;
    color: var(--text); }
  .usx-compliance .chp-status {
    display: flex;
    align-items: center;
    gap: 8px; }
  .usx-compliance .chp-bar {
    width: 80px;
    height: 4px;
    background: var(--bg);
    border-radius: 2px;
    overflow: hidden; }
  .usx-compliance .chp-fill {
    height: 100%;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--cida), var(--principle)); }
  .usx-compliance .chp-pct {
    font-family: var(--font-d);
    font-size: 12px;
    font-weight: 700;
    color: var(--cida);
    min-width: 34px;
    text-align: right; }
  .usx-compliance .float-badge {
    position: absolute;
    background: rgba(11, 14, 20, 0.95);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 12px 18px;
    backdrop-filter: blur(14px); }
  .usx-compliance .float-badge-tl {
    bottom: -22px;
    left: -32px;
    animation: badgeFloat 4.5s ease-in-out infinite; }
  .usx-compliance .float-badge-br {
    top: 36px;
    right: -32px;
    animation: badgeFloat 4.5s ease-in-out infinite 2.2s; }
  .usx-compliance .fb-num {
    display: block;
    font-family: var(--font-d);
    font-size: 22px;
    font-weight: 800;
    color: var(--cida);
    line-height: 1;
    margin-bottom: 3px; }
  .usx-compliance .fb-label {
    display: block;
    font-size: 11px;
    color: var(--muted);
    white-space: nowrap; }
  .usx-compliance section {
    padding: 108px 0; }
  .usx-compliance .sec-intro {
    max-width: 660px;
    margin-bottom: 52px; }
  .usx-compliance .sec-intro.center {
    margin-inline: auto;
    text-align: center; }
  .usx-compliance .sec-intro.center p {
    margin-inline: auto; }
  .usx-compliance .sec-intro h2 {
    font-size: clamp(28px, 3.5vw, 48px);
    margin-bottom: 16px; }
  .usx-compliance .sec-intro p {
    font-size: 16px;
    color: var(--muted);
    line-height: 1.75;
    max-width: 580px; }
  .usx-compliance .statement-bar {
    background: var(--cida);
    position: relative;
    z-index: 1;
    overflow: hidden; }
  .usx-compliance .statement-bar::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, transparent 20%, rgba(255, 255, 255, 0.18) 50%, transparent 80%);
    animation: sbShimmer 3.5s ease infinite; }
  .usx-compliance .sb-inner {
    display: flex;
    align-items: stretch;
    position: relative; }
  .usx-compliance .sb-text {
    flex: 1;
    padding: 26px 0;
    font-family: var(--font-d);
    font-size: clamp(16px, 2.1vw, 22px);
    font-weight: 700;
    color: #000;
    line-height: 1.2;
    letter-spacing: -0.01em; }
  .usx-compliance .sb-link {
    background: #000;
    padding: 26px 44px;
    display: flex;
    align-items: center;
    font-family: var(--font-d);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--cida);
    white-space: nowrap;
    transition: background 0.15s;
    flex-shrink: 0; }
  .usx-compliance .sb-link:hover {
    background: #111; }
  .usx-compliance .section-problem {
    background: var(--bg2); }
  .usx-compliance .prob-intro {
    max-width: 720px;
    margin-bottom: 52px; }
  .usx-compliance .prob-intro h2 {
    font-size: clamp(28px, 3.5vw, 48px);
    margin-bottom: 16px; }
  .usx-compliance .prob-intro > p {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.8; }
  .usx-compliance .prob-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px; }
  .usx-compliance .prob-card {
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    border-top: 2px solid transparent;
    transition: border-top-color 0.25s, transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column; }
  .usx-compliance .prob-card:hover {
    border-top-color: var(--cida);
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4); }
  .usx-compliance .prob-header {
    padding: 32px 28px 24px; }
  .usx-compliance .prob-icon {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: rgba(68, 215, 182, 0.1);
    border: 1px solid rgba(68, 215, 182, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 16px; }
  .usx-compliance .prob-header h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--text);
    line-height: 1.3; }
  .usx-compliance .prob-section {
    padding: 20px 28px;
    flex: 1; }
  .usx-compliance .prob-section + .prob-section {
    border-top: 1px solid rgba(255, 255, 255, 0.05); }
  .usx-compliance .prob-section-label {
    font-family: var(--font-d);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin-bottom: 8px;
    display: block; }
  .usx-compliance .prob-problem-label {
    color: var(--alert); }
  .usx-compliance .prob-solution-label {
    color: var(--cida); }
  .usx-compliance .prob-section p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.72; }
  .usx-compliance .prob-solution {
    background: rgba(68, 215, 182, 0.04); }
  .usx-compliance .section-approach {
    background: var(--bg); }
  .usx-compliance .approach-split {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 80px;
    align-items: start; }
  .usx-compliance .approach-left h2 {
    font-size: clamp(28px, 3.2vw, 44px);
    margin-bottom: 16px; }
  .usx-compliance .approach-left p {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.8; }
  .usx-compliance .approach-left p + p {
    margin-top: 16px; }
  .usx-compliance .approach-points {
    display: flex;
    flex-direction: column;
    gap: 0; }
  .usx-compliance .approach-point {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 28px;
    padding: 36px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    align-items: flex-start;
    transition: opacity 0.2s; }
  .usx-compliance .approach-point:last-child {
    border-bottom: none; }
  .usx-compliance .approach-point:hover .ap-num {
    color: rgba(68, 215, 182, 0.4); }
  .usx-compliance .ap-num {
    font-family: var(--font-d);
    font-size: 48px;
    font-weight: 900;
    color: rgba(68, 215, 182, 0.15);
    line-height: 1;
    transition: color 0.2s; }
  .usx-compliance .ap-body h3 {
    font-family: var(--font-d);
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
    padding-top: 6px; }
  .usx-compliance .ap-body p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.75; }
  .usx-compliance .section-frameworks {
    background: var(--bg2); }
  .usx-compliance .fw-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px; }
  .usx-compliance .fw-card {
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 32px 26px;
    border-top: 2px solid transparent;
    transition: background 0.2s, border-top-color 0.25s, transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
    gap: 0; }
  .usx-compliance .fw-card:hover {
    background: var(--surface);
    border-top-color: var(--cida);
    transform: translateY(-4px);
    box-shadow: 0 16px 44px rgba(0, 0, 0, 0.4); }
  .usx-compliance .fw-tag {
    font-family: var(--font-d);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--cida);
    margin-bottom: 12px;
    display: block; }
  .usx-compliance .fw-card h3 {
    font-family: var(--font-d);
    font-size: 15px;
    font-weight: 800;
    color: var(--text);
    line-height: 1.3;
    margin-bottom: 6px; }
  .usx-compliance .fw-subhead {
    font-size: 11px;
    color: var(--principle);
    font-weight: 600;
    letter-spacing: 0.02em;
    margin-bottom: 14px;
    line-height: 1.4; }
  .usx-compliance .fw-card > p {
    font-size: 12.5px;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 18px;
    flex: 1; }
  .usx-compliance .fw-areas {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 18px; }
  .usx-compliance .fw-areas li {
    display: flex;
    align-items: flex-start;
    gap: 7px;
    font-size: 11.5px;
    color: var(--muted);
    line-height: 1.4; }
  .usx-compliance .fw-areas li::before {
    content: "→";
    color: var(--cida);
    font-weight: 700;
    flex-shrink: 0;
    font-size: 10px;
    margin-top: 1px; }
  .usx-compliance .fw-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-d);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--cida);
    transition: gap 0.15s;
    margin-top: auto; }
  .usx-compliance .fw-cta:hover {
    gap: 10px; }
  .usx-compliance .fw-card-wide {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 36px;
    align-items: center;
    padding: 36px 36px; }
  .usx-compliance .fw-card-wide .fw-areas {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px 20px; }
  .usx-compliance .section-tiers {
    background: var(--bg); }
  .usx-compliance .tiers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start; }
  .usx-compliance .tier-card {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 44px 36px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s; }
  .usx-compliance .tier-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4); }
  .usx-compliance .tier-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px; }
  .usx-compliance .tier-starter::before {
    background: var(--principle); }
  .usx-compliance .tier-ready::before {
    background: var(--cida); }
  .usx-compliance .tier-assured::before {
    background: linear-gradient(90deg, var(--cida), var(--principle)); }
  .usx-compliance .tier-assured {
    background: var(--surface);
    border-color: rgba(68, 215, 182, 0.25); }
  .usx-compliance .tier-assured:hover {
    border-color: rgba(68, 215, 182, 0.45); }
  .usx-compliance .tier-tag {
    font-family: var(--font-d);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    display: inline-block;
    padding: 4px 12px;
    border-radius: 3px;
    margin-bottom: 18px;
    align-self: flex-start; }
  .usx-compliance .tier-starter .tier-tag {
    background: rgba(79, 171, 189, 0.15);
    color: var(--principle); }
  .usx-compliance .tier-ready .tier-tag {
    background: rgba(68, 215, 182, 0.15);
    color: var(--cida); }
  .usx-compliance .tier-assured .tier-tag {
    background: rgba(68, 215, 182, 0.15);
    color: var(--cida); }
  .usx-compliance .tier-card h3 {
    font-size: clamp(20px, 2.2vw, 26px);
    margin-bottom: 10px; }
  .usx-compliance .tier-position {
    font-size: 13.5px;
    color: var(--muted);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06); }
  .usx-compliance .tier-deliverables-label {
    font-family: var(--font-d);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
    display: block;
    margin-bottom: 14px; }
  .usx-compliance .tier-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
    flex: 1; }
  .usx-compliance .tier-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: var(--muted);
    line-height: 1.5; }
  .usx-compliance .tier-list li::before {
    content: "✓";
    color: var(--cida);
    font-weight: 700;
    flex-shrink: 0; }
  .usx-compliance .tier-best-for {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.6;
    padding: 14px 16px;
    margin-top: auto;
    background: rgba(68, 215, 182, 0.05);
    border-left: 2px solid rgba(68, 215, 182, 0.3);
    border-radius: 0 4px 4px 0; }
  .usx-compliance .tier-best-for strong {
    color: var(--cida);
    font-weight: 600; }
  .usx-compliance .section-continuous {
    background: var(--bg2); }
  .usx-compliance .continuous-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start; }
  .usx-compliance .cont-left h2 {
    font-size: clamp(28px, 3.2vw, 44px);
    margin-bottom: 16px; }
  .usx-compliance .cont-left p {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.8; }
  .usx-compliance .cont-left p + p {
    margin-top: 16px; }
  .usx-compliance .cont-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px; }
  .usx-compliance .cont-point {
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 28px 22px;
    border-top: 2px solid transparent;
    transition: border-top-color 0.25s, transform 0.2s; }
  .usx-compliance .cont-point:hover {
    border-top-color: var(--cida);
    transform: translateY(-3px); }
  .usx-compliance .cont-point-num {
    font-family: var(--font-d);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: rgba(68, 215, 182, 0.5);
    display: block;
    margin-bottom: 10px; }
  .usx-compliance .cont-point h4 {
    font-family: var(--font-d);
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
    line-height: 1.3; }
  .usx-compliance .cont-point p {
    font-size: 12.5px;
    color: var(--muted);
    line-height: 1.72; }
  .usx-compliance .fw-strip {
    background: var(--bg3);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 28px 0;
    overflow: hidden; }
  .usx-compliance .fw-strip-inner {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0; }
  .usx-compliance .fw-strip-label {
    font-family: var(--font-d);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
    padding-right: 28px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    margin-right: 0;
    flex-shrink: 0; }
  .usx-compliance .fw-strip-items {
    display: flex;
    flex-wrap: wrap;
    gap: 0; }
  .usx-compliance .fw-strip-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 10px 24px;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    transition: background 0.15s; }
  .usx-compliance .fw-strip-item:hover {
    background: rgba(68, 215, 182, 0.04); }
  .usx-compliance .fw-strip-name {
    font-family: var(--font-d);
    font-size: 13px;
    font-weight: 700;
    color: var(--text); }
  .usx-compliance .fw-strip-sub {
    font-size: 10px;
    color: var(--muted); }
  .usx-compliance .section-demo {
    background: var(--bg3);
    padding: 0; }
  .usx-compliance .demo-frame {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden; }
  .usx-compliance .demo-left {
    background: var(--deep);
    padding: 80px 64px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    overflow: hidden; }
  .usx-compliance .demo-left::before {
    content: "";
    position: absolute;
    top: -80px;
    right: -80px;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(68, 215, 182, 0.18), transparent 65%);
    pointer-events: none; }
  .usx-compliance .demo-headline {
    font-size: clamp(28px, 3.5vw, 48px);
    color: #000;
    line-height: 1.05; }
  .usx-compliance .demo-sub {
    font-size: 15px;
    color: rgba(0, 0, 0, 0.65);
    line-height: 1.75; }
  .usx-compliance .demo-sub strong {
    color: #000;
    font-weight: 700; }
  .usx-compliance .demo-sig {
    font-family: var(--font-d);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.4); }
  .usx-compliance .demo-right {
    padding: 72px 64px;
    display: flex;
    flex-direction: column;
    justify-content: center; }
  .usx-compliance .demo-right-label {
    display: block;
    font-family: var(--font-d);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--cida);
    margin-bottom: 14px; }
  .usx-compliance .demo-right-h {
    font-size: clamp(22px, 2.8vw, 36px);
    margin-bottom: 10px; }
  .usx-compliance .demo-right-sub {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 28px; }
  .usx-compliance .demo-form {
    display: flex;
    flex-direction: column;
    gap: 12px; }
  .usx-compliance .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px; }
  .usx-compliance .demo-form input {
    width: 100%;
    padding: 13px 16px;
    background: var(--faint);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--r);
    font-size: 14px;
    color: var(--text);
    font-family: var(--font-b);
    transition: border-color 0.2s, box-shadow 0.2s; }
  .usx-compliance .demo-form input::placeholder {
    color: rgba(155, 184, 204, 0.45); }
  .usx-compliance .demo-form input:focus {
    outline: none;
    border-color: var(--cida);
    background: rgba(68, 215, 182, 0.04);
    box-shadow: 0 0 0 3px rgba(68, 215, 182, 0.1); }
  .usx-compliance .demo-form .btn {
    margin-top: 4px;
    font-size: 15px;
    padding: 15px 28px; }
  .usx-compliance .site-footer {
    background: #000;
    border-top: 1px solid rgba(68, 215, 182, 0.07);
    padding: 64px 0 32px; }
  .usx-compliance .ft-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 56px;
    margin-bottom: 48px; }
  .usx-compliance .ft-logo {
    height: 44px;
    width: auto;
    margin-bottom: 14px; }
  .usx-compliance .ft-tagline {
    font-family: var(--font-d);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--cida);
    margin-bottom: 10px; }
  .usx-compliance .ft-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.28);
    line-height: 1.75;
    max-width: 260px; }
  .usx-compliance .ft-addr {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.18);
    line-height: 1.75;
    margin-top: 14px; }
  .usx-compliance .ft-col h4 {
    font-family: var(--font-d);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.28);
    margin-bottom: 18px; }
  .usx-compliance .ft-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px; }
  .usx-compliance .ft-col a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.38);
    transition: color 0.15s; }
  .usx-compliance .ft-col a:hover {
    color: var(--cida); }
  .usx-compliance .ft-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px; }
  .usx-compliance .ft-bottom p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.18); }
  .usx-compliance .ft-awards {
    display: flex;
    gap: 12px;
    align-items: center; }
  .usx-compliance .ft-awards img {
    height: 56px;
    width: auto;
    object-fit: contain;
    opacity: 0.9;
    filter: none;
    transition: opacity 0.2s; }
  .usx-compliance .ft-awards img:hover {
    opacity: 1; }
  @media (max-width: 1024px) {
    .usx-compliance :root {
      --nav-h: 64px; }
    .usx-compliance section {
      padding: 88px 0; }
    .usx-compliance .container {
      padding: 0 28px; }
    .usx-compliance .nav-links {
      display: none; }
    .usx-compliance .nav-right {
      display: none; }
    .usx-compliance .nav-toggle {
      display: flex;
      margin-left: auto; }
    .usx-compliance .hero-body {
      grid-template-columns: 1fr;
      gap: 48px;
      padding-top: calc(var(--nav-h) + 64px);
      padding-bottom: 40px;
      text-align: center; }
    .usx-compliance .hero-visual {
      order: -1; }
    .usx-compliance .hero-ctas {
      justify-content: center; }
    .usx-compliance .hero-lede {
      max-width: 100%;
      margin-inline: auto; }
    .usx-compliance .float-badge {
      display: none; }
    .usx-compliance .prob-grid {
      grid-template-columns: 1fr; }
    .usx-compliance .approach-split {
      grid-template-columns: 1fr;
      gap: 48px; }
    .usx-compliance .fw-grid {
      grid-template-columns: repeat(2, 1fr); }
    .usx-compliance .fw-card-wide {
      grid-column: 1;
      grid-template-columns: 1fr; }
    .usx-compliance .fw-card-wide .fw-areas {
      grid-template-columns: 1fr; }
    .usx-compliance .tiers-grid {
      grid-template-columns: 1fr; }
    .usx-compliance .continuous-split {
      grid-template-columns: 1fr;
      gap: 48px; }
    .usx-compliance .demo-frame {
      grid-template-columns: 1fr; }
    .usx-compliance .demo-left {
      padding: 56px 40px; }
    .usx-compliance .demo-right {
      padding: 56px 40px; }
    .usx-compliance .ft-top {
      grid-template-columns: 1fr 1fr;
      gap: 40px; } }
  .usx-compliance .nav-links.open {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(7, 8, 11, 0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 36px 36px;
    gap: 0;
    z-index: 9999;
    overflow-y: auto; }
  .usx-compliance .nav-links.open li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06); }
  .usx-compliance .nav-links.open a {
    display: block;
    padding: 18px 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text);
    letter-spacing: -0.01em; }
  .usx-compliance .nav-links.open a:hover {
    color: var(--cida); }
  .usx-compliance .nav-links.open .nav-mobile-cta {
    display: block;
    border-bottom: none;
    padding-top: 28px; }
  .usx-compliance .nav-links.open .nav-mobile-cta .btn {
    width: 100%;
    justify-content: center;
    font-size: 15px;
    padding: 15px 28px; }
  @media (max-width: 640px) {
    .usx-compliance .container {
      padding: 0 20px; }
    .usx-compliance section {
      padding: 72px 0; }
    .usx-compliance .hero-text h1 {
      font-size: clamp(36px, 10vw, 54px); }
    .usx-compliance .hero-ctas {
      flex-direction: column;
      align-items: center; }
    .usx-compliance .hero-ctas .btn {
      width: 100%;
      justify-content: center; }
    .usx-compliance .fw-grid {
      grid-template-columns: 1fr; }
    .usx-compliance .cont-points {
      grid-template-columns: 1fr; }
    .usx-compliance .form-row {
      grid-template-columns: 1fr; }
    .usx-compliance .ft-top {
      grid-template-columns: 1fr; }
    .usx-compliance .demo-left {
      padding: 44px 24px; }
    .usx-compliance .demo-right {
      padding: 44px 24px; }
    .usx-compliance .sb-link {
      display: none; }
    .usx-compliance .fw-strip-inner {
      flex-direction: column;
      align-items: flex-start;
      gap: 16px; }
    .usx-compliance .fw-strip-items {
      flex-direction: column;
      gap: 8px; }
    .usx-compliance .fw-strip-item {
      border-right: none;
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
      padding: 8px 0; } }
  @media (max-width: 400px) {
    .usx-compliance :root {
      --nav-h: 60px; }
    .usx-compliance .nav-logo img {
      height: 34px; } }

.usx-partner {
  /* ================================================================
   USX CYBER — PARTNER PROGRAM PAGE
   Dynamic Defense™ | Channel & Partner Program
   ================================================================ */
  /* ── Design Tokens ─────────────────────────────────────────────── */
  /* ── Reset ──────────────────────────────────────────────────────── */
  /* ── Container ──────────────────────────────────────────────────── */
  /* ── Headings ───────────────────────────────────────────────────── */
  /* ── Eyebrow ─────────────────────────────────────────────────────── */
  /* ── Buttons ─────────────────────────────────────────────────────── */
  /* ── Scroll-reveal ───────────────────────────────────────────────── */
  /* ================================================================
   ANIMATIONS
   ================================================================ */
  /* ================================================================
   NAVIGATION
   ================================================================ */
  /* ================================================================
   HERO
   ================================================================ */
  /* Partner hero visual — path selector panel */
  /* Float badges */
  /* ================================================================
   SECTION — SHARED
   ================================================================ */
  /* ================================================================
   STATEMENT BAR
   ================================================================ */
  /* ================================================================
   WHO THIS IS FOR
   ================================================================ */
  /* ================================================================
   TWO PARTNERSHIP PATHS
   ================================================================ */
  /* ================================================================
   WHY PARTNER
   ================================================================ */
  /* ================================================================
   HOW IT WORKS — dual track
   ================================================================ */
  /* ================================================================
   PREFERRED PARTNERS
   ================================================================ */
  /* ================================================================
   SOCIAL PROOF
   ================================================================ */
  /* ================================================================
   APPLICATION / CONTACT CTA
   ================================================================ */
  /* ================================================================
   FOOTER
   ================================================================ */
  /* ================================================================
   RESPONSIVE — TABLET  (≤ 1024px)
   ================================================================ */
  /* Mobile nav overlay */
  /* ================================================================
   RESPONSIVE — MOBILE  (≤ 640px)
   ================================================================ */ }
  .usx-partner :root {
    --cida: #44d7b6;
    --principle: #4fabbd;
    --deep: #006e7b;
    --alert: #f1754a;
    --bg: #07080b;
    --bg2: #0c0f14;
    --bg3: #111620;
    --surface: #161d2a;
    --text: #eef2f8;
    --muted: #9bb8cc;
    --faint: rgba(255, 255, 255, 0.04);
    --border: rgba(68, 215, 182, 0.13);
    --font-d: "Outfit", sans-serif;
    --font-b: "DM Sans", sans-serif;
    --max-w: 1200px;
    --nav-h: 68px;
    --r: 6px;
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --tr: all 0.2s var(--ease); }
  .usx-partner *,
  .usx-partner *::before,
  .usx-partner *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0; }
  .usx-partner html {
    scroll-behavior: smooth; }
  .usx-partner body {
    font-family: var(--font-b);
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    background-image: radial-gradient(rgba(68, 215, 182, 0.05) 1px, transparent 1px);
    background-size: 32px 32px; }
  .usx-partner img {
    max-width: 100%;
    height: auto;
    display: block; }
  .usx-partner a {
    text-decoration: none;
    color: inherit; }
  .usx-partner ul {
    list-style: none; }
  .usx-partner strong {
    color: var(--text);
    font-weight: 600; }
  .usx-partner .container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 36px; }
  .usx-partner h1,
  .usx-partner h2,
  .usx-partner h3,
  .usx-partner h4 {
    font-family: var(--font-d);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.02em; }
  .usx-partner .eyebrow {
    display: inline-block;
    font-family: var(--font-d);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--cida);
    margin-bottom: 20px; }
  .usx-partner .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-d);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 14px 30px;
    border-radius: var(--r);
    transition: var(--tr);
    cursor: pointer;
    border: none; }
  .usx-partner .btn-cta {
    background: var(--principle);
    color: #fff;
    font-size: 16px;
    padding: 16px 36px; }
  .usx-partner .btn-cta:hover {
    background: #5cbece;
    box-shadow: 0 0 32px rgba(79, 171, 189, 0.45);
    transform: translateY(-2px); }
  .usx-partner .btn-cida {
    background: var(--cida);
    color: #000;
    font-size: 16px;
    padding: 16px 36px; }
  .usx-partner .btn-cida:hover {
    background: #5ce8c7;
    box-shadow: 0 0 28px rgba(68, 215, 182, 0.35);
    transform: translateY(-2px); }
  .usx-partner .btn-outline {
    background: transparent;
    color: var(--text);
    border: 1px solid rgba(255, 255, 255, 0.18);
    font-size: 16px;
    padding: 16px 36px; }
  .usx-partner .btn-outline:hover {
    border-color: var(--cida);
    color: var(--cida);
    background: rgba(68, 215, 182, 0.04); }
  .usx-partner .btn-outline-sm {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-d);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 10px 20px;
    border-radius: var(--r);
    background: transparent;
    color: var(--text);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: var(--tr);
    cursor: pointer; }
  .usx-partner .btn-outline-sm:hover {
    border-color: var(--cida);
    color: var(--cida); }
  .usx-partner .btn-block {
    width: 100%;
    justify-content: center; }
  .usx-partner .btn-teal-sm {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: var(--font-d);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--cida);
    transition: gap 0.15s; }
  .usx-partner .btn-teal-sm:hover {
    gap: 12px; }
  .usx-partner [data-reveal] {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.65s var(--ease), transform 0.65s var(--ease); }
  .usx-partner [data-reveal-right] {
    opacity: 0;
    transform: translateX(22px);
    transition: opacity 0.65s var(--ease) 0.12s, transform 0.65s var(--ease) 0.12s; }
  .usx-partner .revealed {
    opacity: 1 !important;
    transform: translate(0, 0) !important; }
  .usx-partner [data-reveal-stagger] > * {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.55s var(--ease), transform 0.55s var(--ease); }
  .usx-partner [data-reveal-stagger].revealed > *:nth-child(1) {
    transition-delay: 0s;
    opacity: 1;
    transform: none; }
  .usx-partner [data-reveal-stagger].revealed > *:nth-child(2) {
    transition-delay: 0.1s;
    opacity: 1;
    transform: none; }
  .usx-partner [data-reveal-stagger].revealed > *:nth-child(3) {
    transition-delay: 0.2s;
    opacity: 1;
    transform: none; }
  .usx-partner [data-reveal-stagger].revealed > *:nth-child(4) {
    transition-delay: 0.3s;
    opacity: 1;
    transform: none; }
  .usx-partner [data-reveal-stagger].revealed > *:nth-child(5) {
    transition-delay: 0.4s;
    opacity: 1;
    transform: none; }
  .usx-partner [data-reveal-stagger].revealed > *:nth-child(6) {
    transition-delay: 0.5s;
    opacity: 1;
    transform: none; }

@keyframes orbDrift {
  0%,
  100% {
    transform: translate(0, 0); }
  33% {
    transform: translate(30px, -20px); }
  66% {
    transform: translate(-20px, 30px); } }

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px); }
  to {
    opacity: 1;
    transform: translateY(0); } }

@keyframes fadeLeft {
  from {
    opacity: 0;
    transform: translateX(28px); }
  to {
    opacity: 1;
    transform: translateX(0); } }

@keyframes badgeFloat {
  0%,
  100% {
    transform: translateY(0); }
  50% {
    transform: translateY(-9px); } }

@keyframes sbShimmer {
  from {
    transform: translateX(-100%); }
  to {
    transform: translateX(100%); } }

@keyframes frameGlow {
  0%,
  100% {
    box-shadow: 0 0 0 1px rgba(68, 215, 182, 0.06), 0 0 50px rgba(68, 215, 182, 0.07), 0 30px 80px rgba(0, 0, 0, 0.65); }
  50% {
    box-shadow: 0 0 0 1px rgba(68, 215, 182, 0.16), 0 0 90px rgba(68, 215, 182, 0.14), 0 30px 80px rgba(0, 0, 0, 0.65); } }
  .usx-partner .nav-wrap {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    height: var(--nav-h);
    background: rgba(7, 8, 11, 0.65);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    border-bottom: 1px solid rgba(68, 215, 182, 0.06);
    transition: var(--tr); }
  .usx-partner .nav-wrap.scrolled {
    background: rgba(7, 8, 11, 0.96);
    border-bottom-color: var(--border);
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.55); }
  .usx-partner .nav-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 36px;
    height: 100%;
    display: flex;
    align-items: center; }
  .usx-partner .nav-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0; }
  .usx-partner .nav-logo img {
    height: 42px;
    width: auto; }
  .usx-partner .nav-links {
    display: flex;
    align-items: center;
    gap: 26px;
    margin-left: 44px; }
  .usx-partner .nav-links a {
    font-size: 13px;
    font-weight: 500;
    color: var(--muted);
    letter-spacing: 0.02em;
    transition: color 0.15s; }
  .usx-partner .nav-links a:hover {
    color: var(--text); }
  .usx-partner .nav-links a.active {
    color: var(--cida); }
  .usx-partner .nav-mobile-cta {
    display: none; }
  .usx-partner .nav-right {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto; }
  .usx-partner .nav-login {
    font-size: 13px;
    font-weight: 500;
    color: var(--muted);
    padding: 8px 14px;
    transition: color 0.15s; }
  .usx-partner .nav-login:hover {
    color: var(--text); }
  .usx-partner .nav-cta {
    font-family: var(--font-d);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 10px 22px;
    border-radius: var(--r);
    background: var(--principle);
    color: #fff;
    transition: all 0.17s;
    white-space: nowrap; }
  .usx-partner .nav-cta:hover {
    background: #5cbece;
    box-shadow: 0 0 20px rgba(79, 171, 189, 0.35); }
  .usx-partner .nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    margin-left: 16px; }
  .usx-partner .nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: var(--tr); }
  .usx-partner .nav-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px); }
  .usx-partner .nav-toggle.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0); }
  .usx-partner .nav-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px); }
  .usx-partner .hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden; }
  .usx-partner .hero-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0; }
  .usx-partner .hero-orb-1 {
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, rgba(68, 215, 182, 0.07) 0%, transparent 60%);
    top: -250px;
    right: -180px;
    animation: orbDrift 12s ease-in-out infinite; }
  .usx-partner .hero-orb-2 {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(0, 110, 123, 0.09) 0%, transparent 60%);
    bottom: -150px;
    left: -180px;
    animation: orbDrift 14s ease-in-out infinite reverse; }
  .usx-partner .hero-orb-3 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(79, 171, 189, 0.05) 0%, transparent 60%);
    top: 30%;
    left: 30%;
    animation: orbDrift 10s ease-in-out infinite 2s; }
  .usx-partner .hero-body {
    position: relative;
    z-index: 1;
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 64px;
    padding-bottom: 60px; }
  .usx-partner .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-d);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--cida);
    margin-bottom: 32px;
    animation: fadeUp 0.5s ease both 0.05s; }
  .usx-partner .eyebrow-line {
    width: 28px;
    height: 1px;
    background: var(--cida);
    flex-shrink: 0; }
  .usx-partner .hero-text h1 {
    font-size: clamp(38px, 5.2vw, 70px);
    letter-spacing: -0.03em;
    line-height: 1.02;
    margin-bottom: 28px;
    animation: fadeUp 0.55s ease both 0.15s; }
  .usx-partner .h1-white {
    display: block;
    color: var(--text); }
  .usx-partner .h1-cida {
    display: block;
    color: var(--cida); }
  .usx-partner .h1-blue {
    display: block;
    color: var(--principle); }
  .usx-partner .hero-lede {
    font-size: clamp(15px, 1.6vw, 18px);
    color: var(--muted);
    line-height: 1.78;
    max-width: 520px;
    margin-bottom: 40px;
    animation: fadeUp 0.5s ease both 0.25s; }
  .usx-partner .hero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    animation: fadeUp 0.5s ease both 0.35s; }
  .usx-partner .hero-visual {
    position: relative;
    animation: fadeLeft 0.65s ease both 0.2s; }
  .usx-partner .partner-hero-panel {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    animation: frameGlow 5s ease-in-out infinite;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6); }
  .usx-partner .php-header {
    padding: 18px 24px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 12px; }
  .usx-partner .php-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--cida); }
  .usx-partner .php-title {
    font-family: var(--font-d);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--muted); }
  .usx-partner .php-body {
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 16px; }
  .usx-partner .php-path {
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 20px 22px;
    border-left: 3px solid transparent;
    transition: border-left-color 0.2s; }
  .usx-partner .php-path-reseller {
    border-left-color: var(--cida); }
  .usx-partner .php-path-referral {
    border-left-color: var(--principle); }
  .usx-partner .php-path-label {
    font-family: var(--font-d);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 6px;
    display: block; }
  .usx-partner .php-path-reseller .php-path-label {
    color: var(--cida); }
  .usx-partner .php-path-referral .php-path-label {
    color: var(--principle); }
  .usx-partner .php-path-name {
    font-family: var(--font-d);
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 4px; }
  .usx-partner .php-path-desc {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.5; }
  .usx-partner .php-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-d);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--muted);
    text-transform: uppercase; }
  .usx-partner .php-divider::before,
  .usx-partner .php-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.07); }
  .usx-partner .float-badge {
    position: absolute;
    background: rgba(11, 14, 20, 0.95);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 12px 18px;
    backdrop-filter: blur(14px); }
  .usx-partner .float-badge-tl {
    bottom: -22px;
    left: -32px;
    animation: badgeFloat 4.5s ease-in-out infinite; }
  .usx-partner .float-badge-br {
    top: 36px;
    right: -32px;
    animation: badgeFloat 4.5s ease-in-out infinite 2.2s; }
  .usx-partner .fb-num {
    display: block;
    font-family: var(--font-d);
    font-size: 22px;
    font-weight: 800;
    color: var(--cida);
    line-height: 1;
    margin-bottom: 3px; }
  .usx-partner .fb-label {
    display: block;
    font-size: 11px;
    color: var(--muted);
    white-space: nowrap; }
  .usx-partner section {
    padding: 108px 0; }
  .usx-partner .sec-intro {
    max-width: 680px;
    margin-bottom: 56px; }
  .usx-partner .sec-intro.center {
    margin-inline: auto;
    text-align: center; }
  .usx-partner .sec-intro h2 {
    font-size: clamp(28px, 3.5vw, 50px);
    margin-bottom: 16px; }
  .usx-partner .sec-intro p {
    font-size: 16px;
    color: var(--muted);
    line-height: 1.75; }
  .usx-partner .statement-bar {
    background: var(--cida);
    position: relative;
    z-index: 1;
    overflow: hidden; }
  .usx-partner .statement-bar::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, transparent 20%, rgba(255, 255, 255, 0.18) 50%, transparent 80%);
    animation: sbShimmer 3.5s ease infinite; }
  .usx-partner .sb-inner {
    display: flex;
    align-items: stretch;
    position: relative; }
  .usx-partner .sb-text {
    flex: 1;
    padding: 26px 0;
    font-family: var(--font-d);
    font-size: clamp(16px, 2.1vw, 22px);
    font-weight: 700;
    color: #000;
    line-height: 1.2;
    letter-spacing: -0.01em; }
  .usx-partner .sb-link {
    background: #000;
    padding: 26px 44px;
    display: flex;
    align-items: center;
    font-family: var(--font-d);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--cida);
    white-space: nowrap;
    transition: background 0.15s;
    flex-shrink: 0; }
  .usx-partner .sb-link:hover {
    background: #111; }
  .usx-partner .section-for {
    background: var(--bg2); }
  .usx-partner .for-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px; }
  .usx-partner .for-card {
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 40px 32px;
    border-top: 2px solid transparent;
    transition: background 0.2s, border-top-color 0.25s, transform 0.2s, box-shadow 0.2s; }
  .usx-partner .for-card:hover {
    background: var(--surface);
    border-top-color: var(--cida);
    transform: translateY(-4px);
    box-shadow: 0 16px 44px rgba(0, 0, 0, 0.4); }
  .usx-partner .for-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: rgba(68, 215, 182, 0.1);
    border: 1px solid rgba(68, 215, 182, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 20px; }
  .usx-partner .for-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3; }
  .usx-partner .for-card p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.75; }
  .usx-partner .section-paths {
    background: var(--bg); }
  .usx-partner .paths-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px; }
  .usx-partner .path-card {
    border-radius: 10px;
    padding: 52px 44px;
    border: 1px solid;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s; }
  .usx-partner .path-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 28px 64px rgba(0, 0, 0, 0.5); }
  .usx-partner .path-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px; }
  .usx-partner .path-reseller {
    background: var(--bg2);
    border-color: rgba(68, 215, 182, 0.2); }
  .usx-partner .path-reseller::before {
    background: var(--cida); }
  .usx-partner .path-reseller:hover {
    border-color: rgba(68, 215, 182, 0.4); }
  .usx-partner .path-referral {
    background: var(--surface);
    border-color: rgba(79, 171, 189, 0.2); }
  .usx-partner .path-referral::before {
    background: var(--principle); }
  .usx-partner .path-referral:hover {
    border-color: rgba(79, 171, 189, 0.4); }
  .usx-partner .path-label {
    font-family: var(--font-d);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin-bottom: 6px;
    display: block; }
  .usx-partner .path-reseller .path-label {
    color: var(--cida); }
  .usx-partner .path-referral .path-label {
    color: var(--principle); }
  .usx-partner .path-card h3 {
    font-size: clamp(22px, 2.4vw, 30px);
    margin-bottom: 6px; }
  .usx-partner .path-tagline {
    font-family: var(--font-d);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
    opacity: 0.6; }
  .usx-partner .path-reseller .path-tagline {
    color: var(--cida); }
  .usx-partner .path-referral .path-tagline {
    color: var(--principle); }
  .usx-partner .path-card > p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.78;
    margin-bottom: 28px; }
  .usx-partner .path-list-label {
    font-family: var(--font-d);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
    display: block;
    margin-bottom: 14px; }
  .usx-partner .path-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 32px; }
  .usx-partner .path-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: var(--muted);
    line-height: 1.55; }
  .usx-partner .path-check {
    flex-shrink: 0;
    font-weight: 700; }
  .usx-partner .path-reseller .path-check {
    color: var(--cida); }
  .usx-partner .path-referral .path-check {
    color: var(--principle); }
  .usx-partner .path-best-for {
    font-size: 12.5px;
    color: var(--muted);
    line-height: 1.65;
    padding: 16px 18px;
    margin-bottom: 28px;
    background: rgba(68, 215, 182, 0.05);
    border-left: 2px solid rgba(68, 215, 182, 0.25);
    border-radius: 0 4px 4px 0; }
  .usx-partner .path-referral .path-best-for {
    background: rgba(79, 171, 189, 0.05);
    border-left-color: rgba(79, 171, 189, 0.25); }
  .usx-partner .path-best-for strong {
    color: var(--cida);
    font-weight: 600; }
  .usx-partner .path-referral .path-best-for strong {
    color: var(--principle); }
  .usx-partner .path-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-d);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: gap 0.15s; }
  .usx-partner .path-reseller .path-cta {
    color: var(--cida); }
  .usx-partner .path-referral .path-cta {
    color: var(--principle); }
  .usx-partner .path-cta:hover {
    gap: 14px; }
  .usx-partner .section-why {
    background: var(--bg2); }
  .usx-partner .why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px; }
  .usx-partner .why-card {
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 40px 36px;
    position: relative;
    overflow: hidden;
    border-top: 2px solid transparent;
    transition: background 0.2s, border-top-color 0.25s, transform 0.2s; }
  .usx-partner .why-card:hover {
    background: var(--surface);
    border-top-color: var(--cida);
    transform: translateY(-4px); }
  .usx-partner .why-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: rgba(68, 215, 182, 0.1);
    border: 1px solid rgba(68, 215, 182, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 20px; }
  .usx-partner .why-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px; }
  .usx-partner .why-card p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.72; }
  .usx-partner .section-how {
    background: var(--bg); }
  .usx-partner .how-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px; }
  .usx-partner .how-track-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-d);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 3px;
    margin-bottom: 28px; }
  .usx-partner .how-track-reseller {
    background: rgba(68, 215, 182, 0.12);
    color: var(--cida); }
  .usx-partner .how-track-referral {
    background: rgba(79, 171, 189, 0.12);
    color: var(--principle); }
  .usx-partner .how-steps {
    display: flex;
    flex-direction: column;
    gap: 0; }
  .usx-partner .how-step {
    display: flex;
    align-items: flex-start;
    gap: 22px;
    padding: 28px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative; }
  .usx-partner .how-step:last-child {
    border-bottom: none; }
  .usx-partner .how-step-num {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-d);
    font-size: 14px;
    font-weight: 800;
    transition: background 0.2s, border-color 0.2s; }
  .usx-partner .how-track-col-reseller .how-step-num {
    border: 1px solid rgba(68, 215, 182, 0.3);
    color: var(--cida);
    background: rgba(68, 215, 182, 0.06); }
  .usx-partner .how-track-col-reseller .how-step:hover .how-step-num {
    background: rgba(68, 215, 182, 0.14);
    border-color: var(--cida); }
  .usx-partner .how-track-col-referral .how-step-num {
    border: 1px solid rgba(79, 171, 189, 0.3);
    color: var(--principle);
    background: rgba(79, 171, 189, 0.06); }
  .usx-partner .how-track-col-referral .how-step:hover .how-step-num {
    background: rgba(79, 171, 189, 0.14);
    border-color: var(--principle); }
  .usx-partner .how-step-body {
    flex: 1;
    padding-top: 6px; }
  .usx-partner .how-step-body h4 {
    font-family: var(--font-d);
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px; }
  .usx-partner .how-step-body p {
    font-size: 13.5px;
    color: var(--muted);
    line-height: 1.72; }
  .usx-partner .how-step-connector {
    position: absolute;
    left: 21px;
    top: 72px;
    width: 2px;
    height: calc(100% - 44px);
    pointer-events: none; }
  .usx-partner .how-track-col-reseller .how-step-connector {
    background: linear-gradient(to bottom, rgba(68, 215, 182, 0.25), transparent); }
  .usx-partner .how-track-col-referral .how-step-connector {
    background: linear-gradient(to bottom, rgba(79, 171, 189, 0.25), transparent); }
  .usx-partner .how-step:last-child .how-step-connector {
    display: none; }
  .usx-partner .section-preferred {
    background: var(--bg2); }
  .usx-partner .preferred-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 40px; }
  .usx-partner .preferred-card {
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 44px 36px;
    position: relative;
    overflow: hidden;
    border-top: 2px solid var(--cida);
    transition: transform 0.2s, box-shadow 0.2s; }
  .usx-partner .preferred-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4); }
  .usx-partner .preferred-card-label {
    font-family: var(--font-d);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--cida);
    margin-bottom: 14px;
    display: block; }
  .usx-partner .preferred-card h3 {
    font-size: clamp(18px, 2vw, 24px);
    margin-bottom: 14px; }
  .usx-partner .preferred-card p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.78;
    margin-bottom: 28px; }
  .usx-partner .preferred-callout {
    background: rgba(68, 215, 182, 0.05);
    border: 1px solid rgba(68, 215, 182, 0.15);
    border-radius: 8px;
    padding: 20px 24px;
    font-size: 14px;
    color: var(--muted);
    line-height: 1.7;
    font-style: italic; }
  .usx-partner .preferred-callout strong {
    color: var(--cida);
    font-weight: 600;
    font-style: normal; }
  .usx-partner .section-proof {
    background: var(--bg); }
  .usx-partner .proof-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center; }
  .usx-partner .proof-quote-wrap {
    position: relative;
    padding: 48px 44px;
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 10px; }
  .usx-partner .proof-quote-wrap::before {
    content: '"';
    position: absolute;
    top: -12px;
    left: 28px;
    font-family: var(--font-d);
    font-size: 120px;
    font-weight: 900;
    color: rgba(68, 215, 182, 0.1);
    line-height: 1;
    pointer-events: none; }
  .usx-partner .proof-quote-mark {
    display: none; }
  .usx-partner .proof-quote {
    font-family: var(--font-d);
    font-size: clamp(17px, 1.8vw, 22px);
    font-weight: 600;
    color: var(--text);
    line-height: 1.5;
    margin-bottom: 24px;
    position: relative; }
  .usx-partner .proof-attr {
    font-size: 13px;
    color: var(--muted); }
  .usx-partner .proof-attr strong {
    color: var(--cida);
    font-weight: 600; }
  .usx-partner .proof-stats {
    display: flex;
    flex-direction: column;
    gap: 20px; }
  .usx-partner .proof-stat {
    padding: 28px 32px;
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 8px;
    border-left: 3px solid var(--cida);
    transition: transform 0.18s, border-left-color 0.2s; }
  .usx-partner .proof-stat:hover {
    transform: translateX(4px);
    border-left-color: var(--cida); }
  .usx-partner .proof-stat-num {
    font-family: var(--font-d);
    font-size: 36px;
    font-weight: 800;
    color: var(--cida);
    line-height: 1;
    margin-bottom: 4px; }
  .usx-partner .proof-stat-label {
    font-size: 13px;
    color: var(--muted); }
  .usx-partner .section-apply {
    background: var(--bg3);
    padding: 0; }
  .usx-partner .apply-frame {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden; }
  .usx-partner .apply-left {
    background: var(--deep);
    padding: 80px 64px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    overflow: hidden; }
  .usx-partner .apply-left::before {
    content: "";
    position: absolute;
    top: -80px;
    right: -80px;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(68, 215, 182, 0.18), transparent 65%);
    pointer-events: none; }
  .usx-partner .apply-headline {
    font-size: clamp(28px, 3.5vw, 48px);
    color: #000;
    line-height: 1.05; }
  .usx-partner .apply-sub {
    font-size: 15px;
    color: rgba(0, 0, 0, 0.65);
    line-height: 1.75; }
  .usx-partner .apply-sub strong {
    color: #000;
    font-weight: 700; }
  .usx-partner .apply-sig {
    font-family: var(--font-d);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.4); }
  .usx-partner .apply-right {
    padding: 72px 64px;
    display: flex;
    flex-direction: column;
    justify-content: center; }
  .usx-partner .apply-right-label {
    display: block;
    font-family: var(--font-d);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--cida);
    margin-bottom: 14px; }
  .usx-partner .apply-right-h {
    font-size: clamp(22px, 2.8vw, 34px);
    margin-bottom: 10px; }
  .usx-partner .apply-right-sub {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 28px; }
  .usx-partner .apply-form {
    display: flex;
    flex-direction: column;
    gap: 12px; }
  .usx-partner .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px; }
  .usx-partner .apply-form input,
  .usx-partner .apply-form select {
    width: 100%;
    padding: 13px 16px;
    background: var(--faint);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--r);
    font-size: 14px;
    color: var(--text);
    font-family: var(--font-b);
    transition: border-color 0.2s, box-shadow 0.2s;
    appearance: none; }
  .usx-partner .apply-form input::placeholder {
    color: rgba(155, 184, 204, 0.45); }
  .usx-partner .apply-form select {
    color: rgba(155, 184, 204, 0.65);
    cursor: pointer; }
  .usx-partner .apply-form select option {
    background: var(--bg3);
    color: var(--text); }
  .usx-partner .apply-form input:focus,
  .usx-partner .apply-form select:focus {
    outline: none;
    border-color: var(--cida);
    background: rgba(68, 215, 182, 0.04);
    box-shadow: 0 0 0 3px rgba(68, 215, 182, 0.1);
    color: var(--text); }
  .usx-partner .apply-form .btn {
    margin-top: 4px;
    font-size: 15px;
    padding: 15px 28px; }
  .usx-partner .site-footer {
    background: #000;
    border-top: 1px solid rgba(68, 215, 182, 0.07);
    padding: 64px 0 32px; }
  .usx-partner .ft-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 56px;
    margin-bottom: 48px; }
  .usx-partner .ft-logo {
    height: 44px;
    width: auto;
    margin-bottom: 14px; }
  .usx-partner .ft-tagline {
    font-family: var(--font-d);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--cida);
    margin-bottom: 10px; }
  .usx-partner .ft-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.28);
    line-height: 1.75;
    max-width: 260px; }
  .usx-partner .ft-addr {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.18);
    line-height: 1.75;
    margin-top: 14px; }
  .usx-partner .ft-col h4 {
    font-family: var(--font-d);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.28);
    margin-bottom: 18px; }
  .usx-partner .ft-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px; }
  .usx-partner .ft-col a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.38);
    transition: color 0.15s; }
  .usx-partner .ft-col a:hover {
    color: var(--cida); }
  .usx-partner .ft-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px; }
  .usx-partner .ft-bottom p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.18); }
  .usx-partner .ft-awards {
    display: flex;
    gap: 12px;
    align-items: center; }
  .usx-partner .ft-awards img {
    height: 56px;
    width: auto;
    object-fit: contain;
    opacity: 0.9;
    filter: none;
    transition: opacity 0.2s; }
  .usx-partner .ft-awards img:hover {
    opacity: 1; }
  @media (max-width: 1024px) {
    .usx-partner :root {
      --nav-h: 64px; }
    .usx-partner section {
      padding: 88px 0; }
    .usx-partner .container {
      padding: 0 28px; }
    .usx-partner .nav-links {
      display: none; }
    .usx-partner .nav-right {
      display: none; }
    .usx-partner .nav-toggle {
      display: flex;
      margin-left: auto; }
    .usx-partner .hero-body {
      grid-template-columns: 1fr;
      gap: 48px;
      padding-top: calc(var(--nav-h) + 64px);
      padding-bottom: 40px;
      text-align: center; }
    .usx-partner .hero-visual {
      order: -1; }
    .usx-partner .hero-ctas {
      justify-content: center; }
    .usx-partner .hero-lede {
      max-width: 100%;
      margin-inline: auto; }
    .usx-partner .float-badge {
      display: none; }
    .usx-partner .for-grid {
      grid-template-columns: 1fr; }
    .usx-partner .paths-grid {
      grid-template-columns: 1fr; }
    .usx-partner .why-grid {
      grid-template-columns: 1fr; }
    .usx-partner .how-grid {
      grid-template-columns: 1fr; }
    .usx-partner .preferred-split {
      grid-template-columns: 1fr; }
    .usx-partner .proof-inner {
      grid-template-columns: 1fr;
      gap: 40px; }
    .usx-partner .apply-frame {
      grid-template-columns: 1fr; }
    .usx-partner .apply-left {
      padding: 56px 40px; }
    .usx-partner .apply-right {
      padding: 56px 40px; }
    .usx-partner .ft-top {
      grid-template-columns: 1fr 1fr;
      gap: 40px; } }
  .usx-partner .nav-links.open {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(7, 8, 11, 0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 36px 36px;
    gap: 0;
    z-index: 9999;
    overflow-y: auto; }
  .usx-partner .nav-links.open li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06); }
  .usx-partner .nav-links.open a {
    display: block;
    padding: 18px 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text);
    letter-spacing: -0.01em; }
  .usx-partner .nav-links.open a:hover {
    color: var(--cida); }
  .usx-partner .nav-links.open .nav-mobile-cta {
    display: block;
    border-bottom: none;
    padding-top: 28px; }
  .usx-partner .nav-links.open .nav-mobile-cta .btn {
    width: 100%;
    justify-content: center;
    font-size: 15px;
    padding: 15px 28px; }
  @media (max-width: 640px) {
    .usx-partner .container {
      padding: 0 20px; }
    .usx-partner section {
      padding: 72px 0; }
    .usx-partner .hero-text h1 {
      font-size: clamp(34px, 10vw, 52px); }
    .usx-partner .hero-ctas {
      flex-direction: column;
      align-items: center; }
    .usx-partner .hero-ctas .btn {
      width: 100%;
      justify-content: center; }
    .usx-partner .form-row {
      grid-template-columns: 1fr; }
    .usx-partner .ft-top {
      grid-template-columns: 1fr; }
    .usx-partner .apply-left {
      padding: 44px 24px; }
    .usx-partner .apply-right {
      padding: 44px 24px; }
    .usx-partner .sb-link {
      display: none; } }
  @media (max-width: 400px) {
    .usx-partner :root {
      --nav-h: 60px; }
    .usx-partner .nav-logo img {
      height: 34px; } }

.usx-request-demo {
  /* ================================================================
   USX CYBER — DEMO / CONTACT LANDING PAGE
   Dynamic Defense™ | Request a Demo
   ================================================================ */
  /* ── Design Tokens ─────────────────────────────────────────────── */
  /* ── Reset ──────────────────────────────────────────────────────── */
  /* ── Container ──────────────────────────────────────────────────── */
  /* ── Headings ───────────────────────────────────────────────────── */
  /* ── Eyebrow ─────────────────────────────────────────────────────── */
  /* ── Buttons ─────────────────────────────────────────────────────── */
  /* ================================================================
   NAVIGATION
   ================================================================ */
  /* ================================================================
   ANIMATIONS
   ================================================================ */
  /* ================================================================
   DEMO LANDING — MAIN SPLIT
   ================================================================ */
  /* Background orbs */
  /* ── Left panel — pitch ──────────────────────────────────────────── */
  /* ── Right panel — form ─────────────────────────────────────────── */
  /* Success state */
  /* ================================================================
   FOOTER
   ================================================================ */
  /* ================================================================
   RESPONSIVE — TABLET  (≤ 1024px)
   ================================================================ */
  /* Mobile nav overlay */
  /* ================================================================
   RESPONSIVE — MOBILE  (≤ 640px)
   ================================================================ */ }
  .usx-request-demo :root {
    --cida: #44d7b6;
    --principle: #4fabbd;
    --deep: #006e7b;
    --alert: #f1754a;
    --bg: #07080b;
    --bg2: #0c0f14;
    --bg3: #111620;
    --surface: #161d2a;
    --text: #eef2f8;
    --muted: #9bb8cc;
    --faint: rgba(255, 255, 255, 0.04);
    --border: rgba(68, 215, 182, 0.13);
    --font-d: "Outfit", sans-serif;
    --font-b: "DM Sans", sans-serif;
    --max-w: 1200px;
    --nav-h: 68px;
    --r: 6px;
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --tr: all 0.2s var(--ease); }
  .usx-request-demo *,
  .usx-request-demo *::before,
  .usx-request-demo *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0; }
  .usx-request-demo html {
    scroll-behavior: smooth; }
  .usx-request-demo body {
    font-family: var(--font-b);
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    background-image: radial-gradient(rgba(68, 215, 182, 0.05) 1px, transparent 1px);
    background-size: 32px 32px; }
  .usx-request-demo img {
    max-width: 100%;
    height: auto;
    display: block; }
  .usx-request-demo a {
    text-decoration: none;
    color: inherit; }
  .usx-request-demo ul {
    list-style: none; }
  .usx-request-demo strong {
    color: var(--text);
    font-weight: 600; }
  .usx-request-demo .container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 36px; }
  .usx-request-demo h1,
  .usx-request-demo h2,
  .usx-request-demo h3,
  .usx-request-demo h4 {
    font-family: var(--font-d);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.02em; }
  .usx-request-demo .eyebrow {
    display: inline-block;
    font-family: var(--font-d);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--cida);
    margin-bottom: 20px; }
  .usx-request-demo .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-d);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 14px 30px;
    border-radius: var(--r);
    transition: var(--tr);
    cursor: pointer;
    border: none; }
  .usx-request-demo .btn-cida {
    background: var(--cida);
    color: #000;
    font-size: 16px;
    padding: 16px 36px; }
  .usx-request-demo .btn-cida:hover {
    background: #5ce8c7;
    box-shadow: 0 0 28px rgba(68, 215, 182, 0.35);
    transform: translateY(-2px); }
  .usx-request-demo .btn-outline {
    background: transparent;
    color: var(--text);
    border: 1px solid rgba(255, 255, 255, 0.18);
    font-size: 16px;
    padding: 16px 36px; }
  .usx-request-demo .btn-outline:hover {
    border-color: var(--cida);
    color: var(--cida);
    background: rgba(68, 215, 182, 0.04); }
  .usx-request-demo .btn-block {
    width: 100%;
    justify-content: center; }
  .usx-request-demo .nav-wrap {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    height: var(--nav-h);
    background: rgba(7, 8, 11, 0.65);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    border-bottom: 1px solid rgba(68, 215, 182, 0.06);
    transition: var(--tr); }
  .usx-request-demo .nav-wrap.scrolled {
    background: rgba(7, 8, 11, 0.96);
    border-bottom-color: var(--border);
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.55); }
  .usx-request-demo .nav-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 36px;
    height: 100%;
    display: flex;
    align-items: center; }
  .usx-request-demo .nav-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0; }
  .usx-request-demo .nav-logo img {
    height: 42px;
    width: auto; }
  .usx-request-demo .nav-links {
    display: flex;
    align-items: center;
    gap: 26px;
    margin-left: 44px; }
  .usx-request-demo .nav-links a {
    font-size: 13px;
    font-weight: 500;
    color: var(--muted);
    letter-spacing: 0.02em;
    transition: color 0.15s; }
  .usx-request-demo .nav-links a:hover {
    color: var(--text); }
  .usx-request-demo .nav-links a.active {
    color: var(--cida); }
  .usx-request-demo .nav-mobile-cta {
    display: none; }
  .usx-request-demo .nav-right {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto; }
  .usx-request-demo .nav-login {
    font-size: 13px;
    font-weight: 500;
    color: var(--muted);
    padding: 8px 14px;
    transition: color 0.15s; }
  .usx-request-demo .nav-login:hover {
    color: var(--text); }
  .usx-request-demo .nav-cta {
    font-family: var(--font-d);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 10px 22px;
    border-radius: var(--r);
    background: var(--principle);
    color: #fff;
    transition: all 0.17s;
    white-space: nowrap; }
  .usx-request-demo .nav-cta:hover {
    background: #5cbece;
    box-shadow: 0 0 20px rgba(79, 171, 189, 0.35); }
  .usx-request-demo .nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    margin-left: 16px; }
  .usx-request-demo .nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: var(--tr); }
  .usx-request-demo .nav-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px); }
  .usx-request-demo .nav-toggle.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0); }
  .usx-request-demo .nav-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px); }

@keyframes orbDrift {
  0%,
  100% {
    transform: translate(0, 0); }
  33% {
    transform: translate(30px, -20px); }
  66% {
    transform: translate(-20px, 30px); } }

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px); }
  to {
    opacity: 1;
    transform: translateY(0); } }

@keyframes sbShimmer {
  from {
    transform: translateX(-100%); }
  to {
    transform: translateX(100%); } }
  .usx-request-demo .demo-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding-top: var(--nav-h);
    position: relative; }
  .usx-request-demo .demo-orb {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0; }
  .usx-request-demo .demo-orb-1 {
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 110, 123, 0.1) 0%, transparent 60%);
    top: -200px;
    left: -200px;
    animation: orbDrift 14s ease-in-out infinite; }
  .usx-request-demo .demo-orb-2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(68, 215, 182, 0.06) 0%, transparent 60%);
    bottom: -100px;
    right: -100px;
    animation: orbDrift 12s ease-in-out infinite reverse; }
  .usx-request-demo .demo-split {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    z-index: 1; }
  .usx-request-demo .demo-left {
    background: var(--deep);
    padding: 72px 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 40px;
    position: relative;
    overflow: hidden; }
  .usx-request-demo .demo-left::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(68, 215, 182, 0.2), transparent 65%);
    pointer-events: none; }
  .usx-request-demo .demo-left::after {
    content: "";
    position: absolute;
    bottom: -80px;
    left: -60px;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.3), transparent 65%);
    pointer-events: none; }
  .usx-request-demo .demo-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-d);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.5);
    margin-bottom: 0;
    animation: fadeUp 0.4s ease both 0.05s; }
  .usx-request-demo .demo-eyebrow-line {
    width: 24px;
    height: 1px;
    background: rgba(0, 0, 0, 0.35);
    flex-shrink: 0; }
  .usx-request-demo .demo-headline {
    font-size: clamp(30px, 3.5vw, 48px);
    color: #000;
    line-height: 1.05;
    animation: fadeUp 0.5s ease both 0.1s;
    position: relative;
    z-index: 1; }
  .usx-request-demo .demo-tagline {
    font-size: clamp(14px, 1.4vw, 16px);
    color: rgba(0, 0, 0, 0.65);
    line-height: 1.7;
    animation: fadeUp 0.5s ease both 0.15s;
    position: relative;
    z-index: 1; }
  .usx-request-demo .demo-bullets {
    display: flex;
    flex-direction: column;
    gap: 14px;
    animation: fadeUp 0.5s ease both 0.2s;
    position: relative;
    z-index: 1; }
  .usx-request-demo .demo-bullet {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 20px;
    background: rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: var(--r);
    transition: background 0.2s; }
  .usx-request-demo .demo-bullet:hover {
    background: rgba(0, 0, 0, 0.22); }
  .usx-request-demo .demo-bullet-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px; }
  .usx-request-demo .demo-bullet-text strong {
    display: block;
    font-family: var(--font-d);
    font-size: 14px;
    font-weight: 700;
    color: #000;
    margin-bottom: 2px; }
  .usx-request-demo .demo-bullet-text span {
    font-size: 13px;
    color: rgba(0, 0, 0, 0.6);
    line-height: 1.5; }
  .usx-request-demo .demo-supporting {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.6);
    line-height: 1.75;
    animation: fadeUp 0.5s ease both 0.25s;
    position: relative;
    z-index: 1; }
  .usx-request-demo .demo-sig {
    font-family: var(--font-d);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.35);
    animation: fadeUp 0.5s ease both 0.3s;
    position: relative;
    z-index: 1; }
  .usx-request-demo .demo-badges {
    display: flex;
    align-items: center;
    gap: 16px;
    animation: fadeUp 0.5s ease both 0.35s;
    position: relative;
    z-index: 1; }
  .usx-request-demo .demo-badges img {
    height: 52px;
    width: auto;
    object-fit: contain;
    opacity: 0.9;
    filter: none;
    transition: opacity 0.2s; }
  .usx-request-demo .demo-badges img:hover {
    opacity: 1; }
  .usx-request-demo .demo-right {
    background: var(--bg2);
    padding: 72px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-left: 1px solid var(--border);
    animation: fadeUp 0.6s ease both 0.1s; }
  .usx-request-demo .demo-form-label {
    display: block;
    font-family: var(--font-d);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--cida);
    margin-bottom: 14px; }
  .usx-request-demo .demo-form-h {
    font-size: clamp(22px, 2.6vw, 34px);
    margin-bottom: 8px;
    color: var(--text); }
  .usx-request-demo .demo-form-sub {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 32px; }
  .usx-request-demo .demo-form {
    display: flex;
    flex-direction: column;
    gap: 12px; }
  .usx-request-demo .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px; }
  .usx-request-demo .demo-form input,
  .usx-request-demo .demo-form select {
    width: 100%;
    padding: 14px 16px;
    background: var(--faint);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--r);
    font-size: 14px;
    color: var(--text);
    font-family: var(--font-b);
    transition: border-color 0.2s, box-shadow 0.2s;
    -webkit-appearance: none;
    appearance: none; }
  .usx-request-demo .demo-form input::placeholder {
    color: rgba(155, 184, 204, 0.4); }
  .usx-request-demo .demo-form input:focus,
  .usx-request-demo .demo-form select:focus {
    outline: none;
    border-color: var(--cida);
    background: rgba(68, 215, 182, 0.04);
    box-shadow: 0 0 0 3px rgba(68, 215, 182, 0.1); }
  .usx-request-demo .demo-form .btn-submit {
    margin-top: 4px;
    width: 100%;
    justify-content: center;
    font-size: 15px;
    padding: 16px 28px;
    background: var(--cida);
    color: #000;
    font-family: var(--font-d);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: none;
    border-radius: var(--r);
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
    display: flex;
    align-items: center;
    gap: 10px; }
  .usx-request-demo .demo-form .btn-submit:hover {
    background: #5ce8c7;
    box-shadow: 0 0 28px rgba(68, 215, 182, 0.35);
    transform: translateY(-2px); }
  .usx-request-demo .demo-form .btn-secondary {
    width: 100%;
    justify-content: center;
    text-align: center;
    font-family: var(--font-d);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
    padding: 14px 28px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--r);
    background: transparent;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
    display: block; }
  .usx-request-demo .demo-form .btn-secondary:hover {
    border-color: var(--cida);
    color: var(--cida); }
  .usx-request-demo .form-legal {
    font-size: 11px;
    color: rgba(155, 184, 204, 0.45);
    line-height: 1.6;
    text-align: center;
    margin-top: 4px; }
  .usx-request-demo .form-legal a {
    color: rgba(155, 184, 204, 0.55);
    text-decoration: underline; }
  .usx-request-demo .form-legal a:hover {
    color: var(--cida); }
  .usx-request-demo .form-success {
    display: none;
    text-align: center;
    padding: 40px 20px; }
  .usx-request-demo .form-success.visible {
    display: block; }
  .usx-request-demo .form-success-icon {
    font-size: 48px;
    margin-bottom: 20px; }
  .usx-request-demo .form-success h3 {
    font-size: 24px;
    color: var(--cida);
    margin-bottom: 12px; }
  .usx-request-demo .form-success p {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.7; }
  .usx-request-demo .site-footer {
    background: #000;
    border-top: 1px solid rgba(68, 215, 182, 0.07);
    padding: 64px 0 32px; }
  .usx-request-demo .ft-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 56px;
    margin-bottom: 48px; }
  .usx-request-demo .ft-logo {
    height: 44px;
    width: auto;
    margin-bottom: 14px; }
  .usx-request-demo .ft-tagline {
    font-family: var(--font-d);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--cida);
    margin-bottom: 10px; }
  .usx-request-demo .ft-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.28);
    line-height: 1.75;
    max-width: 260px; }
  .usx-request-demo .ft-addr {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.18);
    line-height: 1.75;
    margin-top: 14px; }
  .usx-request-demo .ft-col h4 {
    font-family: var(--font-d);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.28);
    margin-bottom: 18px; }
  .usx-request-demo .ft-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px; }
  .usx-request-demo .ft-col a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.38);
    transition: color 0.15s; }
  .usx-request-demo .ft-col a:hover {
    color: var(--cida); }
  .usx-request-demo .ft-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px; }
  .usx-request-demo .ft-bottom p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.18); }
  .usx-request-demo .ft-awards {
    display: flex;
    gap: 12px;
    align-items: center; }
  .usx-request-demo .ft-awards img {
    height: 56px;
    width: auto;
    object-fit: contain;
    opacity: 0.9;
    filter: none;
    transition: opacity 0.2s; }
  .usx-request-demo .ft-awards img:hover {
    opacity: 1; }
  @media (max-width: 1024px) {
    .usx-request-demo :root {
      --nav-h: 64px; }
    .usx-request-demo .container {
      padding: 0 28px; }
    .usx-request-demo .nav-links {
      display: none; }
    .usx-request-demo .nav-right {
      display: none; }
    .usx-request-demo .nav-toggle {
      display: flex;
      margin-left: auto; }
    .usx-request-demo .demo-split {
      grid-template-columns: 1fr; }
    .usx-request-demo .demo-left {
      padding: 56px 40px;
      order: 2; }
    .usx-request-demo .demo-right {
      padding: 56px 40px;
      order: 1;
      border-left: none;
      border-top: 1px solid var(--border); }
    .usx-request-demo .ft-top {
      grid-template-columns: 1fr 1fr;
      gap: 40px; } }
  .usx-request-demo .nav-links.open {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(7, 8, 11, 0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 36px 36px;
    gap: 0;
    z-index: 9999;
    overflow-y: auto; }
  .usx-request-demo .nav-links.open li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06); }
  .usx-request-demo .nav-links.open a {
    display: block;
    padding: 18px 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text);
    letter-spacing: -0.01em; }
  .usx-request-demo .nav-links.open a:hover {
    color: var(--cida); }
  .usx-request-demo .nav-links.open .nav-mobile-cta {
    display: block;
    border-bottom: none;
    padding-top: 28px; }
  .usx-request-demo .nav-links.open .nav-mobile-cta .btn {
    width: 100%;
    justify-content: center;
    font-size: 15px;
    padding: 15px 28px; }
  @media (max-width: 640px) {
    .usx-request-demo .container {
      padding: 0 20px; }
    .usx-request-demo .demo-left {
      padding: 48px 24px; }
    .usx-request-demo .demo-right {
      padding: 48px 24px; }
    .usx-request-demo .form-row {
      grid-template-columns: 1fr; }
    .usx-request-demo .ft-top {
      grid-template-columns: 1fr; }
    .usx-request-demo .ft-bottom {
      flex-direction: column;
      text-align: center; }
    .usx-request-demo .ft-awards {
      justify-content: center; } }
  @media (max-width: 400px) {
    .usx-request-demo :root {
      --nav-h: 60px; }
    .usx-request-demo .nav-logo img {
      height: 34px; } }

.usx-guardient {
  /* ================================================================
   USX CYBER — PLATFORM PAGE
   Dynamic Defense™ | GUARDIENT® Platform Detail
   ================================================================ */
  /* ── Design Tokens ─────────────────────────────────────────────── */
  /* ── Reset ──────────────────────────────────────────────────────── */
  /* ── Container ──────────────────────────────────────────────────── */
  /* ── Headings ───────────────────────────────────────────────────── */
  /* ── Eyebrow ─────────────────────────────────────────────────────── */
  /* ── Buttons ─────────────────────────────────────────────────────── */
  /* ── Scroll-reveal ───────────────────────────────────────────────── */
  /* ================================================================
   NAVIGATION
   ================================================================ */
  /* ================================================================
   ANIMATIONS
   ================================================================ */
  /* ================================================================
   HERO — PLATFORM
   ================================================================ */
  /* Platform screenshot frame */
  /* Floating stat pills */
  /* ================================================================
   SECTION — SHARED
   ================================================================ */
  /* ================================================================
   STATEMENT BAR
   ================================================================ */
  /* ================================================================
   BENEFIT CARDS
   ================================================================ */
  /* ================================================================
   AI FEATURES
   ================================================================ */
  /* ================================================================
   FEATURE OVERVIEW — 6-card grid + video
   ================================================================ */
  /* Video strip */
  /* ================================================================
   SERVICE TIERS
   ================================================================ */
  /* ================================================================
   HOW IT WORKS
   ================================================================ */
  /* ================================================================
   INTEGRATION
   ================================================================ */
  /* ================================================================
   COMPLIANCE STRIP
   ================================================================ */
  /* ================================================================
   MULTI-ENVIRONMENT COVERAGE
   ================================================================ */
  /* ================================================================
   WAZUH INTEGRATION
   ================================================================ */
  /* ================================================================
   DEMO CTA
   ================================================================ */
  /* ================================================================
   FOOTER
   ================================================================ */
  /* ================================================================
   RESPONSIVE — TABLET  (≤ 1024px)
   ================================================================ */
  /* Mobile nav overlay */
  /* ================================================================
   RESPONSIVE — MOBILE  (≤ 640px)
   ================================================================ */ }
  .usx-guardient :root {
    --cida: #44d7b6;
    --principle: #4fabbd;
    --deep: #006e7b;
    --alert: #f1754a;
    --bg: #07080b;
    --bg2: #0c0f14;
    --bg3: #111620;
    --surface: #161d2a;
    --text: #eef2f8;
    --muted: #9bb8cc;
    --faint: rgba(255, 255, 255, 0.04);
    --border: rgba(68, 215, 182, 0.13);
    --font-d: "Outfit", sans-serif;
    --font-b: "DM Sans", sans-serif;
    --max-w: 1200px;
    --nav-h: 68px;
    --r: 6px;
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --tr: all 0.2s var(--ease); }
  .usx-guardient *,
  .usx-guardient *::before,
  .usx-guardient *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0; }
  .usx-guardient html {
    scroll-behavior: smooth; }
  .usx-guardient body {
    font-family: var(--font-b);
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    background-image: radial-gradient(rgba(68, 215, 182, 0.05) 1px, transparent 1px);
    background-size: 32px 32px; }
  .usx-guardient img {
    max-width: 100%;
    height: auto;
    display: block; }
  .usx-guardient a {
    text-decoration: none;
    color: inherit; }
  .usx-guardient ul {
    list-style: none; }
  .usx-guardient strong {
    color: var(--text);
    font-weight: 600; }
  .usx-guardient .container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 36px; }
  .usx-guardient h1,
  .usx-guardient h2,
  .usx-guardient h3,
  .usx-guardient h4 {
    font-family: var(--font-d);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.02em; }
  .usx-guardient .sec-h {
    font-size: clamp(32px, 5vw, 56px);
    margin-bottom: 20px;
    letter-spacing: -0.025em; }
  .usx-guardient .eyebrow {
    display: inline-block;
    font-family: var(--font-d);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--cida);
    margin-bottom: 20px; }
  .usx-guardient .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-d);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 14px 30px;
    border-radius: var(--r);
    transition: var(--tr);
    cursor: pointer;
    border: none; }
  .usx-guardient .btn-cta {
    background: var(--principle);
    color: #fff;
    font-size: 16px;
    padding: 16px 36px; }
  .usx-guardient .btn-cta:hover {
    background: #5cbece;
    box-shadow: 0 0 32px rgba(79, 171, 189, 0.45);
    transform: translateY(-2px); }
  .usx-guardient .btn-cida {
    background: var(--cida);
    color: #000; }
  .usx-guardient .btn-cida:hover {
    background: #5ce8c7;
    box-shadow: 0 0 28px rgba(68, 215, 182, 0.35);
    transform: translateY(-2px); }
  .usx-guardient .btn-outline {
    background: transparent;
    color: var(--text);
    border: 1px solid rgba(255, 255, 255, 0.18);
    font-size: 16px;
    padding: 16px 36px; }
  .usx-guardient .btn-outline:hover {
    border-color: var(--cida);
    color: var(--cida);
    background: rgba(68, 215, 182, 0.04); }
  .usx-guardient .btn-block {
    width: 100%;
    justify-content: center; }
  .usx-guardient [data-reveal] {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.65s var(--ease), transform 0.65s var(--ease); }
  .usx-guardient [data-reveal-right] {
    opacity: 0;
    transform: translateX(22px);
    transition: opacity 0.65s var(--ease) 0.12s, transform 0.65s var(--ease) 0.12s; }
  .usx-guardient .revealed {
    opacity: 1 !important;
    transform: translate(0, 0) !important; }
  .usx-guardient [data-reveal-stagger] > * {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.55s var(--ease), transform 0.55s var(--ease); }
  .usx-guardient [data-reveal-stagger].revealed > *:nth-child(1) {
    transition-delay: 0s;
    opacity: 1;
    transform: none; }
  .usx-guardient [data-reveal-stagger].revealed > *:nth-child(2) {
    transition-delay: 0.1s;
    opacity: 1;
    transform: none; }
  .usx-guardient [data-reveal-stagger].revealed > *:nth-child(3) {
    transition-delay: 0.2s;
    opacity: 1;
    transform: none; }
  .usx-guardient [data-reveal-stagger].revealed > *:nth-child(4) {
    transition-delay: 0.3s;
    opacity: 1;
    transform: none; }
  .usx-guardient [data-reveal-stagger].revealed > *:nth-child(5) {
    transition-delay: 0.4s;
    opacity: 1;
    transform: none; }
  .usx-guardient [data-reveal-stagger].revealed > *:nth-child(6) {
    transition-delay: 0.5s;
    opacity: 1;
    transform: none; }
  .usx-guardient .nav-wrap {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    height: var(--nav-h);
    background: rgba(7, 8, 11, 0.65);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    border-bottom: 1px solid rgba(68, 215, 182, 0.06);
    transition: var(--tr); }
  .usx-guardient .nav-wrap.scrolled {
    background: rgba(7, 8, 11, 0.96);
    border-bottom-color: var(--border);
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.55); }
  .usx-guardient .nav-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 36px;
    height: 100%;
    display: flex;
    align-items: center; }
  .usx-guardient .nav-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0; }
  .usx-guardient .nav-logo img {
    height: 42px;
    width: auto; }
  .usx-guardient .nav-links {
    display: flex;
    align-items: center;
    gap: 26px;
    margin-left: 44px; }
  .usx-guardient .nav-links a {
    font-size: 13px;
    font-weight: 500;
    color: var(--muted);
    letter-spacing: 0.02em;
    transition: color 0.15s; }
  .usx-guardient .nav-links a:hover {
    color: var(--text); }
  .usx-guardient .nav-links a.active {
    color: var(--cida); }
  .usx-guardient .nav-mobile-cta {
    display: none; }
  .usx-guardient .nav-right {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto; }
  .usx-guardient .nav-login {
    font-size: 13px;
    font-weight: 500;
    color: var(--muted);
    padding: 8px 14px;
    transition: color 0.15s; }
  .usx-guardient .nav-login:hover {
    color: var(--text); }
  .usx-guardient .nav-cta {
    font-family: var(--font-d);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 10px 22px;
    border-radius: var(--r);
    background: var(--principle);
    color: #fff;
    transition: all 0.17s;
    white-space: nowrap; }
  .usx-guardient .nav-cta:hover {
    background: #5cbece;
    box-shadow: 0 0 20px rgba(79, 171, 189, 0.35); }
  .usx-guardient .nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    margin-left: 16px; }
  .usx-guardient .nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: var(--tr); }
  .usx-guardient .nav-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px); }
  .usx-guardient .nav-toggle.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0); }
  .usx-guardient .nav-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px); }

@keyframes orbDrift {
  0%,
  100% {
    transform: translate(0, 0); }
  33% {
    transform: translate(30px, -20px); }
  66% {
    transform: translate(-20px, 30px); } }

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px); }
  to {
    opacity: 1;
    transform: translateY(0); } }

@keyframes fadeLeft {
  from {
    opacity: 0;
    transform: translateX(28px); }
  to {
    opacity: 1;
    transform: translateX(0); } }

@keyframes frameGlow {
  0%,
  100% {
    box-shadow: 0 0 0 1px rgba(68, 215, 182, 0.06), 0 0 50px rgba(68, 215, 182, 0.07), 0 30px 80px rgba(0, 0, 0, 0.65); }
  50% {
    box-shadow: 0 0 0 1px rgba(68, 215, 182, 0.16), 0 0 90px rgba(68, 215, 182, 0.14), 0 30px 80px rgba(0, 0, 0, 0.65); } }

@keyframes livePulse {
  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(68, 215, 182, 0.5); }
  50% {
    opacity: 0.7;
    box-shadow: 0 0 0 6px rgba(68, 215, 182, 0); } }

@keyframes badgeFloat {
  0%,
  100% {
    transform: translateY(0); }
  50% {
    transform: translateY(-9px); } }

@keyframes sbShimmer {
  from {
    transform: translateX(-100%); }
  to {
    transform: translateX(100%); } }
  .usx-guardient .hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden; }
  .usx-guardient .hero-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0; }
  .usx-guardient .hero-orb-1 {
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, rgba(68, 215, 182, 0.07) 0%, transparent 60%);
    top: -250px;
    right: -180px;
    animation: orbDrift 12s ease-in-out infinite; }
  .usx-guardient .hero-orb-2 {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(0, 110, 123, 0.09) 0%, transparent 60%);
    bottom: -150px;
    left: -180px;
    animation: orbDrift 14s ease-in-out infinite reverse; }
  .usx-guardient .hero-orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(79, 171, 189, 0.05) 0%, transparent 60%);
    top: 40%;
    left: 35%;
    animation: orbDrift 9s ease-in-out infinite 3s; }
  .usx-guardient .hero-body {
    position: relative;
    z-index: 1;
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 64px;
    padding-bottom: 60px; }
  .usx-guardient .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-d);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--cida);
    margin-bottom: 32px;
    animation: fadeUp 0.5s ease both 0.05s; }
  .usx-guardient .eyebrow-line {
    width: 28px;
    height: 1px;
    background: var(--cida);
    flex-shrink: 0; }
  .usx-guardient .hero-text h1 {
    font-size: clamp(40px, 5.8vw, 76px);
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 28px;
    animation: fadeUp 0.55s ease both 0.15s; }
  .usx-guardient .h1-white {
    display: block;
    color: var(--text); }
  .usx-guardient .h1-cida {
    display: block;
    color: var(--cida); }
  .usx-guardient .h1-blue {
    display: block;
    color: var(--principle); }
  .usx-guardient .hero-lede {
    font-size: clamp(15px, 1.6vw, 18px);
    color: var(--muted);
    line-height: 1.78;
    max-width: 520px;
    margin-bottom: 40px;
    animation: fadeUp 0.5s ease both 0.25s; }
  .usx-guardient .hero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 44px;
    animation: fadeUp 0.5s ease both 0.35s; }
  .usx-guardient .hero-visual {
    position: relative;
    animation: fadeLeft 0.65s ease both 0.2s; }
  .usx-guardient .platform-frame {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(68, 215, 182, 0.22);
    animation: frameGlow 5s ease-in-out infinite;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.65); }
  .usx-guardient .pf-chrome {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: rgba(7, 8, 11, 0.92);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06); }
  .usx-guardient .pf-dots {
    display: flex;
    gap: 5px; }
  .usx-guardient .pf-dots span {
    width: 11px;
    height: 11px;
    border-radius: 50%; }
  .usx-guardient .dot-r {
    background: #ff5f57; }
  .usx-guardient .dot-y {
    background: #febc2e; }
  .usx-guardient .dot-g {
    background: #28c840; }
  .usx-guardient .pf-label {
    flex: 1;
    text-align: center;
    font-size: 11px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.28);
    font-family: var(--font-d);
    letter-spacing: 0.04em; }
  .usx-guardient .pf-live {
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: var(--font-d);
    font-size: 10px;
    font-weight: 700;
    color: var(--cida);
    letter-spacing: 0.1em;
    text-transform: uppercase; }
  .usx-guardient .live-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--cida);
    animation: livePulse 2s ease infinite; }
  .usx-guardient .pf-img {
    width: 100%;
    display: block;
    background: var(--bg3); }
  .usx-guardient .float-badge {
    position: absolute;
    background: rgba(11, 14, 20, 0.95);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 12px 18px;
    backdrop-filter: blur(14px); }
  .usx-guardient .float-badge-tl {
    bottom: -22px;
    left: -32px;
    animation: badgeFloat 4.5s ease-in-out infinite; }
  .usx-guardient .float-badge-br {
    top: 36px;
    right: -32px;
    animation: badgeFloat 4.5s ease-in-out infinite 2.2s; }
  .usx-guardient .fb-num {
    display: block;
    font-family: var(--font-d);
    font-size: 22px;
    font-weight: 800;
    color: var(--cida);
    line-height: 1;
    margin-bottom: 3px; }
  .usx-guardient .fb-label {
    display: block;
    font-size: 11px;
    color: var(--muted);
    white-space: nowrap; }
  .usx-guardient section {
    padding: 108px 0; }
  .usx-guardient p.sec-sub {
    font-size: 16px;
    color: var(--muted);
    line-height: 1.75;
    max-width: 560px; }
  .usx-guardient .statement-bar {
    background: var(--cida);
    position: relative;
    z-index: 1;
    overflow: hidden; }
  .usx-guardient .statement-bar::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, transparent 20%, rgba(255, 255, 255, 0.18) 50%, transparent 80%);
    animation: sbShimmer 3.5s ease infinite; }
  .usx-guardient .sb-inner {
    display: flex;
    align-items: stretch;
    position: relative; }
  .usx-guardient .sb-text {
    flex: 1;
    padding: 26px 0;
    font-family: var(--font-d);
    font-size: clamp(16px, 2.1vw, 22px);
    font-weight: 700;
    color: #000;
    line-height: 1.2;
    letter-spacing: -0.01em; }
  .usx-guardient .sb-link {
    background: #000;
    padding: 26px 44px;
    display: flex;
    align-items: center;
    font-family: var(--font-d);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--cida);
    white-space: nowrap;
    transition: background 0.15s;
    flex-shrink: 0; }
  .usx-guardient .sb-link:hover {
    background: #111; }
  .usx-guardient .section-benefits {
    background: var(--bg2); }
  .usx-guardient .benefits-intro {
    max-width: 640px;
    margin-bottom: 56px; }
  .usx-guardient .benefits-intro h2 {
    font-size: clamp(30px, 4vw, 50px);
    margin-bottom: 16px; }
  .usx-guardient .benefits-intro h2 em {
    font-style: normal;
    color: var(--cida); }
  .usx-guardient .benefits-intro p {
    font-size: 16px;
    color: var(--muted);
    line-height: 1.75; }
  .usx-guardient .benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden; }
  .usx-guardient .benefit-card {
    background: var(--bg3);
    padding: 40px 32px;
    border-top: 2px solid transparent;
    transition: background 0.2s, border-top-color 0.25s; }
  .usx-guardient .benefit-card:hover {
    background: var(--surface);
    border-top-color: var(--cida); }
  .usx-guardient .benefit-icon {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: rgba(68, 215, 182, 0.1);
    border: 1px solid rgba(68, 215, 182, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 20px; }
  .usx-guardient .benefit-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px; }
  .usx-guardient .benefit-card .problem {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.72;
    margin-bottom: 14px; }
  .usx-guardient .benefit-card .solution {
    font-size: 13px;
    color: var(--text);
    line-height: 1.72;
    padding: 12px 14px;
    background: rgba(68, 215, 182, 0.06);
    border-left: 2px solid var(--cida);
    border-radius: 0 4px 4px 0; }
  .usx-guardient .benefit-card .solution strong {
    color: var(--cida); }
  .usx-guardient .section-ai {
    background: var(--bg); }
  .usx-guardient .ai-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center; }
  .usx-guardient .ai-text h2 {
    font-size: clamp(28px, 3.5vw, 46px);
    margin-bottom: 16px; }
  .usx-guardient .ai-text h2 em {
    font-style: normal;
    color: var(--cida); }
  .usx-guardient .ai-text p {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 32px; }
  .usx-guardient .ai-feature-list {
    display: flex;
    flex-direction: column;
    gap: 12px; }
  .usx-guardient .ai-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 16px 18px;
    transition: border-color 0.2s, transform 0.18s; }
  .usx-guardient .ai-item:hover {
    border-color: rgba(68, 215, 182, 0.3);
    transform: translateX(4px); }
  .usx-guardient .ai-item-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    border-radius: 6px;
    background: rgba(68, 215, 182, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    margin-top: 2px; }
  .usx-guardient .ai-item-text strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 3px; }
  .usx-guardient .ai-item-text span {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.6; }
  .usx-guardient .ai-visual {
    position: relative; }
  .usx-guardient .ai-img-frame {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(68, 215, 182, 0.15);
    box-shadow: 0 24px 72px rgba(0, 0, 0, 0.55); }
  .usx-guardient .ai-img-frame img {
    width: 100%;
    display: block; }
  .usx-guardient .ai-glow {
    position: absolute;
    top: -60px;
    right: -60px;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(68, 215, 182, 0.08) 0%, transparent 65%);
    pointer-events: none; }
  .usx-guardient .ai-stat-pill {
    position: absolute;
    bottom: -18px;
    left: -28px;
    background: rgba(11, 14, 20, 0.95);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 12px 18px;
    backdrop-filter: blur(14px);
    animation: badgeFloat 5s ease-in-out infinite 1s; }
  .usx-guardient .ai-stat-num {
    display: block;
    font-family: var(--font-d);
    font-size: 24px;
    font-weight: 800;
    color: var(--cida);
    line-height: 1;
    margin-bottom: 3px; }
  .usx-guardient .ai-stat-label {
    display: block;
    font-size: 11px;
    color: var(--muted);
    white-space: nowrap; }
  .usx-guardient .section-features {
    background: var(--bg2); }
  .usx-guardient .features-hdr {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: end;
    margin-bottom: 52px; }
  .usx-guardient .features-hdr-l h2 {
    font-size: clamp(28px, 3.5vw, 46px); }
  .usx-guardient .features-hdr-r p {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 16px; }
  .usx-guardient .feature-tag {
    display: inline-block;
    font-family: var(--font-d);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    background: rgba(79, 171, 189, 0.1);
    border: 1px solid rgba(79, 171, 189, 0.25);
    color: var(--principle);
    border-radius: 4px;
    padding: 6px 14px; }
  .usx-guardient .feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 24px; }
  .usx-guardient .feature-card {
    background: var(--bg3);
    padding: 34px 28px;
    border-top: 2px solid transparent;
    transition: background 0.2s, border-top-color 0.25s; }
  .usx-guardient .feature-card:hover {
    background: var(--surface);
    border-top-color: var(--cida); }
  .usx-guardient .feature-card.accent {
    border-top-color: var(--principle); }
  .usx-guardient .fc-icon {
    font-size: 28px;
    margin-bottom: 14px;
    display: block; }
  .usx-guardient .fc-title {
    font-family: var(--font-d);
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 14px; }
  .usx-guardient .fc-list {
    display: flex;
    flex-direction: column;
    gap: 7px; }
  .usx-guardient .fc-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    color: var(--muted);
    line-height: 1.5; }
  .usx-guardient .fc-list li::before {
    content: "→";
    color: var(--cida);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
    font-size: 11px; }
  .usx-guardient .feature-video-strip {
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5); }
  .usx-guardient .fvs-chrome {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    background: rgba(7, 8, 11, 0.92);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06); }
  .usx-guardient .fvs-dots {
    display: flex;
    gap: 5px; }
  .usx-guardient .fvs-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%; }
  .usx-guardient .fvs-label {
    flex: 1;
    text-align: center;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.28);
    font-family: var(--font-d);
    letter-spacing: 0.04em; }
  .usx-guardient .live-badge {
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: var(--font-d);
    font-size: 10px;
    font-weight: 700;
    color: var(--cida);
    letter-spacing: 0.08em;
    text-transform: uppercase; }
  .usx-guardient .fvs-video {
    background: var(--bg3); }
  .usx-guardient .fvs-video video {
    width: 100%;
    display: block; }
  .usx-guardient .section-tiers {
    background: var(--bg); }
  .usx-guardient .tiers-hdr {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 52px; }
  .usx-guardient .tiers-hdr h2 {
    font-size: clamp(28px, 3.5vw, 46px);
    margin-bottom: 14px; }
  .usx-guardient .tiers-hdr p {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.75; }
  .usx-guardient .tiers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px; }
  .usx-guardient .tier-card {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 36px 28px;
    transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
    position: relative;
    overflow: hidden; }
  .usx-guardient .tier-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: transparent;
    transition: background 0.2s; }
  .usx-guardient .tier-card:hover {
    transform: translateY(-6px);
    border-color: rgba(68, 215, 182, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4); }
  .usx-guardient .tier-card:hover::before {
    background: var(--cida); }
  .usx-guardient .tier-card.highlight {
    border-color: rgba(68, 215, 182, 0.3);
    background: var(--bg3);
    box-shadow: 0 0 0 1px rgba(68, 215, 182, 0.12), 0 24px 60px rgba(0, 0, 0, 0.45); }
  .usx-guardient .tier-card.highlight::before {
    background: var(--cida); }
  .usx-guardient .tier-popular {
    display: inline-block;
    margin-bottom: 12px;
    background: var(--principle);
    color: #fff;
    font-family: var(--font-d);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 3px 9px;
    border-radius: 2px; }
  .usx-guardient .tier-name {
    font-family: var(--font-d);
    font-size: 22px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 6px; }
  .usx-guardient .tier-sub {
    font-size: 12px;
    color: var(--muted);
    margin-bottom: 24px;
    line-height: 1.5; }
  .usx-guardient .tier-divider {
    width: 32px;
    height: 2px;
    background: var(--cida);
    margin-bottom: 24px;
    opacity: 0.4; }
  .usx-guardient .tier-card.highlight .tier-divider {
    opacity: 1; }
  .usx-guardient .tier-list {
    display: flex;
    flex-direction: column;
    gap: 10px; }
  .usx-guardient .tier-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: var(--muted);
    line-height: 1.5; }
  .usx-guardient .tier-list li::before {
    content: "✓";
    color: var(--cida);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px; }
  .usx-guardient .tier-cta {
    margin-top: 28px; }
  .usx-guardient .tier-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-d);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--cida);
    transition: gap 0.15s; }
  .usx-guardient .tier-link:hover {
    gap: 12px; }
  .usx-guardient .section-lifecycle {
    background: var(--bg2); }
  .usx-guardient .lifecycle-hdr {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 56px; }
  .usx-guardient .lifecycle-hdr h2 {
    font-size: clamp(28px, 3.5vw, 46px);
    margin-bottom: 14px; }
  .usx-guardient .lifecycle-hdr p {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.75; }
  .usx-guardient .lifecycle-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 40px; }
  .usx-guardient .lifecycle-card {
    background: var(--bg3);
    padding: 40px 28px;
    border-top: 2px solid transparent;
    transition: background 0.2s, border-top-color 0.25s; }
  .usx-guardient .lifecycle-card:hover {
    background: var(--surface);
    border-top-color: var(--principle); }
  .usx-guardient .lc-step {
    font-family: var(--font-d);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--principle);
    margin-bottom: 16px; }
  .usx-guardient .lc-num {
    font-family: var(--font-d);
    font-size: 52px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.04);
    line-height: 1;
    margin-bottom: 8px;
    user-select: none; }
  .usx-guardient .lc-icon {
    font-size: 30px;
    margin-bottom: 14px;
    display: block; }
  .usx-guardient .lc-title {
    font-family: var(--font-d);
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px; }
  .usx-guardient .lc-list {
    display: flex;
    flex-direction: column;
    gap: 8px; }
  .usx-guardient .lc-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    color: var(--muted);
    line-height: 1.5; }
  .usx-guardient .lc-list li::before {
    content: "→";
    color: var(--principle);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
    font-size: 11px; }
  .usx-guardient .lifecycle-cta {
    text-align: center; }
  .usx-guardient .section-integration {
    background: var(--bg); }
  .usx-guardient .integration-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center; }
  .usx-guardient .int-text h2 {
    font-size: clamp(28px, 3.5vw, 46px);
    margin-bottom: 16px; }
  .usx-guardient .int-text h2 em {
    font-style: normal;
    color: var(--cida); }
  .usx-guardient .int-text > p {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 32px; }
  .usx-guardient .int-points {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 36px; }
  .usx-guardient .int-point {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 18px;
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--r);
    transition: border-color 0.2s, transform 0.18s; }
  .usx-guardient .int-point:hover {
    border-color: rgba(68, 215, 182, 0.3);
    transform: translateX(4px); }
  .usx-guardient .int-point-icon {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    border-radius: 8px;
    background: rgba(68, 215, 182, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-top: 1px; }
  .usx-guardient .int-point-body strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 3px; }
  .usx-guardient .int-point-body span {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.6; }
  .usx-guardient .int-visual {
    position: relative; }
  .usx-guardient .int-img-wrap {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(68, 215, 182, 0.15);
    box-shadow: 0 24px 72px rgba(0, 0, 0, 0.55); }
  .usx-guardient .int-img-wrap img {
    width: 100%;
    display: block; }
  .usx-guardient .int-glow {
    position: absolute;
    top: -60px;
    left: -60px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(79, 171, 189, 0.07) 0%, transparent 65%);
    pointer-events: none; }
  .usx-guardient .compliance-strip {
    background: var(--deep);
    position: relative;
    overflow: hidden; }
  .usx-guardient .compliance-strip::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.35) 0%, transparent 18%, transparent 82%, rgba(0, 0, 0, 0.35) 100%);
    pointer-events: none; }
  .usx-guardient .cs-wrap {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: stretch;
    position: relative; }
  .usx-guardient .cs-label {
    padding: 26px 36px;
    background: rgba(0, 0, 0, 0.3);
    font-family: var(--font-d);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    display: flex;
    align-items: center;
    white-space: nowrap;
    flex-shrink: 0; }
  .usx-guardient .cs-list {
    flex: 1;
    display: flex;
    align-items: stretch;
    overflow-x: auto; }
  .usx-guardient .cs-fw {
    flex: 1;
    min-width: 120px;
    padding: 22px 18px;
    text-align: center;
    font-family: var(--font-d);
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.85);
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    transition: background 0.15s, color 0.15s;
    cursor: default; }
  .usx-guardient .cs-fw:hover {
    background: rgba(255, 255, 255, 0.07);
    color: var(--cida); }
  .usx-guardient .cs-fw span {
    display: block;
    font-size: 10px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.35);
    margin-top: 3px;
    letter-spacing: 0.06em;
    text-transform: uppercase; }
  .usx-guardient .section-coverage {
    background: var(--bg); }
  .usx-guardient .coverage-hdr {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 52px; }
  .usx-guardient .coverage-hdr h2 {
    font-size: clamp(28px, 3.5vw, 46px);
    margin-bottom: 14px; }
  .usx-guardient .coverage-hdr p {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.75; }
  .usx-guardient .coverage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden; }
  .usx-guardient .coverage-col {
    background: var(--bg2);
    padding: 40px 32px;
    border-top: 2px solid transparent;
    transition: background 0.2s, border-top-color 0.25s; }
  .usx-guardient .coverage-col:hover {
    background: var(--bg3);
    border-top-color: var(--cida); }
  .usx-guardient .cov-tag {
    display: inline-block;
    margin-bottom: 16px;
    font-family: var(--font-d);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: var(--cida); }
  .usx-guardient .cov-title {
    font-family: var(--font-d);
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 14px;
    line-height: 1.2; }
  .usx-guardient .cov-body {
    font-size: 13.5px;
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 24px; }
  .usx-guardient .cov-list {
    display: flex;
    flex-direction: column;
    gap: 9px; }
  .usx-guardient .cov-list li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: 13px;
    color: var(--muted);
    line-height: 1.5; }
  .usx-guardient .cov-list li::before {
    content: "→";
    color: var(--cida);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
    font-size: 11px; }
  .usx-guardient .section-wazuh {
    background: var(--bg2); }
  .usx-guardient .wazuh-hdr {
    max-width: 700px;
    margin-bottom: 52px; }
  .usx-guardient .wazuh-hdr h2 {
    font-size: clamp(28px, 3.5vw, 46px);
    margin-bottom: 14px; }
  .usx-guardient .wazuh-hdr p {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.75; }
  .usx-guardient .wazuh-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 32px; }
  .usx-guardient .wazuh-card {
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 36px 28px;
    transition: border-color 0.2s, transform 0.2s;
    border-top: 2px solid transparent; }
  .usx-guardient .wazuh-card:hover {
    border-color: rgba(68, 215, 182, 0.25);
    border-top-color: var(--cida);
    transform: translateY(-4px); }
  .usx-guardient .wazuh-card-label {
    font-family: var(--font-d);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--principle);
    margin-bottom: 10px;
    display: block; }
  .usx-guardient .wazuh-card h3 {
    font-family: var(--font-d);
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px; }
  .usx-guardient .wazuh-card > p {
    font-size: 13.5px;
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 20px; }
  .usx-guardient .wazuh-list {
    display: flex;
    flex-direction: column;
    gap: 9px; }
  .usx-guardient .wazuh-list li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: 13px;
    color: var(--muted);
    line-height: 1.5; }
  .usx-guardient .wazuh-list li::before {
    content: "✓";
    color: var(--cida);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px; }
  .usx-guardient .wazuh-quote {
    border-radius: 8px;
    padding: 36px 44px;
    background: var(--deep);
    border: 1px solid rgba(68, 215, 182, 0.2);
    position: relative;
    overflow: hidden; }
  .usx-guardient .wazuh-quote::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 24px;
    font-family: var(--font-d);
    font-size: 120px;
    font-weight: 900;
    color: rgba(68, 215, 182, 0.12);
    line-height: 1;
    pointer-events: none;
    user-select: none; }
  .usx-guardient .wazuh-quote p {
    font-family: var(--font-d);
    font-size: clamp(15px, 2vw, 19px);
    font-weight: 500;
    color: #000;
    line-height: 1.65;
    font-style: italic;
    position: relative;
    z-index: 1; }
  .usx-guardient .section-demo {
    background: var(--bg2);
    padding: 0; }
  .usx-guardient .demo-frame {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden; }
  .usx-guardient .demo-left {
    background: var(--deep);
    padding: 80px 64px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    overflow: hidden; }
  .usx-guardient .demo-left::before {
    content: "";
    position: absolute;
    top: -80px;
    right: -80px;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(68, 215, 182, 0.18), transparent 65%);
    pointer-events: none; }
  .usx-guardient .demo-headline {
    font-size: clamp(28px, 3.5vw, 48px);
    color: #000;
    line-height: 1.05; }
  .usx-guardient .demo-sub {
    font-size: 15px;
    color: rgba(0, 0, 0, 0.65);
    line-height: 1.75; }
  .usx-guardient .demo-sub strong {
    color: #000;
    font-weight: 700; }
  .usx-guardient .demo-sig {
    font-family: var(--font-d);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.4); }
  .usx-guardient .demo-right {
    padding: 72px 64px;
    display: flex;
    flex-direction: column;
    justify-content: center; }
  .usx-guardient .demo-right-label {
    display: block;
    font-family: var(--font-d);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--cida);
    margin-bottom: 14px; }
  .usx-guardient .demo-right-h {
    font-size: clamp(22px, 2.8vw, 36px);
    margin-bottom: 10px; }
  .usx-guardient .demo-right-sub {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 28px; }
  .usx-guardient .wpcf7-form {
    display: flex;
    flex-direction: column;
    gap: 12px; }
  .usx-guardient .wpcf7-form p {
    margin: 0;
    display: contents; }
  .usx-guardient .wpcf7-form br {
    display: none; }
  .usx-guardient .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px; }
  .usx-guardient .wpcf7-form-control-wrap {
    display: block;
    width: 100%; }
  .usx-guardient .wpcf7-form input {
    width: 100%;
    padding: 13px 16px;
    background: var(--faint);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--r);
    font-size: 14px;
    color: var(--text); }
  .usx-guardient .wpcf7-form button br {
    display: none; }
  .usx-guardient .site-footer {
    background: #000;
    border-top: 1px solid rgba(68, 215, 182, 0.07);
    padding: 64px 0 32px; }
  .usx-guardient .ft-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 56px;
    margin-bottom: 48px; }
  .usx-guardient .ft-logo {
    height: 44px;
    width: auto;
    margin-bottom: 14px; }
  .usx-guardient .ft-tagline {
    font-family: var(--font-d);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--cida);
    margin-bottom: 10px; }
  .usx-guardient .ft-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.28);
    line-height: 1.75;
    max-width: 260px; }
  .usx-guardient .ft-addr {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.18);
    line-height: 1.75;
    margin-top: 14px; }
  .usx-guardient .ft-col h4 {
    font-family: var(--font-d);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.28);
    margin-bottom: 18px; }
  .usx-guardient .ft-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px; }
  .usx-guardient .ft-col a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.38);
    transition: color 0.15s; }
  .usx-guardient .ft-col a:hover {
    color: var(--cida); }
  .usx-guardient .ft-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px; }
  .usx-guardient .ft-bottom p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.18); }
  .usx-guardient .ft-awards {
    display: flex;
    gap: 12px;
    align-items: center; }
  .usx-guardient .ft-awards img {
    height: 56px;
    width: auto;
    object-fit: contain;
    opacity: 0.9;
    filter: none;
    transition: opacity 0.2s; }
  .usx-guardient .ft-awards img:hover {
    opacity: 1; }
  @media (max-width: 1024px) {
    .usx-guardient :root {
      --nav-h: 64px; }
    .usx-guardient section {
      padding: 88px 0; }
    .usx-guardient .container {
      padding: 0 28px; }
    .usx-guardient .nav-links {
      display: none; }
    .usx-guardient .nav-right {
      display: none; }
    .usx-guardient .nav-toggle {
      display: flex;
      margin-left: auto; }
    .usx-guardient .hero-body {
      grid-template-columns: 1fr;
      gap: 48px;
      padding-bottom: 40px;
      text-align: center; }
    .usx-guardient .hero-visual {
      order: -1; }
    .usx-guardient .hero-ctas {
      justify-content: center; }
    .usx-guardient .hero-lede {
      max-width: 100%;
      margin-inline: auto; }
    .usx-guardient .float-badge {
      display: none; }
    .usx-guardient .benefits-grid {
      grid-template-columns: 1fr; }
    .usx-guardient .ai-split {
      grid-template-columns: 1fr;
      gap: 48px; }
    .usx-guardient .features-hdr {
      grid-template-columns: 1fr; }
    .usx-guardient .feature-grid {
      grid-template-columns: repeat(2, 1fr); }
    .usx-guardient .tiers-grid {
      grid-template-columns: repeat(2, 1fr); }
    .usx-guardient .lifecycle-grid {
      grid-template-columns: repeat(2, 1fr); }
    .usx-guardient .coverage-grid {
      grid-template-columns: 1fr; }
    .usx-guardient .wazuh-grid {
      grid-template-columns: 1fr; }
    .usx-guardient .integration-split {
      grid-template-columns: 1fr;
      gap: 48px; }
    .usx-guardient .demo-frame {
      grid-template-columns: 1fr; }
    .usx-guardient .demo-left {
      padding: 56px 40px; }
    .usx-guardient .demo-right {
      padding: 56px 40px; }
    .usx-guardient .ft-top {
      grid-template-columns: 1fr 1fr;
      gap: 40px; }
    .usx-guardient .cs-label {
      display: none; } }
  .usx-guardient .nav-links.open {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(7, 8, 11, 0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 36px 36px;
    gap: 0;
    z-index: 9999;
    overflow-y: auto; }
  .usx-guardient .nav-links.open li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06); }
  .usx-guardient .nav-links.open a {
    display: block;
    padding: 18px 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text);
    letter-spacing: -0.01em; }
  .usx-guardient .nav-links.open a:hover {
    color: var(--cida); }
  .usx-guardient .nav-links.open .nav-mobile-cta {
    display: block;
    border-bottom: none;
    padding-top: 28px; }
  .usx-guardient .nav-links.open .nav-mobile-cta .btn {
    width: 100%;
    justify-content: center;
    font-size: 15px;
    padding: 15px 28px; }
  @media (max-width: 640px) {
    .usx-guardient .container {
      padding: 0 20px; }
    .usx-guardient section {
      padding: 72px 0; }
    .usx-guardient .hero-text h1 {
      font-size: clamp(36px, 10vw, 54px); }
    .usx-guardient .hero-ctas {
      flex-direction: column;
      align-items: center; }
    .usx-guardient .hero-ctas .btn {
      width: 100%;
      justify-content: center; }
    .usx-guardient .benefits-grid {
      grid-template-columns: 1fr; }
    .usx-guardient .feature-grid {
      grid-template-columns: 1fr; }
    .usx-guardient .tiers-grid {
      grid-template-columns: 1fr; }
    .usx-guardient .lifecycle-grid {
      grid-template-columns: 1fr; }
    .usx-guardient .form-row {
      grid-template-columns: 1fr; }
    .usx-guardient .ft-top {
      grid-template-columns: 1fr; }
    .usx-guardient .demo-left {
      padding: 44px 24px; }
    .usx-guardient .demo-right {
      padding: 44px 24px; }
    .usx-guardient .sb-link {
      display: none; } }
  @media (max-width: 400px) {
    .usx-guardient :root {
      --nav-h: 60px; }
    .usx-guardient .nav-logo img {
      height: 34px; } }

.usx-services {
  /* ================================================================
   USX CYBER — SERVICES PAGE
   Dynamic Defense™ | SOC-as-a-Service
   ================================================================ */
  /* ── Design Tokens ─────────────────────────────────────────────── */
  /* ── Reset ──────────────────────────────────────────────────────── */
  /* ── Container ──────────────────────────────────────────────────── */
  /* ── Headings ───────────────────────────────────────────────────── */
  /* ── Eyebrow ─────────────────────────────────────────────────────── */
  /* ── Buttons ─────────────────────────────────────────────────────── */
  /* ── Scroll-reveal ───────────────────────────────────────────────── */
  /* ================================================================
   ANIMATIONS
   ================================================================ */
  /* ================================================================
   NAVIGATION
   ================================================================ */
  /* ================================================================
   HERO — SERVICES
   ================================================================ */
  /* Flag/SOC hero visual */
  /* Floating stat pills */
  /* ================================================================
   SECTION — SHARED
   ================================================================ */
  /* ================================================================
   STATEMENT BAR
   ================================================================ */
  /* ================================================================
   TWO SERVICE PILLARS
   ================================================================ */
  /* ================================================================
   MONITORING CARDS
   ================================================================ */
  /* ================================================================
   SOC STANDOUT — 2-col
   ================================================================ */
  /* ================================================================
   SCALING BENEFITS
   ================================================================ */
  /* ================================================================
   WHITE GLOVE LIFECYCLE
   ================================================================ */
  /* ================================================================
   COMPARE
   ================================================================ */
  /* ================================================================
   COMPLIANCE ADVISORY INTRO
   ================================================================ */
  /* ================================================================
   COMPLIANCE SERVICE AREAS — 2×2 grid
   ================================================================ */
  /* ================================================================
   ADVISORY + PLATFORM ADVANTAGE
   ================================================================ */
  /* ================================================================
   ENGAGEMENT OPTIONS — 2×2 grid
   ================================================================ */
  /* ================================================================
   DEMO CTA
   ================================================================ */
  /* ================================================================
   FOOTER
   ================================================================ */
  /* ================================================================
   RESPONSIVE — TABLET  (≤ 1024px)
   ================================================================ */
  /* Mobile nav overlay */
  /* ================================================================
   RESPONSIVE — MOBILE  (≤ 640px)
   ================================================================ */ }
  .usx-services :root {
    --cida: #44d7b6;
    --principle: #4fabbd;
    --deep: #006e7b;
    --alert: #f1754a;
    --bg: #07080b;
    --bg2: #0c0f14;
    --bg3: #111620;
    --surface: #161d2a;
    --text: #eef2f8;
    --muted: #9bb8cc;
    --faint: rgba(255, 255, 255, 0.04);
    --border: rgba(68, 215, 182, 0.13);
    --font-d: "Outfit", sans-serif;
    --font-b: "DM Sans", sans-serif;
    --max-w: 1200px;
    --nav-h: 68px;
    --r: 6px;
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --tr: all 0.2s var(--ease); }
  .usx-services *,
  .usx-services *::before,
  .usx-services *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0; }
  .usx-services html {
    scroll-behavior: smooth; }
  .usx-services body {
    font-family: var(--font-b);
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    background-image: radial-gradient(rgba(68, 215, 182, 0.05) 1px, transparent 1px);
    background-size: 32px 32px; }
  .usx-services img {
    max-width: 100%;
    height: auto;
    display: block; }
  .usx-services a {
    text-decoration: none;
    color: inherit; }
  .usx-services ul {
    list-style: none; }
  .usx-services strong {
    color: var(--text);
    font-weight: 600; }
  .usx-services .container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 36px; }
  .usx-services h1,
  .usx-services h2,
  .usx-services h3,
  .usx-services h4 {
    font-family: var(--font-d);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.02em; }
  .usx-services .sec-h {
    font-size: clamp(32px, 5vw, 56px);
    margin-bottom: 20px;
    letter-spacing: -0.025em; }
  .usx-services .eyebrow {
    display: inline-block;
    font-family: var(--font-d);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: none;
    color: var(--cida);
    margin-bottom: 20px; }
  .usx-services .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-d);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 14px 30px;
    border-radius: var(--r);
    transition: var(--tr);
    cursor: pointer;
    border: none; }
  .usx-services .btn-cta {
    background: var(--principle);
    color: #fff;
    font-size: 16px;
    padding: 16px 36px; }
  .usx-services .btn-cta:hover {
    background: #5cbece;
    box-shadow: 0 0 32px rgba(79, 171, 189, 0.45);
    transform: translateY(-2px); }
  .usx-services .btn-cida {
    background: var(--cida);
    color: #000; }
  .usx-services .btn-cida:hover {
    background: #5ce8c7;
    box-shadow: 0 0 28px rgba(68, 215, 182, 0.35);
    transform: translateY(-2px); }
  .usx-services .btn-outline {
    background: transparent;
    color: var(--text);
    border: 1px solid rgba(255, 255, 255, 0.18);
    font-size: 16px;
    padding: 16px 36px; }
  .usx-services .btn-outline:hover {
    border-color: var(--cida);
    color: var(--cida);
    background: rgba(68, 215, 182, 0.04); }
  .usx-services .btn-block {
    width: 100%;
    justify-content: center; }
  .usx-services [data-reveal] {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.65s var(--ease), transform 0.65s var(--ease); }
  .usx-services [data-reveal-right] {
    opacity: 0;
    transform: translateX(22px);
    transition: opacity 0.65s var(--ease) 0.12s, transform 0.65s var(--ease) 0.12s; }
  .usx-services .revealed {
    opacity: 1 !important;
    transform: translate(0, 0) !important; }
  .usx-services [data-reveal-stagger] > * {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.55s var(--ease), transform 0.55s var(--ease); }
  .usx-services [data-reveal-stagger].revealed > *:nth-child(1) {
    transition-delay: 0s;
    opacity: 1;
    transform: none; }
  .usx-services [data-reveal-stagger].revealed > *:nth-child(2) {
    transition-delay: 0.1s;
    opacity: 1;
    transform: none; }
  .usx-services [data-reveal-stagger].revealed > *:nth-child(3) {
    transition-delay: 0.2s;
    opacity: 1;
    transform: none; }
  .usx-services [data-reveal-stagger].revealed > *:nth-child(4) {
    transition-delay: 0.3s;
    opacity: 1;
    transform: none; }
  .usx-services [data-reveal-stagger].revealed > *:nth-child(5) {
    transition-delay: 0.4s;
    opacity: 1;
    transform: none; }

@keyframes orbDrift {
  0%,
  100% {
    transform: translate(0, 0); }
  33% {
    transform: translate(30px, -20px); }
  66% {
    transform: translate(-20px, 30px); } }

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px); }
  to {
    opacity: 1;
    transform: translateY(0); } }

@keyframes fadeLeft {
  from {
    opacity: 0;
    transform: translateX(28px); }
  to {
    opacity: 1;
    transform: translateX(0); } }

@keyframes frameGlow {
  0%,
  100% {
    box-shadow: 0 0 0 1px rgba(68, 215, 182, 0.06), 0 0 50px rgba(68, 215, 182, 0.07), 0 30px 80px rgba(0, 0, 0, 0.65); }
  50% {
    box-shadow: 0 0 0 1px rgba(68, 215, 182, 0.16), 0 0 90px rgba(68, 215, 182, 0.14), 0 30px 80px rgba(0, 0, 0, 0.65); } }

@keyframes livePulse {
  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(68, 215, 182, 0.5); }
  50% {
    opacity: 0.7;
    box-shadow: 0 0 0 6px rgba(68, 215, 182, 0); } }

@keyframes badgeFloat {
  0%,
  100% {
    transform: translateY(0); }
  50% {
    transform: translateY(-9px); } }

@keyframes sbShimmer {
  from {
    transform: translateX(-100%); }
  to {
    transform: translateX(100%); } }

@keyframes stepPulse {
  0%,
  100% {
    border-color: rgba(68, 215, 182, 0.3); }
  50% {
    border-color: rgba(68, 215, 182, 0.7); } }
  .usx-services .nav-wrap {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    height: var(--nav-h);
    background: rgba(7, 8, 11, 0.65);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    border-bottom: 1px solid rgba(68, 215, 182, 0.06);
    transition: var(--tr); }
  .usx-services .nav-wrap.scrolled {
    background: rgba(7, 8, 11, 0.96);
    border-bottom-color: var(--border);
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.55); }
  .usx-services .nav-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 36px;
    height: 100%;
    display: flex;
    align-items: center; }
  .usx-services .nav-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0; }
  .usx-services .nav-logo img {
    height: 42px;
    width: auto; }
  .usx-services .nav-links {
    display: flex;
    align-items: center;
    gap: 26px;
    margin-left: 44px; }
  .usx-services .nav-links a {
    font-size: 13px;
    font-weight: 500;
    color: var(--muted);
    letter-spacing: 0.02em;
    transition: color 0.15s; }
  .usx-services .nav-links a:hover {
    color: var(--text); }
  .usx-services .nav-links a.active {
    color: var(--cida); }
  .usx-services .nav-mobile-cta {
    display: none; }
  .usx-services .nav-right {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto; }
  .usx-services .nav-login {
    font-size: 13px;
    font-weight: 500;
    color: var(--muted);
    padding: 8px 14px;
    transition: color 0.15s; }
  .usx-services .nav-login:hover {
    color: var(--text); }
  .usx-services .nav-cta {
    font-family: var(--font-d);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 10px 22px;
    border-radius: var(--r);
    background: var(--principle);
    color: #fff;
    transition: all 0.17s;
    white-space: nowrap; }
  .usx-services .nav-cta:hover {
    background: #5cbece;
    box-shadow: 0 0 20px rgba(79, 171, 189, 0.35); }
  .usx-services .nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    margin-left: 16px; }
  .usx-services .nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: var(--tr); }
  .usx-services .nav-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px); }
  .usx-services .nav-toggle.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0); }
  .usx-services .nav-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px); }
  .usx-services .hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden; }
  .usx-services .hero-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0; }
  .usx-services .hero-orb-1 {
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, rgba(68, 215, 182, 0.07) 0%, transparent 60%);
    top: -250px;
    right: -180px;
    animation: orbDrift 12s ease-in-out infinite; }
  .usx-services .hero-orb-2 {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(0, 110, 123, 0.09) 0%, transparent 60%);
    bottom: -150px;
    left: -180px;
    animation: orbDrift 14s ease-in-out infinite reverse; }
  .usx-services .hero-orb-3 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(79, 171, 189, 0.05) 0%, transparent 60%);
    top: 30%;
    left: 30%;
    animation: orbDrift 10s ease-in-out infinite 2s; }
  .usx-services .hero-body {
    position: relative;
    z-index: 1;
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 64px;
    padding-bottom: 60px; }
  .usx-services .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-d);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--cida);
    margin-bottom: 32px;
    animation: fadeUp 0.5s ease both 0.05s; }
  .usx-services .eyebrow-line {
    width: 28px;
    height: 1px;
    background: var(--cida);
    flex-shrink: 0; }
  .usx-services .hero-text h1 {
    font-size: clamp(40px, 5.8vw, 76px);
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 28px;
    animation: fadeUp 0.55s ease both 0.15s; }
  .usx-services .h1-white {
    display: block;
    color: var(--text); }
  .usx-services .h1-cida {
    display: block;
    color: var(--cida); }
  .usx-services .h1-blue {
    display: block;
    color: var(--principle); }
  .usx-services .hero-lede {
    font-size: clamp(15px, 1.6vw, 18px);
    color: var(--muted);
    line-height: 1.78;
    max-width: 520px;
    margin-bottom: 40px;
    animation: fadeUp 0.5s ease both 0.25s; }
  .usx-services .hero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    animation: fadeUp 0.5s ease both 0.35s; }
  .usx-services .hero-visual {
    position: relative;
    animation: fadeLeft 0.65s ease both 0.2s; }
  .usx-services .hero-img-frame {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(68, 215, 182, 0.22);
    animation: frameGlow 5s ease-in-out infinite;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.65); }
  .usx-services .hero-img-frame img {
    width: 100%;
    display: block; }
  .usx-services .float-badge {
    position: absolute;
    background: rgba(11, 14, 20, 0.95);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 12px 18px;
    backdrop-filter: blur(14px); }
  .usx-services .float-badge-tl {
    bottom: -22px;
    left: -32px;
    animation: badgeFloat 4.5s ease-in-out infinite; }
  .usx-services .float-badge-br {
    top: 36px;
    right: -32px;
    animation: badgeFloat 4.5s ease-in-out infinite 2.2s; }
  .usx-services .fb-num {
    display: block;
    font-family: var(--font-d);
    font-size: 22px;
    font-weight: 800;
    color: var(--cida);
    line-height: 1;
    margin-bottom: 3px; }
  .usx-services .fb-label {
    display: block;
    font-size: 11px;
    color: var(--muted);
    white-space: nowrap; }
  .usx-services section {
    padding: 108px 0; }
  .usx-services p.sec-sub {
    font-size: 16px;
    color: var(--muted);
    line-height: 1.75;
    max-width: 560px; }
  .usx-services .statement-bar {
    background: var(--cida);
    position: relative;
    z-index: 1;
    overflow: hidden; }
  .usx-services .statement-bar::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, transparent 20%, rgba(255, 255, 255, 0.18) 50%, transparent 80%);
    animation: sbShimmer 3.5s ease infinite; }
  .usx-services .sb-inner {
    display: flex;
    align-items: stretch;
    position: relative; }
  .usx-services .sb-text {
    flex: 1;
    padding: 26px 0;
    font-family: var(--font-d);
    font-size: clamp(16px, 2.1vw, 22px);
    font-weight: 700;
    color: #000;
    line-height: 1.2;
    letter-spacing: -0.01em; }
  .usx-services .sb-link {
    background: #000;
    padding: 26px 44px;
    display: flex;
    align-items: center;
    font-family: var(--font-d);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--cida);
    white-space: nowrap;
    transition: background 0.15s;
    flex-shrink: 0; }
  .usx-services .sb-link:hover {
    background: #111; }
  .usx-services .section-pillars {
    background: var(--bg2); }
  .usx-services .pillars-hdr {
    max-width: 700px;
    margin-bottom: 52px; }
  .usx-services .pillars-hdr h2 {
    font-size: clamp(28px, 3.5vw, 46px);
    margin-bottom: 14px; }
  .usx-services .pillars-hdr p {
    font-size: 16px;
    color: var(--muted);
    line-height: 1.75; }
  .usx-services .pillars-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px; }
  .usx-services .pillar-card {
    border-radius: 10px;
    padding: 52px 44px;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s; }
  .usx-services .pillar-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px; }
  .usx-services .pillar-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4); }
  .usx-services .pillar-soc {
    background: var(--bg3);
    border-color: rgba(68, 215, 182, 0.2); }
  .usx-services .pillar-soc::before {
    background: var(--cida); }
  .usx-services .pillar-soc:hover {
    border-color: rgba(68, 215, 182, 0.4); }
  .usx-services .pillar-compliance {
    background: var(--surface);
    border-color: rgba(79, 171, 189, 0.2); }
  .usx-services .pillar-compliance::before {
    background: var(--principle); }
  .usx-services .pillar-compliance:hover {
    border-color: rgba(79, 171, 189, 0.4); }
  .usx-services .pillar-icon {
    width: 52px;
    height: 52px;
    border-radius: 10px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px; }
  .usx-services .pillar-soc .pillar-icon {
    background: rgba(68, 215, 182, 0.1);
    border: 1px solid rgba(68, 215, 182, 0.2); }
  .usx-services .pillar-compliance .pillar-icon {
    background: rgba(79, 171, 189, 0.1);
    border: 1px solid rgba(79, 171, 189, 0.2); }
  .usx-services .pillar-label {
    font-family: var(--font-d);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: none;
    margin-bottom: 8px;
    display: block; }
  .usx-services .pillar-soc .pillar-label {
    color: var(--cida); }
  .usx-services .pillar-compliance .pillar-label {
    color: var(--principle); }
  .usx-services .pillar-card h3 {
    font-size: clamp(20px, 2.2vw, 26px);
    margin-bottom: 8px; }
  .usx-services .pillar-subhead {
    font-size: 13px;
    color: var(--muted);
    font-weight: 600;
    letter-spacing: 0.04em;
    margin-bottom: 18px; }
  .usx-services .pillar-card p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.78;
    margin-bottom: 28px; }
  .usx-services .pillar-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-d);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: gap 0.15s; }
  .usx-services .pillar-soc .pillar-cta {
    color: var(--cida); }
  .usx-services .pillar-compliance .pillar-cta {
    color: var(--principle); }
  .usx-services .pillar-cta:hover {
    gap: 14px; }
  .usx-services .section-monitoring {
    background: var(--bg2); }
  .usx-services .monitoring-intro {
    max-width: 640px;
    margin-bottom: 52px; }
  .usx-services .monitoring-intro h2 {
    font-size: clamp(28px, 3.5vw, 46px);
    margin-bottom: 16px; }
  .usx-services .monitoring-intro p {
    font-size: 16px;
    color: var(--muted);
    line-height: 1.75; }
  .usx-services .monitoring-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden; }
  .usx-services .monitoring-card {
    background: var(--bg3);
    padding: 36px 28px;
    border-top: 2px solid transparent;
    transition: background 0.2s, border-top-color 0.25s; }
  .usx-services .monitoring-card:hover {
    background: var(--surface);
    border-top-color: var(--cida); }
  .usx-services .mc-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: rgba(68, 215, 182, 0.1);
    border: 1px solid rgba(68, 215, 182, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 18px; }
  .usx-services .monitoring-card h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 10px; }
  .usx-services .monitoring-card p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.72; }
  .usx-services .section-standout {
    background: var(--bg); }
  .usx-services .standout-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center; }
  .usx-services .standout-visual {
    position: relative; }
  .usx-services .soc-img-frame {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(68, 215, 182, 0.15);
    box-shadow: 0 24px 72px rgba(0, 0, 0, 0.55); }
  .usx-services .soc-img-frame img {
    width: 100%;
    display: block; }
  .usx-services .soc-glow {
    position: absolute;
    top: -60px;
    left: -60px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(68, 215, 182, 0.07) 0%, transparent 65%);
    pointer-events: none; }
  .usx-services .standout-text h2 {
    font-size: clamp(28px, 3.5vw, 46px);
    margin-bottom: 32px; }
  .usx-services .soc-features {
    display: flex;
    flex-direction: column;
    gap: 20px; }
  .usx-services .soc-feature {
    padding: 20px 22px;
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--r);
    transition: border-color 0.2s, transform 0.18s; }
  .usx-services .soc-feature:hover {
    border-color: rgba(68, 215, 182, 0.3);
    transform: translateX(4px); }
  .usx-services .soc-feature h3 {
    font-family: var(--font-d);
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text); }
  .usx-services .soc-feature p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.72; }
  .usx-services .section-scaling {
    background: var(--bg2); }
  .usx-services .scaling-hdr {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 52px; }
  .usx-services .scaling-hdr h2 {
    font-size: clamp(28px, 3.5vw, 46px);
    margin-bottom: 14px; }
  .usx-services .scaling-hdr p {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.75; }
  .usx-services .scaling-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px; }
  .usx-services .scaling-card {
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 36px 28px;
    transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s; }
  .usx-services .scaling-card:hover {
    transform: translateY(-5px);
    border-color: rgba(68, 215, 182, 0.3);
    box-shadow: 0 16px 44px rgba(0, 0, 0, 0.4); }
  .usx-services .sc-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: rgba(68, 215, 182, 0.1);
    border: 1px solid rgba(68, 215, 182, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 18px; }
  .usx-services .scaling-card h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 10px; }
  .usx-services .scaling-card p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.72; }
  .usx-services .section-lifecycle {
    background: var(--bg); }
  .usx-services .lifecycle-hdr {
    max-width: 640px;
    margin-bottom: 56px; }
  .usx-services .lifecycle-hdr h2 {
    font-size: clamp(28px, 3.5vw, 46px);
    margin-bottom: 14px; }
  .usx-services .lifecycle-hdr p {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.75; }
  .usx-services .lifecycle-steps {
    display: flex;
    flex-direction: column;
    gap: 0; }
  .usx-services .lifecycle-step {
    display: flex;
    align-items: flex-start;
    gap: 28px;
    padding: 32px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative; }
  .usx-services .lifecycle-step:last-child {
    border-bottom: none; }
  .usx-services .step-num {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    border-radius: 50%;
    border: 1px solid rgba(68, 215, 182, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-d);
    font-size: 16px;
    font-weight: 800;
    color: var(--cida);
    background: rgba(68, 215, 182, 0.06);
    transition: border-color 0.2s, background 0.2s; }
  .usx-services .lifecycle-step:hover .step-num {
    border-color: var(--cida);
    background: rgba(68, 215, 182, 0.12); }
  .usx-services .step-connector {
    position: absolute;
    left: 25px;
    top: 84px;
    width: 2px;
    height: calc(100% - 52px);
    background: linear-gradient(to bottom, rgba(68, 215, 182, 0.3), transparent);
    pointer-events: none; }
  .usx-services .lifecycle-step:last-child .step-connector {
    display: none; }
  .usx-services .step-content {
    flex: 1;
    padding-top: 8px; }
  .usx-services .step-content h3 {
    font-family: var(--font-d);
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px; }
  .usx-services .step-content p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.75;
    max-width: 620px; }
  .usx-services .section-compare {
    background: var(--bg2); }
  .usx-services .compare-hdr {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 52px; }
  .usx-services .compare-hdr h2 {
    font-size: clamp(28px, 3.5vw, 46px);
    margin-bottom: 14px; }
  .usx-services .compare-hdr p {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.75; }
  .usx-services .compare-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px; }
  .usx-services .compare-card {
    border-radius: 10px;
    padding: 48px 40px;
    position: relative;
    overflow: hidden;
    border: 1px solid; }
  .usx-services .compare-card-usx {
    background: var(--bg3);
    border-color: rgba(68, 215, 182, 0.25);
    box-shadow: 0 0 0 1px rgba(68, 215, 182, 0.08), 0 24px 60px rgba(0, 0, 0, 0.4); }
  .usx-services .compare-card-inhouse {
    background: rgba(241, 117, 74, 0.03);
    border-color: rgba(241, 117, 74, 0.2); }
  .usx-services .compare-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px; }
  .usx-services .compare-card-usx::before {
    background: var(--cida); }
  .usx-services .compare-card-inhouse::before {
    background: var(--alert); }
  .usx-services .cc-icon-wrap {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px; }
  .usx-services .cc-icon-usx {
    background: rgba(68, 215, 182, 0.1);
    border: 1px solid rgba(68, 215, 182, 0.3); }
  .usx-services .cc-icon-inhouse {
    background: rgba(241, 117, 74, 0.1);
    border: 1px solid rgba(241, 117, 74, 0.3); }
  .usx-services .cc-tag {
    font-family: var(--font-d);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    display: inline-block;
    padding: 4px 12px;
    border-radius: 3px;
    margin-bottom: 14px; }
  .usx-services .cc-tag-success {
    background: rgba(68, 215, 182, 0.15);
    color: var(--cida); }
  .usx-services .cc-tag-warn {
    background: rgba(241, 117, 74, 0.15);
    color: var(--alert); }
  .usx-services .compare-card h2 {
    font-size: clamp(20px, 2.5vw, 28px);
    margin-bottom: 12px; }
  .usx-services .compare-card > p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.72;
    margin-bottom: 28px; }
  .usx-services .compare-list {
    display: flex;
    flex-direction: column;
    gap: 10px; }
  .usx-services .compare-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13.5px;
    color: var(--muted);
    line-height: 1.5; }
  .usx-services .ci-good {
    color: var(--cida);
    font-weight: 700;
    flex-shrink: 0; }
  .usx-services .ci-bad {
    color: var(--alert);
    font-weight: 700;
    flex-shrink: 0; }
  .usx-services .section-compliance-intro {
    background: var(--bg); }
  .usx-services .ci-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start; }
  .usx-services .ci-left h2 {
    font-size: clamp(28px, 3.5vw, 46px);
    margin-bottom: 16px; }
  .usx-services .ci-left h2 em {
    font-style: normal;
    color: var(--cida); }
  .usx-services .ci-left p {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.8; }
  .usx-services .ci-left p + p {
    margin-top: 14px; }
  .usx-services .ci-right {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding-top: 10px; }
  .usx-services .ci-stat {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 20px 22px;
    transition: border-color 0.2s, transform 0.18s; }
  .usx-services .ci-stat:hover {
    border-color: rgba(68, 215, 182, 0.3);
    transform: translateX(4px); }
  .usx-services .ci-stat strong {
    display: block;
    font-family: var(--font-d);
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px; }
  .usx-services .ci-stat span {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.6; }
  .usx-services .section-service-areas {
    background: var(--bg2); }
  .usx-services .sa-hdr {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 52px; }
  .usx-services .sa-hdr h2 {
    font-size: clamp(28px, 3.5vw, 46px);
    margin-bottom: 14px; }
  .usx-services .sa-hdr p {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.75; }
  .usx-services .sa-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px; }
  .usx-services .sa-card {
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 40px 32px;
    border-top: 2px solid transparent;
    transition: background 0.2s, border-top-color 0.25s, transform 0.2s; }
  .usx-services .sa-card:hover {
    background: var(--surface);
    border-top-color: var(--cida);
    transform: translateY(-4px); }
  .usx-services .sa-card-label {
    font-family: var(--font-d);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--principle);
    margin-bottom: 10px;
    display: block; }
  .usx-services .sa-card h3 {
    font-size: clamp(17px, 1.8vw, 21px);
    margin-bottom: 12px; }
  .usx-services .sa-card > p {
    font-size: 13.5px;
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 20px; }
  .usx-services .sa-list {
    display: flex;
    flex-direction: column;
    gap: 9px; }
  .usx-services .sa-list li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: 13px;
    color: var(--muted);
    line-height: 1.5; }
  .usx-services .sa-list li::before {
    content: "→";
    color: var(--cida);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
    font-size: 11px; }
  .usx-services .section-advantage {
    background: var(--bg); }
  .usx-services .advantage-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start; }
  .usx-services .adv-left h2 {
    font-size: clamp(26px, 3vw, 42px);
    margin-bottom: 16px; }
  .usx-services .adv-left p {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.8; }
  .usx-services .adv-points {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding-top: 8px; }
  .usx-services .adv-point {
    display: flex;
    align-items: flex-start;
    gap: 22px;
    padding: 28px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05); }
  .usx-services .adv-point:last-child {
    border-bottom: none; }
  .usx-services .adv-point-num {
    font-family: var(--font-d);
    font-size: 32px;
    font-weight: 800;
    color: rgba(68, 215, 182, 0.25);
    line-height: 1;
    flex-shrink: 0;
    min-width: 36px;
    user-select: none; }
  .usx-services .adv-point-body strong {
    display: block;
    font-family: var(--font-d);
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 6px; }
  .usx-services .adv-point-body span {
    font-size: 13.5px;
    color: var(--muted);
    line-height: 1.72; }
  .usx-services .section-engagements {
    background: var(--bg2); }
  .usx-services .eng-hdr {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 52px; }
  .usx-services .eng-hdr h2 {
    font-size: clamp(28px, 3.5vw, 46px);
    margin-bottom: 14px; }
  .usx-services .eng-hdr p {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.75; }
  .usx-services .eng-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px; }
  .usx-services .eng-card {
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 40px 32px;
    transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column; }
  .usx-services .eng-card:hover {
    border-color: rgba(68, 215, 182, 0.25);
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4); }
  .usx-services .eng-card-num {
    font-family: var(--font-d);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--principle);
    margin-bottom: 12px; }
  .usx-services .eng-card h3 {
    font-size: clamp(17px, 1.8vw, 21px);
    margin-bottom: 10px; }
  .usx-services .eng-card > p {
    font-size: 13.5px;
    color: var(--muted);
    line-height: 1.72;
    margin-bottom: 18px;
    flex: 1; }
  .usx-services .eng-best-for {
    font-size: 12px;
    color: var(--muted);
    padding: 12px 14px;
    margin-top: auto;
    background: rgba(68, 215, 182, 0.05);
    border-left: 2px solid rgba(68, 215, 182, 0.3);
    border-radius: 0 4px 4px 0;
    line-height: 1.6; }
  .usx-services .eng-best-for strong {
    color: var(--cida);
    font-weight: 600; }
  .usx-services .section-demo {
    background: var(--bg3);
    padding: 0; }
  .usx-services .demo-frame {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden; }
  .usx-services .demo-left {
    background: var(--deep);
    padding: 80px 64px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    overflow: hidden; }
  .usx-services .demo-left::before {
    content: "";
    position: absolute;
    top: -80px;
    right: -80px;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(68, 215, 182, 0.18), transparent 65%);
    pointer-events: none; }
  .usx-services .demo-headline {
    font-size: clamp(28px, 3.5vw, 48px);
    color: #000;
    line-height: 1.05; }
  .usx-services .demo-sub {
    font-size: 15px;
    color: rgba(0, 0, 0, 0.65);
    line-height: 1.75; }
  .usx-services .demo-sub strong {
    color: #000;
    font-weight: 700; }
  .usx-services .demo-sig {
    font-family: var(--font-d);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.4); }
  .usx-services .demo-right {
    padding: 72px 64px;
    display: flex;
    flex-direction: column;
    justify-content: center; }
  .usx-services .demo-right-label {
    display: block;
    font-family: var(--font-d);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--cida);
    margin-bottom: 14px; }
  .usx-services .demo-right-h {
    font-size: clamp(22px, 2.8vw, 36px);
    margin-bottom: 10px; }
  .usx-services .demo-right-sub {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 28px; }
  .usx-services .demo-form {
    display: flex;
    flex-direction: column;
    gap: 12px; }
  .usx-services .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px; }
  .usx-services .demo-form input {
    width: 100%;
    padding: 13px 16px;
    background: var(--faint);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--r);
    font-size: 14px;
    color: var(--text);
    font-family: var(--font-b);
    transition: border-color 0.2s, box-shadow 0.2s; }
  .usx-services .demo-form input::placeholder {
    color: rgba(155, 184, 204, 0.45); }
  .usx-services .demo-form input:focus {
    outline: none;
    border-color: var(--cida);
    background: rgba(68, 215, 182, 0.04);
    box-shadow: 0 0 0 3px rgba(68, 215, 182, 0.1); }
  .usx-services .demo-form .btn {
    margin-top: 4px;
    font-size: 15px;
    padding: 15px 28px; }
  .usx-services .site-footer {
    background: #000;
    border-top: 1px solid rgba(68, 215, 182, 0.07);
    padding: 64px 0 32px; }
  .usx-services .ft-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 56px;
    margin-bottom: 48px; }
  .usx-services .ft-logo {
    height: 44px;
    width: auto;
    margin-bottom: 14px; }
  .usx-services .ft-tagline {
    font-family: var(--font-d);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--cida);
    margin-bottom: 10px; }
  .usx-services .ft-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.28);
    line-height: 1.75;
    max-width: 260px; }
  .usx-services .ft-addr {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.18);
    line-height: 1.75;
    margin-top: 14px; }
  .usx-services .ft-col h4 {
    font-family: var(--font-d);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.28);
    margin-bottom: 18px; }
  .usx-services .ft-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px; }
  .usx-services .ft-col a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.38);
    transition: color 0.15s; }
  .usx-services .ft-col a:hover {
    color: var(--cida); }
  .usx-services .ft-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px; }
  .usx-services .ft-bottom p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.18); }
  .usx-services .ft-awards {
    display: flex;
    gap: 12px;
    align-items: center; }
  .usx-services .ft-awards img {
    height: 56px;
    width: auto;
    object-fit: contain;
    opacity: 0.9;
    filter: none;
    transition: opacity 0.2s; }
  .usx-services .ft-awards img:hover {
    opacity: 1; }
  @media (max-width: 1024px) {
    .usx-services {
      /* New sections */ }
      .usx-services :root {
        --nav-h: 64px; }
      .usx-services section {
        padding: 88px 0; }
      .usx-services .container {
        padding: 0 28px; }
      .usx-services .nav-links {
        display: none; }
      .usx-services .nav-right {
        display: none; }
      .usx-services .nav-toggle {
        display: flex;
        margin-left: auto; }
      .usx-services .hero-body {
        grid-template-columns: 1fr;
        gap: 48px;
        padding-top: calc(var(--nav-h) + 64px);
        padding-bottom: 40px;
        text-align: center; }
      .usx-services .hero-visual {
        order: -1; }
      .usx-services .hero-ctas {
        justify-content: center; }
      .usx-services .hero-lede {
        max-width: 100%;
        margin-inline: auto; }
      .usx-services .float-badge {
        display: none; }
      .usx-services .monitoring-grid {
        grid-template-columns: repeat(2, 1fr); }
      .usx-services .standout-split {
        grid-template-columns: 1fr;
        gap: 48px; }
      .usx-services .scaling-grid {
        grid-template-columns: repeat(2, 1fr); }
      .usx-services .compare-grid {
        grid-template-columns: 1fr; }
      .usx-services .demo-frame {
        grid-template-columns: 1fr; }
      .usx-services .demo-left {
        padding: 56px 40px; }
      .usx-services .demo-right {
        padding: 56px 40px; }
      .usx-services .ft-top {
        grid-template-columns: 1fr 1fr;
        gap: 40px; }
      .usx-services .pillars-grid {
        grid-template-columns: 1fr; }
      .usx-services .ci-split {
        grid-template-columns: 1fr;
        gap: 48px; }
      .usx-services .sa-grid {
        grid-template-columns: 1fr; }
      .usx-services .advantage-split {
        grid-template-columns: 1fr;
        gap: 48px; }
      .usx-services .eng-grid {
        grid-template-columns: 1fr; } }
  .usx-services .nav-links.open {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(7, 8, 11, 0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 36px 36px;
    gap: 0;
    z-index: 9999;
    overflow-y: auto; }
  .usx-services .nav-links.open li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06); }
  .usx-services .nav-links.open a {
    display: block;
    padding: 18px 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text);
    letter-spacing: -0.01em; }
  .usx-services .nav-links.open a:hover {
    color: var(--cida); }
  .usx-services .nav-links.open .nav-mobile-cta {
    display: block;
    border-bottom: none;
    padding-top: 28px; }
  .usx-services .nav-links.open .nav-mobile-cta .btn {
    width: 100%;
    justify-content: center;
    font-size: 15px;
    padding: 15px 28px; }
  @media (max-width: 640px) {
    .usx-services .container {
      padding: 0 20px; }
    .usx-services section {
      padding: 72px 0; }
    .usx-services .hero-text h1 {
      font-size: clamp(36px, 10vw, 54px); }
    .usx-services .hero-ctas {
      flex-direction: column;
      align-items: center; }
    .usx-services .hero-ctas .btn {
      width: 100%;
      justify-content: center; }
    .usx-services .monitoring-grid {
      grid-template-columns: 1fr; }
    .usx-services .scaling-grid {
      grid-template-columns: 1fr; }
    .usx-services .lifecycle-step {
      flex-direction: column;
      gap: 16px; }
    .usx-services .step-connector {
      display: none; }
    .usx-services .form-row {
      grid-template-columns: 1fr; }
    .usx-services .ft-top {
      grid-template-columns: 1fr; }
    .usx-services .demo-left {
      padding: 44px 24px; }
    .usx-services .demo-right {
      padding: 44px 24px; }
    .usx-services .sb-link {
      display: none; } }
  @media (max-width: 400px) {
    .usx-services :root {
      --nav-h: 60px; }
    .usx-services .nav-logo img {
      height: 34px; } }

.usx-single {
  padding-bottom: 80px; }
  .usx-single .single-hero {
    padding: 60px 0 30px; }
  .usx-single .single-title {
    font-size: 42px;
    margin-top: 15px; }
  .usx-single .single-meta {
    display: flex;
    gap: 15px;
    align-items: center; }
  .usx-single .single-image img {
    width: 100%;
    border-radius: 12px;
    margin: 30px 0; }
  .usx-single .single-content {
    max-width: 800px;
    margin: auto;
    line-height: 1.8;
    font-size: 18px; }
  .usx-single .content-inner p {
    margin-bottom: 20px; }
  .usx-single .back-link {
    display: inline-block;
    margin-top: 40px;
    text-decoration: none; }
