/* ================================================================
   USX CYBER — PARTNER PROGRAM PAGE
   Dynamic Defense | Channel & Partner Program
   ================================================================ */

/* ── Design Tokens ─────────────────────────────────────────────── */
: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);
}

/* ── 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;
  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;
}

/* ── 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;
  font-size: 16px;
  padding: 16px 36px;
}
.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-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;
}
.btn-outline-sm:hover {
  border-color: var(--cida);
  color: var(--cida);
}
.btn-block {
  width: 100%;
  justify-content: center;
}
.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;
}
.btn-teal-sm:hover {
  gap: 12px;
}

/* ── 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;
}
[data-reveal-stagger] > * {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.55s var(--ease),
    transform 0.55s var(--ease);
}
[data-reveal-stagger].revealed > *:nth-child(1) {
  transition-delay: 0s;
  opacity: 1;
  transform: none;
}
[data-reveal-stagger].revealed > *:nth-child(2) {
  transition-delay: 0.1s;
  opacity: 1;
  transform: none;
}
[data-reveal-stagger].revealed > *:nth-child(3) {
  transition-delay: 0.2s;
  opacity: 1;
  transform: none;
}
[data-reveal-stagger].revealed > *:nth-child(4) {
  transition-delay: 0.3s;
  opacity: 1;
  transform: none;
}
[data-reveal-stagger].revealed > *:nth-child(5) {
  transition-delay: 0.4s;
  opacity: 1;
  transform: none;
}
[data-reveal-stagger].revealed > *:nth-child(6) {
  transition-delay: 0.5s;
  opacity: 1;
  transform: none;
}

/* ================================================================
   ANIMATIONS
   ================================================================ */
@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);
  }
}

/* ================================================================
   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-links a.active {
  color: var(--cida);
}
.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;
}
.nav-cta:hover {
  background: #5cbece;
  box-shadow: 0 0 20px rgba(79, 171, 189, 0.35);
}
.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;
}
.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: 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;
}
.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) + 88px);
  padding-bottom: 60px;
}
.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(38px, 5.2vw, 70px);
  letter-spacing: -0.03em;
  line-height: 1.02;
  margin-bottom: 28px;
  animation: fadeUp 0.55s ease both 0.15s;
}
.h1-white {
  display: block;
  color: var(--text);
}
.h1-cida {
  display: block;
  color: var(--cida);
}
.h1-blue {
  display: block;
  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;
  animation: fadeUp 0.5s ease both 0.35s;
}
.hero-visual {
  position: relative;
  animation: fadeLeft 0.65s ease both 0.2s;
}

/* Partner hero visual — path selector panel */
.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);
}
.php-header {
  padding: 18px 24px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 12px;
}
.php-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cida);
}
.php-title {
  font-family: var(--font-d);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--muted);
}
.php-body {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.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;
}
.php-path-reseller {
  border-left-color: var(--cida);
}
.php-path-referral {
  border-left-color: var(--principle);
}
.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;
}
.php-path-reseller .php-path-label {
  color: var(--cida);
}
.php-path-referral .php-path-label {
  color: var(--principle);
}
.php-path-name {
  font-family: var(--font-d);
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.php-path-desc {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
}
.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;
}
.php-divider::before,
.php-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.07);
}

/* Float badges */
.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;
}

/* ================================================================
   SECTION — SHARED
   ================================================================ */
section {
  padding: 108px 0;
}
.sec-intro {
  max-width: 680px;
  margin-bottom: 56px;
}
.sec-intro.center {
  margin-inline: auto;
  text-align: center;
}
.sec-intro h2 {
  font-size: clamp(28px, 3.5vw, 50px);
  margin-bottom: 16px;
}
.sec-intro p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.75;
}

/* ================================================================
   STATEMENT BAR
   ================================================================ */
.statement-bar {
  background: var(--cida);
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.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;
}
.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;
}

/* ================================================================
   WHO THIS IS FOR
   ================================================================ */
.section-for {
  background: var(--bg2);
}

.for-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.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;
}
.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);
}
.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;
}
.for-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
}
.for-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
}

/* ================================================================
   TWO PARTNERSHIP PATHS
   ================================================================ */
.section-paths {
  background: var(--bg);
}

.paths-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.path-card {
  border-radius: 10px;
  padding: 52px 44px;
  border: 1px solid;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.path-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.5);
}
.path-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
}
.path-reseller {
  background: var(--bg2);
  border-color: rgba(68, 215, 182, 0.2);
}
.path-reseller::before {
  background: var(--cida);
}
.path-reseller:hover {
  border-color: rgba(68, 215, 182, 0.4);
}
.path-referral {
  background: var(--surface);
  border-color: rgba(79, 171, 189, 0.2);
}
.path-referral::before {
  background: var(--principle);
}
.path-referral:hover {
  border-color: rgba(79, 171, 189, 0.4);
}

.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;
}
.path-reseller .path-label {
  color: var(--cida);
}
.path-referral .path-label {
  color: var(--principle);
}

.path-card h3 {
  font-size: clamp(22px, 2.4vw, 30px);
  margin-bottom: 6px;
}
.path-tagline {
  font-family: var(--font-d);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
  opacity: 0.6;
}
.path-reseller .path-tagline {
  color: var(--cida);
}
.path-referral .path-tagline {
  color: var(--principle);
}

.path-card > p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.78;
  margin-bottom: 28px;
}

.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;
}
.path-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}
.path-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
}
.path-check {
  flex-shrink: 0;
  font-weight: 700;
}
.path-reseller .path-check {
  color: var(--cida);
}
.path-referral .path-check {
  color: var(--principle);
}

.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;
}
.path-referral .path-best-for {
  background: rgba(79, 171, 189, 0.05);
  border-left-color: rgba(79, 171, 189, 0.25);
}
.path-best-for strong {
  color: var(--cida);
  font-weight: 600;
}
.path-referral .path-best-for strong {
  color: var(--principle);
}

.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;
}
.path-reseller .path-cta {
  color: var(--cida);
}
.path-referral .path-cta {
  color: var(--principle);
}
.path-cta:hover {
  gap: 14px;
}

/* ================================================================
   WHY PARTNER
   ================================================================ */
.section-why {
  background: var(--bg2);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.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;
}
.why-card:hover {
  background: var(--surface);
  border-top-color: var(--cida);
  transform: translateY(-4px);
}
.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;
}
.why-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}
.why-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.72;
}

/* ================================================================
   HOW IT WORKS — dual track
   ================================================================ */
.section-how {
  background: var(--bg);
}

.how-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.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;
}
.how-track-reseller {
  background: rgba(68, 215, 182, 0.12);
  color: var(--cida);
}
.how-track-referral {
  background: rgba(79, 171, 189, 0.12);
  color: var(--principle);
}

.how-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.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;
}
.how-step:last-child {
  border-bottom: none;
}
.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;
}
.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);
}
.how-track-col-reseller .how-step:hover .how-step-num {
  background: rgba(68, 215, 182, 0.14);
  border-color: var(--cida);
}
.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);
}
.how-track-col-referral .how-step:hover .how-step-num {
  background: rgba(79, 171, 189, 0.14);
  border-color: var(--principle);
}
.how-step-body {
  flex: 1;
  padding-top: 6px;
}
.how-step-body h4 {
  font-family: var(--font-d);
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.how-step-body p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.72;
}

.how-step-connector {
  position: absolute;
  left: 21px;
  top: 72px;
  width: 2px;
  height: calc(100% - 44px);
  pointer-events: none;
}
.how-track-col-reseller .how-step-connector {
  background: linear-gradient(to bottom, rgba(68, 215, 182, 0.25), transparent);
}
.how-track-col-referral .how-step-connector {
  background: linear-gradient(to bottom, rgba(79, 171, 189, 0.25), transparent);
}
.how-step:last-child .how-step-connector {
  display: none;
}

/* ================================================================
   FEATURED DISTRIBUTION PARTNER — CARAHSOFT
   ================================================================ */
.section-featured {
  background: var(--bg);
}

.featured-card {
  display: grid;
  grid-template-columns: minmax(280px, 360px) 1fr;
  gap: 0;
  align-items: stretch;
  background: linear-gradient(135deg, var(--bg2) 0%, var(--bg3) 100%);
  border: 1px solid var(--border);
  border-radius: 12px;
  border-left: 3px solid var(--cida);
  overflow: hidden;
  cursor: pointer;
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    border-color 0.2s;
}
.featured-card:hover {
  transform: translateY(-4px);
  border-color: rgba(68, 215, 182, 0.32);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(68, 215, 182, 0.08);
}

.featured-card-left {
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  background: rgba(68, 215, 182, 0.03);
  border-right: 1px solid var(--border);
}
.featured-card-label {
  font-family: var(--font-d);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cida);
}
.featured-logo {
  display: flex;
  align-items: center;
  min-height: 56px;
}
.featured-logo img {
  max-height: 52px;
  max-width: 220px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.featured-logo-fallback {
  display: none;
  font-family: var(--font-d);
  font-size: 36px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
  background: linear-gradient(120deg, #fff, var(--cida));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.featured-tagline {
  font-family: var(--font-d);
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.01em;
}

.featured-card-right {
  padding: 44px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}
.featured-card-right p {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.78;
}
.featured-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-d);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cida);
  transition: gap 0.15s;
}
.featured-card:hover .featured-cta {
  gap: 14px;
}

/* ================================================================
   PREFERRED PARTNERS
   ================================================================ */
.section-preferred {
  background: var(--bg2);
}

.preferred-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
}
.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;
}
.preferred-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}
.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;
}
.preferred-card h3 {
  font-size: clamp(18px, 2vw, 24px);
  margin-bottom: 14px;
}
.preferred-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.78;
  margin-bottom: 28px;
}

.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;
}
.preferred-callout strong {
  color: var(--cida);
  font-weight: 600;
  font-style: normal;
}

/* ================================================================
   SOCIAL PROOF
   ================================================================ */
.section-proof {
  background: var(--bg);
}

.proof-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.proof-quote-wrap {
  position: relative;
  padding: 48px 44px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 10px;
}
.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;
}
.proof-quote-mark {
  display: none;
}
.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;
}
.proof-attr {
  font-size: 13px;
  color: var(--muted);
}
.proof-attr strong {
  color: var(--cida);
  font-weight: 600;
}

.proof-stats {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.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;
}
.proof-stat:hover {
  transform: translateX(4px);
  border-left-color: var(--cida);
}
.proof-stat-num {
  font-family: var(--font-d);
  font-size: 36px;
  font-weight: 800;
  color: var(--cida);
  line-height: 1;
  margin-bottom: 4px;
}
.proof-stat-label {
  font-size: 13px;
  color: var(--muted);
}

/* ================================================================
   APPLICATION / CONTACT CTA
   ================================================================ */
.section-apply {
  background: var(--bg3);
  padding: 0;
}
.apply-frame {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.apply-left {
  background: var(--deep);
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  overflow: hidden;
}
.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;
}
.apply-headline {
  font-size: clamp(28px, 3.5vw, 48px);
  color: #000;
  line-height: 1.05;
}
.apply-sub {
  font-size: 15px;
  color: rgba(0, 0, 0, 0.65);
  line-height: 1.75;
}
.apply-sub strong {
  color: #000;
  font-weight: 700;
}
.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);
}

.apply-right {
  padding: 72px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.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;
}
.apply-right-h {
  font-size: clamp(22px, 2.8vw, 34px);
  margin-bottom: 10px;
}
.apply-right-sub {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 28px;
}
.apply-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.apply-form input,
.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;
}
.apply-form input::placeholder {
  color: rgba(155, 184, 204, 0.45);
}
.apply-form select {
  color: rgba(155, 184, 204, 0.65);
  cursor: pointer;
}
.apply-form select option {
  background: var(--bg3);
  color: var(--text);
}
.apply-form input:focus,
.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);
}
.apply-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.55);
  line-height: 1.75;
  max-width: 260px;
}
.ft-addr {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  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.65);
  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.55);
}
.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-links {
    display: none;
  }
  .nav-right {
    display: none;
  }
  .nav-toggle {
    display: flex;
    margin-left: auto;
  }

  .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;
  }
  .hero-ctas {
    justify-content: center;
  }
  .hero-lede {
    max-width: 100%;
    margin-inline: auto;
  }
  .float-badge {
    display: none;
  }

  .for-grid {
    grid-template-columns: 1fr;
  }
  .paths-grid {
    grid-template-columns: 1fr;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .how-grid {
    grid-template-columns: 1fr;
  }
  .featured-card {
    grid-template-columns: 1fr;
  }
  .featured-card-left {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 36px 32px;
  }
  .featured-card-right {
    padding: 36px 32px;
  }
  .preferred-split {
    grid-template-columns: 1fr;
  }
  .proof-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .apply-frame {
    grid-template-columns: 1fr;
  }
  .apply-left {
    padding: 56px 40px;
  }
  .apply-right {
    padding: 56px 40px;
  }
  .ft-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

/* 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-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;
  }

  .hero-text h1 {
    font-size: clamp(34px, 10vw, 52px);
  }
  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }
  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
  .ft-top {
    grid-template-columns: 1fr;
  }
  .apply-left {
    padding: 44px 24px;
  }
  .apply-right {
    padding: 44px 24px;
  }
  .sb-link {
    display: none;
  }
}

@media (max-width: 400px) {
  :root {
    --nav-h: 60px;
  }
  .nav-logo img {
    height: 34px;
  }
}
