/* ══════════ TOKENS ══════════ */
:root {
  --bg-white: #ffffff;
  --bg-light: #f6f8fc;
  --bg-lighter: #fff8f3;
  --bg-dark: #0f1123;
  --bg-dark2: #181b30;
  --bg-dark3: #0a0d1a;
  --orange: #f97316;
  --orange-dark: #ea6508;
  --orange-deeper: #c85205;
  --orange-light: rgba(249, 115, 22, 0.1);
  --orange-mid: rgba(249, 115, 22, 0.18);
  --orange-glow: rgba(249, 115, 22, 0.28);
  --green: #09c269;
  --green-dark: #07a459;
  --green-light: rgba(9, 194, 105, 0.1);
  --purple: #7c5cfc;
  --purple-light: rgba(124, 92, 252, 0.1);
  --purple-mid: rgba(124, 92, 252, 0.22);
  --blue: #3b82f6;
  --blue-light: rgba(59, 130, 246, 0.1);
  --amber: #fbbf24;
  --amber-light: rgba(251, 191, 36, 0.14);
  --text-dark: #0f1123;
  --text-body: #2a2b3d;
  --text-muted: #525469;
  --text-faint: #8a8da6;
  --border: #e4e7f2;
  --border-dark: #d1d5e8;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow-sm: 0 2px 12px rgba(15, 17, 35, 0.06);
  --shadow-md: 0 8px 32px rgba(15, 17, 35, 0.1);
  --shadow-lg: 0 24px 64px rgba(15, 17, 35, 0.16);
  --shadow-orange: 0 8px 32px rgba(249, 115, 22, 0.22);
  --font-head: "Bricolage Grotesque", sans-serif;
  --font-body: "Plus Jakarta Sans", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  /* font-family: var(--font-body); */
  background: var(--bg-white);
  color: var(--text-body);
  overflow-x: hidden;
  line-height: 1.65;
}

/* ══════════ NAV ══════════ */
/* nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 70px;
  background: rgba(255, 255, 255, 0.93);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.nav-logo {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--text-dark);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.nav-logo span {
  color: var(--green);
}

.nav-edge-badge {
  background: var(--orange-light);
  border: 1px solid rgba(249, 115, 22, 0.25);
  color: var(--orange-dark);
  border-radius: 6px;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 0.18rem 0.55rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-left: 6px;
  vertical-align: middle;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-body);
  text-decoration: none;
  transition: color 0.2s;
}

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

.nav-ctas {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}
 */
.btn-ghost {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-dark);
  background: none;
  border: 1.5px solid var(--border-dark);
  border-radius: 8px;
  padding: 0.5rem 1.2rem;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  white-space: nowrap;
}

.btn-ghost:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.btn-primary {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
  background: var(--orange);
  border: none;
  border-radius: 8px;
  padding: 0.55rem 1.35rem;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-orange);
}

.btn-lg {
  padding: 0.9rem 2.1rem;
  font-size: 1rem;
  border-radius: 10px;
}

.btn-outline-orange {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--orange);
  background: transparent;
  border: 1.5px solid var(--orange);
  border-radius: 10px;
  padding: 0.85rem 2rem;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-block;
}

.btn-outline-orange:hover {
  background: var(--orange-light);
}

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

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

/* ══════════ SHARED ══════════ */
.max-w {
  max-width: 1200px;
  margin: 0 auto;
}

.eyebrow {
  display: inline-block;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}

.sec-title {
  font-weight: 700 !important;
  color: var(--text-dark);
  margin-bottom: 1.1rem;
}

.sec-sub {
  /* font-size: 1rem;
    color: var(--text-muted); */
  font-weight: 400;
  max-width: 520px;
  /* line-height: 1.75; */
}

.ctr {
  text-align: center;
}

.ctr .sec-sub {
  margin: 0 auto;
}

/* ══════════ HERO ══════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 5% 80px;
  background: var(--bg-white);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

/* Animated grid */
.hero-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(249, 115, 22, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(249, 115, 22, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(
    ellipse 80% 80% at 50% 50%,
    black 30%,
    transparent 80%
  );
}

/* Scanning line */
.hero-scan {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(249, 115, 22, 0.5) 50%,
    transparent 100%
  );
  animation: scanLine 4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes scanLine {
  0% {
    top: -2px;
    opacity: 0;
  }

  5% {
    opacity: 1;
  }

  95% {
    opacity: 1;
  }

  100% {
    top: 100%;
    opacity: 0;
  }
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(90px);
}

.hero-orb-1 {
  width: 700px;
  height: 700px;
  top: -200px;
  left: 50%;
  /* transform: translateX(-50%);
    background: radial-gradient(circle, rgba(249, 115, 22, 0.14) 0%, transparent 65%);
    opacity: .8; */
}

.hero-orb-2 {
  width: 400px;
  height: 400px;
  bottom: -100px;
  right: -80px;
  background: radial-gradient(
    circle,
    rgba(124, 92, 252, 0.1) 0%,
    transparent 65%
  );
  opacity: 0.6;
}

.hero-orb-3 {
  width: 300px;
  height: 300px;
  top: 30%;
  left: -80px;
  background: radial-gradient(
    circle,
    rgba(251, 191, 36, 0.08) 0%,
    transparent 65%
  );
  opacity: 0.6;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.hero-eyebrow-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
  animation: fadeUp 0.55s ease both;
}

.hero-eyebrow-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(22, 152, 249, 0.1);
  border: 1px solid #3a59ec42;
  border-radius: 100px;
  padding: 0.4rem 1.1rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: #3a59ec;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  animation: pulseTag 3s ease-in-out infinite;
}

@keyframes pulseTag {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(58, 89, 236, 0);
  }

  50% {
    box-shadow: 0 0 0 8px rgba(58, 89, 236, 0.08);
  }
}

.hero-eyebrow-tag .pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #3a59ec;
  animation: blink 1.8s ease-in-out infinite;
}

/* .hero h1 {
    font-family: var(--font-head);
    font-size: clamp(2.8rem, 6vw, 5.2rem);
    font-weight: 800;
    line-height: 1.04;
    letter-spacing: -0.038em;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    animation: fadeUp 0.55s 0.1s ease both;
}

.hero h1 em {
    font-style: normal;
    background: linear-gradient(135deg, var(--orange) 0%, #FB923C 45%, #FDBA74 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
} */

/* .hero p {
    font-size: clamp(1rem, 1.6vw, 1.2rem);
    color: var(--text-muted);
    max-width: 580px;
    margin: 0 auto 2.5rem;
    font-weight: 300;
    line-height: 1.8;
    animation: fadeUp 0.55s 0.2s ease both;
} */

.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 0.55s 0.3s ease both;
}

/* Hero stat strip */
.hero-stats {
  display: flex;
  gap: 0;
  justify-content: center;
  margin-top: 5rem;
  border: 1.5px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  background: var(--bg-light);
  animation: fadeUp 0.55s 0.4s ease both;
}

.hero-stat {
  flex: 1;
  padding: 1.5rem 2rem;
  text-align: center;
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--border);
}

.hero-stat:last-child {
  border-right: none;
}

.hero-stat-num {
  /* font-family: var(--font-head); */
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 0.25rem;
  background: linear-gradient(135deg, #000000, #000000);

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-stat-label {
  /* font-size: 0.72rem; */
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0;
}

/* Scroll hint */
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
}

.hero-scroll span {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--text-faint);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(249, 115, 22, 0.5), transparent);
  animation: scrollGrow 2s ease-in-out infinite;
}

@keyframes scrollGrow {
  0%,
  100% {
    height: 20px;
    opacity: 0.4;
  }

  50% {
    height: 40px;
    opacity: 1;
  }
}

/* ══════════ PROBLEM / VISIBILITY GAP ══════════ */
.gap-sec {
  background: var(--bg-white);
  padding: 100px 5%;
}

.gap-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.gap-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

/* Left text */

.gap-left .sec-title {
  color: var(--text-dark);
}

.gap-left .sec-title em {
  font-style: normal;
  color: #000;
}

.gap-points {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.gap-point {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.1rem 1.25rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  transition:
    border-color 0.5s,
    transform 0.5s !important;
}

.gap-point:hover {
  border-color: #0846c6;
  transform: translateX(5px);
}

.gp-ico {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--bg-light);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.gp-text h5 {
  font-weight: 600 !important;
  color: var(--text-dark);
  margin-bottom: 0.2rem;
}

/* Right: animated dashboard mockup */
.gap-mockup {
  position: relative;
}

.mockup-shell {
  background: var(--bg-dark);
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.07);
  position: relative;
  overflow: hidden;
}

.mockup-shell::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(249, 115, 22, 0.12) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.mockup-topbar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.mb-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.mb-dot-r {
  background: #0846c6;
}

.mb-dot-y {
  background: #f7c131;
}

.mb-dot-g {
  background: #007d68;
}

.mockup-title {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.35);
  margin-left: auto;
}

/* Mock metric row */
.mock-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.mock-metric {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  padding: 0.9rem;
}

.mock-metric-label {
  font-size: 0.62rem;
  color: rgba(255, 255, 255, 0.38);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.35rem;
}

.mock-metric-val {
  font-weight: 800;
  line-height: 1;
}

.mmv-o {
  color: #f7c131;
}

.mmv-g {
  color: #007d68;
}

.mmv-b {
  color: #0846c6;
}

.mock-metric-delta {
  font-size: 0.65rem;
  font-weight: 600;
  margin-top: 0.3rem;
}

.delta-up {
  color: var(--green);
}

.delta-dn {
  color: #f87171;
}

/* Mock bar chart */
.mock-chart {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 1rem;
  margin-bottom: 1rem;
}

.mock-chart-label {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.3);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
}

.mock-bars {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 60px;
}

.mock-bar {
  flex: 1;
  border-radius: 4px 4px 0 0;
  transition: height 1.5s ease;
  position: relative;
}

.mock-bar.active-bar {
  animation: barPulse 2s ease-in-out infinite;
}

@keyframes barPulse {
  0%,
  100% {
    filter: brightness(1);
  }

  50% {
    filter: brightness(1.3);
  }
}

/* Mock list */
.mock-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mock-list-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 8px;
  padding: 0.65rem 0.85rem;
}

.mli-avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), #fdba74);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}

.mli-name {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  flex: 1;
}

.mli-bar-wrap {
  width: 80px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 4px;
  height: 5px;
  overflow: hidden;
}

.mli-bar-fill {
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--orange), #fdba74);
}

.mli-pct {
  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  min-width: 30px;
  text-align: right;
}

/* Floating badge on mockup */
.mock-float-badge {
  position: absolute;
  bottom: -18px;
  right: 24px;
  background: #fff;
  border-radius: 12px;
  padding: 0.75rem 1.1rem;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  z-index: 5;
}

.mfb-ico {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: var(--orange-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.mfb-text {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.3;
}

.mfb-sub {
  font-size: 0.65rem;
  color: var(--text-muted);
}

/* ══════════ FEATURES — STICKY SCROLL ══════════ */
.feat-scene {
  display: block !important;
  position: relative;
  /* height: 500vh; */
}

.feat-sticky {
  position: re;
  top: 0;
  /* height: 100vh; */
  /* overflow: clip; */
  background: var(--bg-white);
}

.feat-top-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 70px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 5;
  display: flex;
  align-items: center;
  padding: 0 5%;
  gap: 1rem;
}

.feat-top-bar .eyebrow {
  margin: 0;
}

.feat-top-bar .sec-title {
  margin: 0;
  font-size: 1rem;
  color: var(--text-dark);
}

/* Progress bar */
.feat-progress-track {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  background: var(--border);
  width: 100%;
  z-index: 5;
}

.feat-progress-fill {
  height: 100%;
  background: #3a59ec;
  width: 0%;
  transition: width 0.1s linear;
}

/* Main layout */
.feat-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
}

/* Left nav */
.feat-nav {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 2rem 40px 0;
  border-right: 1px solid var(--border);
  gap: 0;
}

.feat-nav-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.2rem 1rem;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.2s;
  position: relative;
}

.feat-nav-item.active {
  background: rgb(22 152 249 / 10%);
}

.feat-nav-bar {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  border-radius: 3px;
  height: 0;
  background: #246bfd;
  transition: height 0.4s ease;
}

.feat-nav-item.active .feat-nav-bar {
  height: 70%;
}

.feat-nav-num {
  /* font-family: var(--font-head); */
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--text-faint);
  min-width: 26px;
  padding-top: 2px;
  transition: color 0.2s;
  flex-shrink: 0;
}

.feat-nav-item.active .feat-nav-num {
  color: #246bfd;
}

.feat-nav-title {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color 0.2s;
  line-height: 1.35;
}

.feat-nav-item.active .feat-nav-title {
  color: var(--text-dark);
}

.feat-nav-tagline {
  font-size: 0.75rem;
  color: var(--text-faint);
  margin-top: 0.2rem;
  display: none;
  line-height: 1.5;
}

.feat-nav-item.active .feat-nav-tagline {
  display: block;
  color: var(--text-muted);
}

/* Right panels */
.feat-panels {
  position: relative;
  padding: 80px 0 40px 3.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.feat-panel {
  position: absolute;
  top: calc(50% + 30px);
  transform: translateY(-50%) translateX(40px);
  width: 100%;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.45s ease,
    transform 0.45s ease;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.feat-panel.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(-50%) translateX(0);
}

.feat-panel-text {
}

.feat-panel-tag {
  display: inline-flex;
  align-items: center;
  border-radius: 100px;
  padding: 0.3rem 0.85rem;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  background: #246bfd21;
  color: #246bfd;
  border: 1px solid #246bfd33;
}

.feat-panel h3 {
  /* font-family: var(--font-head);
    font-size: 1.55rem; */
  font-weight: 700;
  /* color: var(--text-dark); */
  margin-bottom: 0.75rem;
  /* letter-spacing: -0.02em;
    line-height: 1.15; */
}

.feat-panel > div > p {
  /* font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.8; */
  margin-bottom: 1.5rem;
}

.feat-bullets {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.feat-bullet {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  /* font-size: 0.85rem;
    color: var(--text-body); */
  font-weight: 500;
}

.feat-bullet::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #000;
  flex-shrink: 0;
}

/* Right: product screenshot mock */
.feat-screen {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.07);
  position: relative;
}

.feat-screen-bar {
  background: rgba(255, 255, 255, 0.06);
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.fsb-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.fsb-dot-r {
  background: #0846c6;
}

.fsb-dot-y {
  background: #f7c131;
}

.fsb-dot-g {
  background: #007d68;
}

.fsb-title {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.3);
  font-weight: 600;
  margin-left: auto;
}

.feat-screen-body {
  padding: 1.25rem;
}

/* Incentive screen */
.incent-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.incent-name {
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
}

.incent-period {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.06);
  padding: 0.2rem 0.6rem;
  border-radius: 5px;
}

.incent-slab {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  padding: 1rem;
  margin-bottom: 0.75rem;
}

.slab-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.6rem;
}

.slab-label {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 600;
}

.slab-val {
  /* font-family: var(--font-head); */
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--orange);
}

.slab-track {
  background: rgba(255, 255, 255, 0.07);
  border-radius: 4px;
  height: 6px;
  overflow: hidden;
  margin-bottom: 0.5rem;
}

.slab-fill {
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--orange), #fdba74);
}

.slab-hint {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.38);
}

.slab-hint span {
  color: var(--green);
}

.incent-breakdown {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.ib-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  padding: 0.75rem;
}

.ib-card-label {
  font-size: 0.62rem;
  color: rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.25rem;
}

.ib-card-val {
  font-size: 1rem;
  font-weight: 800;
  /* font-family: var(--font-head); */
}

/* Challenge screen */
.challenge-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.challenge-item {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 10px;
  padding: 0.85rem 1rem;
  border-left: 3px solid transparent;
  transition: border-color 0.2s;
}

.ci-urgent {
  border-left-color: #f87171;
}

.ci-normal {
  border-left-color: var(--amber);
}

.ci-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.3rem;
}

.ci-title {
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
}

.ci-badge {
  font-size: 0.6rem;
  font-weight: 800;
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.ci-badge-r {
  background: rgba(248, 113, 113, 0.18);
  color: #f87171;
}

.ci-badge-y {
  background: rgba(251, 191, 36, 0.18);
  color: var(--amber);
}

.ci-meta {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.3);
}

/* Recommendations screen */
.reco-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.reco-item {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 10px;
  padding: 0.9rem;
}

.reco-rank {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: #3a59ec40;
  display: flex;
  align-items: center;
  justify-content: center;
  /* font-family: var(--font-head); */
  font-size: 0.68rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.8);
  flex-shrink: 0;
}

.reco-body h5 {
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.2rem;
}

.reco-body p {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.38);
  line-height: 1.5;
}

/* Dashboard screen */
.dash-kpi-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
  margin-bottom: 0.75rem;
}

.dash-kpi {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 0.75rem;
  text-align: center;
}

.dk-val {
  /* font-family: var(--font-head); */
  font-size: 1.1rem;
  font-weight: 800;
}

.dk-val-o {
  color: rgb(247, 193, 49);
}

.dk-val-g {
  color: #007d68;
}

.dk-val-b {
  color: #0846c6;
}

.dk-label {
  font-size: 0.62rem;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 0.2rem;
}

.dash-map {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  height: 90px;
  position: relative;
  overflow: hidden;
  margin-bottom: 0.75rem;
}

.map-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  animation: mapPulse 2s ease-in-out infinite;
}

@keyframes mapPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 currentColor;
  }

  50% {
    box-shadow: 0 0 0 6px transparent;
  }
}

/* Outcome screen */
.outcome-ring {
  text-align: center;
  margin: 0.5rem 0 1rem;
}

.outcome-circle {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 3px solid var(--orange);
  background: rgba(249, 115, 22, 0.08);
  box-shadow: 0 0 30px rgba(249, 115, 22, 0.2);
}

.oc-val {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--orange);
}

.oc-label {
  font-size: 0.58rem;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.outcome-bars {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.ob-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.ob-label {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.4);
  min-width: 80px;
}

.ob-track {
  flex: 1;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  height: 5px;
  overflow: hidden;
}

.ob-fill {
  height: 100%;
  border-radius: 4px;
}

/* ══════════ ROLES — WHO IT'S FOR ══════════ */
.roles-sec {
  background: var(--bg-light);
  padding: 80px 5%;
}

.roles-sec .eyebrow {
  color: var(--orange-dark, #ea6508);
}

.roles-sec .sec-title {
  color: var(--text-dark);
}

.roles-sec .sec-sub {
  color: var(--text-muted);
}

.roles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 3.5rem;
}

.role-card {
  background: var(--bg-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 1.3rem;
  transition:
    border-color 0.3s,
    background 0.3s,
    transform 0.3s !important;
  position: relative;
  overflow: hidden;
  cursor: default;
}

/* .role-card::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s;
} */

.role-card:hover {
  border-color: rgb(10 4 255 / 44%);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.role-card:hover::before {
  opacity: 1;
}

.rc-0::before {
  background: radial-gradient(
    circle,
    rgba(249, 115, 22, 0.1) 0%,
    transparent 70%
  );
}

.rc-1::before {
  background: radial-gradient(
    circle,
    rgba(124, 92, 252, 0.08) 0%,
    transparent 70%
  );
}

.rc-2::before {
  background: radial-gradient(
    circle,
    rgba(9, 194, 105, 0.08) 0%,
    transparent 70%
  );
}

.rc-3::before {
  background: radial-gradient(
    circle,
    rgba(59, 130, 246, 0.08) 0%,
    transparent 70%
  );
}

.role-ico {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
}

.ri-0 {
  background: var(--orange-mid);
}

.ri-1 {
  background: rgba(124, 92, 252, 0.18);
}

.ri-2 {
  background: rgba(9, 194, 105, 0.18);
}

.ri-3 {
  background: rgba(59, 130, 246, 0.18);
}

.role-card h3 {
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.6rem;
}

.role-card p {
  /* font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.7; */
  margin-bottom: 1.25rem;
}

.role-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.role-bullets li {
  /* font-size: 0.75rem;
    color: var(--text-body); */
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.role-bullets li::before {
  content: "→";
  color: #000;
  font-size: 0.7rem;
  flex-shrink: 0;
}

/* ══════════ INTEGRATIONS ══════════ */
.integrations-sec {
  background: var(--bg-white);
  padding: 96px 5%;
}

.int-inner {
  max-width: 1150px;
  margin: 0 auto;
}

.int-header {
  text-align: center;
  margin-bottom: 60px;
}

/* Central hub diagram */
.int-hub-wrap {
  position: relative;
  margin-bottom: 60px;
}

.int-hub {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  position: relative;
}

/* Integration tiles flow */
.int-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.int-tile {
  background: var(--bg-white);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.25s;
  cursor: default;
}

/* .int-tile::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.25s;
} */

.int-tile:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: #3a59ec54 !important;
}

.int-tile:hover::before {
  opacity: 1;
}

.int-tile.t-erp::before {
  background: linear-gradient(
    135deg,
    rgba(249, 115, 22, 0.06) 0%,
    transparent 60%
  );
}

.int-tile.t-dms::before {
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.06) 0%,
    transparent 60%
  );
}

.int-tile.t-crm::before {
  background: linear-gradient(
    135deg,
    rgba(9, 194, 105, 0.06) 0%,
    transparent 60%
  );
}

.int-tile.t-hrms::before {
  background: linear-gradient(
    135deg,
    rgba(124, 92, 252, 0.06) 0%,
    transparent 60%
  );
}

.int-tile.t-sap::before {
  background: linear-gradient(
    135deg,
    rgba(249, 115, 22, 0.06) 0%,
    transparent 60%
  );
}

.int-tile.t-sf::before {
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.06) 0%,
    transparent 60%
  );
}

.int-tile.t-oracle::before {
  background: linear-gradient(
    135deg,
    rgba(239, 68, 68, 0.05) 0%,
    transparent 60%
  );
}

.int-tile.t-api::before {
  background: linear-gradient(
    135deg,
    rgba(124, 92, 252, 0.06) 0%,
    transparent 60%
  );
}

.int-tile:hover.t-erp {
  border-color: rgba(249, 115, 22, 0.3);
}

.int-tile:hover.t-dms {
  border-color: rgba(59, 130, 246, 0.3);
}

.int-tile:hover.t-crm {
  border-color: rgba(9, 194, 105, 0.3);
}

.int-tile:hover.t-hrms {
  border-color: rgba(124, 92, 252, 0.3);
}

.int-tile:hover.t-sap {
  border-color: rgba(249, 115, 22, 0.3);
}

.int-tile:hover.t-sf {
  border-color: rgba(59, 130, 246, 0.3);
}

.int-tile:hover.t-oracle {
  border-color: rgba(239, 68, 68, 0.25);
}

.int-tile:hover.t-api {
  border-color: rgba(124, 92, 252, 0.3);
}

.int-tile-ico {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  position: relative;
  z-index: 1;
}

.int-tile.t-erp .int-tile-ico {
  background: rgba(249, 115, 22, 0.1);
}

.int-tile.t-dms .int-tile-ico {
  background: rgba(59, 130, 246, 0.1);
}

.int-tile.t-crm .int-tile-ico {
  background: rgba(9, 194, 105, 0.1);
}

.int-tile.t-hrms .int-tile-ico {
  background: rgba(124, 92, 252, 0.1);
}

.int-tile.t-sap .int-tile-ico {
  background: rgba(249, 115, 22, 0.1);
}

.int-tile.t-sf .int-tile-ico {
  background: rgba(59, 130, 246, 0.1);
}

.int-tile.t-oracle .int-tile-ico {
  background: rgba(239, 68, 68, 0.08);
}

.int-tile.t-api .int-tile-ico {
  background: rgba(124, 92, 252, 0.1);
}

.int-tile-name {
  /* font-family: var(--font-head); */
  /* font-size: 0.82rem; */
  font-weight: 700;
  /* color: var(--text-dark); */
  position: relative;
  z-index: 1;
}

.int-tile-desc {
  /* font-size: 0.68rem;
    color: var(--text-muted);
    line-height: 1.5; */
  position: relative;
  z-index: 1;
}

/* Central connector bar */
.int-connector {
  background: var(--bg-light);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
}

/* .int-connector::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(249, 115, 22, 0.04) 0%, transparent 50%, rgba(9, 194, 105, 0.04) 100%);
    pointer-events: none;
} */

.int-conn-arrows {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 1;
  overflow: hidden;
}

.int-conn-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  background: #3a59ecc4 !important;
}

.int-conn-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(
    90deg,
    var(--border),
    var(--border-dark),
    var(--border)
  );
  position: relative;
  overflow: hidden;
}

.int-conn-line::after {
  content: "";
  position: absolute;
  top: -1px;
  left: -100%;
  width: 60%;
  height: 3px;
  background: linear-gradient(90deg, transparent, #3a59ec, transparent);
  animation: connFlow 2.5s ease-in-out infinite;
}

@keyframes connFlow {
  0% {
    left: -60%;
  }

  100% {
    left: 160%;
  }
}

.int-conn-center {
  background: var(--bg-white);
  border: 1.5px solid #3a59ec42;
  border-radius: 10px;
  padding: 0.65rem 1.25rem;
  white-space: nowrap;
  box-shadow: 0 0 0 4px rgba(58, 89, 236, 0.08);
  position: relative;
  z-index: 2;
}

.int-conn-center span {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 800;
  color: rgb(58, 89, 236);
}

.int-note-bar {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: var(--bg-light);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 1rem 1.5rem;
}

.int-note-ico {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: rgb(22 190 249 / 10%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

/* .int-note-bar p {
    font-size: 0.82rem;
    color: var(--text-body);
    line-height: 1.6;
} */

.int-note-bar strong {
  color: var(--text-dark);
}

/* Ecosystem callout — light version */
.eco-box {
  background: var(--bg-light);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 2.25rem;
  position: relative;
  overflow: hidden;
  margin-top: 1.5rem;
}

/* .eco-box::before {
    content: '';
    position: absolute;
    top: -60px;
    left: -60px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.08) 0%, transparent 70%);
    pointer-events: none;
} */

.eco-box::after {
  content: "";
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(9, 194, 105, 0.06) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.eco-tag {
  display: inline-block;
  background: rgb(22 190 249 / 10%);
  color: #08a2ea;
  border: 1px solid rgb(9 103 206 / 20%);
  border-radius: 6px;
  /* font-size: 0.7rem; */
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.22rem 0.65rem;
  margin-bottom: 1.1rem;
}

.eco-box h3 {
  /* font-family: var(--font-head);
    font-size: 1.25rem; */
  font-weight: 700;
  /* color: var(--text-dark); */
  margin-bottom: 1rem;
  /* line-height: 1.25; */
}

.eco-compare {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.ec-row {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 0.9rem 1rem;
  border-radius: 10px;
}

.ec-edge {
  background: rgb(243 248 15 / 3%);
  border: 1px solid rgb(230 188 13 / 16%);
}

.ec-jop {
  background: rgba(9, 194, 105, 0.07);
  border: 1px solid rgba(9, 194, 105, 0.14);
}

.ec-badge {
  font-size: 14px;
  font-weight: 800;
  padding: 0.15rem 0.55rem;
  border-radius: 4px;
  white-space: nowrap;
  flex-shrink: 0;
  margin-top: 1px;
}

.ec-b-orange {
  background: rgb(244 236 11 / 15%);
  color: #eac908;
}

.ec-b-green {
  background: rgba(9, 194, 105, 0.15);
  color: #07a487;
}

/* .ec-text {
    font-size: 0.8rem;
    color: var(--text-body);
    line-height: 1.55;
} */

/* ══════════ TESTIMONIALS ══════════ */
.testi-sec {
  background: var(--bg-white);
  padding: 100px 5%;
}

.testi-inner {
  max-width: 900px;
  margin: 0 auto;
}

.testi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}

.testi-card {
  background: var(--bg-light);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 2.25rem;
  transition:
    box-shadow 0.2s,
    border-color 0.2s;
}

.testi-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--border-dark);
}

.testi-quote-mark {
  font-size: 2.5rem;
  line-height: 1;
  color: #246bfd;
  font-family: Georgia, serif;
  margin-bottom: 0.5rem;
}

.testi-card blockquote {
  /* font-size: 0.92rem;
    color: var(--text-body); */
  /* line-height: 1.8; */
  font-style: italic;
  margin-bottom: 1.25rem;
}

.testi-author {
  font-weight: 800;
  /* font-size: 0.875rem; */
  color: var(--text-dark);
}

.testi-role {
  /* font-size: 0.78rem;
    color: var(--text-muted); */
  margin-top: 0.2rem;
}

/* Awards */

.award-pill {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--bg-light);
  border: 1.5px solid var(--border);
  border-radius: 100px;
  padding: 0.6rem 1.25rem;
  /* font-size: 0.8rem; */
  font-weight: 700;
  color: var(--text-body);
  box-shadow: var(--shadow-sm);
}

.award-pill .stars {
  color: #f59e0b;
}

/* ══════════ FINAL CTA ══════════ */
.edge-cta {
  background: var(--bg-light);
  padding: 80px 5%;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 1.5px solid var(--border);
}

/* .edge-cta-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(249, 115, 22, 0.07) 0%, transparent 65%);
    pointer-events: none;
} */

.edge-cta-scan {
  display: none;
}

@keyframes ctaScan {
  0%,
  100% {
    transform: scaleX(0.3);
    opacity: 0;
  }

  50% {
    transform: scaleX(1);
    opacity: 1;
  }
}

.edge-cta h2 {
  max-width: 860px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.25rem;
  position: relative;
}

.edge-cta h2 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--orange), #fdba74);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.edge-cta p {
  /* font-size: 1rem;
    color: var(--text-muted); */
  max-width: 480px;
  margin: 0 auto 2.75rem;
  position: relative;
}

.edge-cta-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.btn-wht {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark);
  background: var(--bg-white);
  border: 1.5px solid var(--border-dark);
  border-radius: 10px;
  padding: 0.9rem 2.1rem;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-wht:hover {
  border-color: var(--orange);
  color: var(--orange-dark, #ea6508);
  transform: translateY(-1px);
}

/* ══════════ FOOTER ══════════ */


.ft {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.fl {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
  display: block;
}

.fl span {
  color: var(--green);
}

.fl-edge {
  font-size: 0.65rem;
  background: var(--orange-mid);
  color: #fb923c;
  border: 1px solid rgba(249, 115, 22, 0.3);
  border-radius: 5px;
  padding: 0.15rem 0.5rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  vertical-align: middle;
  margin-left: 6px;
}

.fb p {
  font-size: 0.84rem;
  color: var(--text-muted);
  max-width: 260px;
  line-height: 1.7;
}

.fc h4 {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 1rem;
}

.fc ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.fc a {
  font-size: 0.84rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.fc a:hover {
  color: var(--text-dark);
}

.fb-bot {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  max-width: 1200px;
  margin: 0 auto;
}

.fb-bot p {
  font-size: 0.78rem;
  color: var(--text-faint);
}

.fb-bot a {
  color: var(--text-faint);
  text-decoration: none;
  margin-left: 1.5rem;
  font-size: 0.78rem;
  transition: color 0.2s;
}

.fb-bot a:hover {
  color: var(--text-dark);
}

.fc__246B {
  color: #246bfd !important;
}

.feat-top-bar .eyebrow {
  letter-spacing: normal;
}
.wrapper__jen__05 {
  padding-top: 60px;
  padding-bottom: 60px;
}
.role-ico img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

/* ══════════ RESPONSIVE ══════════ */
@media (max-width: 960px) {
  .nav-links {
    display: none;
  }

  .gap-split,
  .int-split {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .feat-layout {
    grid-template-columns: 1fr;
  }

  .feat-panels {
    padding: 80px 0 40px;
  }

  .feat-panel {
    grid-template-columns: 1fr;
    position: relative;
    top: auto;
    transform: none !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    display: none;
  }

  .feat-panel.active {
    display: grid;
  }

  .roles-grid {
    grid-template-columns: 1fr 1fr;
  }

  .testi-grid {
    grid-template-columns: 1fr;
  }

  .ft {
    grid-template-columns: 1fr 1fr;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    display: grid;
  }

  .hero-stat {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .hero-stat:last-child {
    border-bottom: none;
  }
}

@media (max-width: 580px) {
  .roles-grid {
    grid-template-columns: 1fr;
  }

  .ft {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    max-width: 100%;
  }

  .int-flow {
    grid-template-columns: 1fr;
  }

  .edge-cta-btns {
    flex-wrap: wrap;
  }
}

/* Add new styles here */
.mb__0 {
  margin-bottom: 0 !important;
}
.mb__0.mb__24{
	margin-bottom:24px;
}
/* Az CSS 12-05-2026 */

.mb__46 {
  margin-bottom: 46px;
}

.hero-stats {
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.06),
    0 2px 8px rgba(0, 0, 0, 0.04);
}

.hero-content {
  max-width: 1000px;
}

.hero {
  background: linear-gradient(
    96.68deg,
    #c2ccff -0.38%,
    rgba(255, 255, 255, 0.1) 65.6%
  );
}

.ratting_img {
  max-width: 406px;
  width: 100%;
  margin: auto;
}

.ratting_img img {
  width: 100%;
}

.role_card_logo {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.role_card_logo h3 {
  margin-bottom: 0;
}

.role_card_logo .role-ico {
  margin-bottom: 0;
  width: 45px;
  height: 45px;
  border-radius: 8px;
}

.btn__cnt {
  background: transparent;
  color: #3a59ec;
}

.btn__cnt:hover {
  background: #3a59ec;
  color: #fff;
}

.circle_new_button {
  text-decoration: none;
}

.gap-point:hover {
  border-color: #0846c6;
  box-shadow: var(--shadow-md);
}

.circle_new_button {
  padding: 15.5px 34px;
  line-height: 19px;
}

.gap-mockup {
  position: sticky;
  top: 90px;
}

/* Az CSS 12-05-2026 end*/

/* New Responsive AZ */

@media (max-width: 767px) {
  .mb__46 {
    margin-bottom: 30px;
  }
  .feat-panels {
    padding: 0 0 40px;
  }
  .feat-nav {
    padding: 20px 0;
    border: 0;
  }
  .pb__80 {
    padding-bottom: 40px;
  }

  .heading__01 {
    font-size: 28px !important;
    line-height: 38px !important;
  }

  .hero {
    padding-top: 85px;
  }
}

/* Add new styles here */

:root {
  --bg-white: #ffffff;
  --bg-light: #f6f8fc;
  --bg-lighter: #eef2fb;
  --bg-dark: #0f1123;
  --bg-dark2: #181b30;
  --bg-dark3: #0a0d1a;
  --blue-new: #3a59ec;
  --yellow-new: #fb0;
  --green-new: #007d68;
  --blue-new-dark: #3a59ec;
  --blue-new-glow: #d5dcfe;
  --blue-new-light: #d5dcfe;
  --blue-new-mid: rgba(9, 194, 105, 0.18);
  --purple: #7c5cfc;
  --purple-dark: #6344e0;
  --purple-light: rgba(124, 92, 252, 0.1);
  --purple-mid: rgba(124, 92, 252, 0.22);
  --blue: #3b82f6;
  --blue-light: rgba(59, 130, 246, 0.1);
  --orange: #f97316;
  --orange-light: rgba(249, 115, 22, 0.1);
  --text-dark: #000;
  --text-body: #2a2b3d;
  --text-muted: #525469;
  --text-faint: #8a8da6;
  --border: #e4e7f2;
  --border-dark: #d1d5e8;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow-sm: 0 2px 12px rgba(15, 17, 35, 0.06);
  --shadow-md: 0 8px 32px rgba(15, 17, 35, 0.1);
  --shadow-lg: 0 24px 64px rgba(15, 17, 35, 0.16);
  --font-head: "Bricolage Grotesque", sans-serif;
  --font-body: "Plus Jakarta Sans", sans-serif;
  --color-222: #222;
  --color-444: #444;
}

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

html {
  scroll-behavior: smooth;
}

.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 180px 5% 80px;
  background: var(--bg-white);
  position: relative;
  overflow: hidden;
  background-image: url(https://www.getjop.com/wp-content/uploads/2025/07/home-bg.png);
  background-size: cover;
}

/* hero AI CTA pill */
.hero-ai-cta {
  margin: 1.5rem auto 0;
  max-width: 600px;
}

.hero-ai-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(
    135deg,
    rgba(124, 92, 252, 0.08),
    rgba(9, 194, 105, 0.08)
  );
  border: 1.5px solid rgba(124, 92, 252, 0.2);
  border-radius: 100px;
  padding: 0.65rem 1.4rem;
  text-decoration: none;
  transition: all 0.25s;
  animation: fadeUp 0.55s 0.36s ease both;
}

.hero-ai-pill:hover {
  border-color: var(--purple);
  background: rgba(124, 92, 252, 0.12);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(124, 92, 252, 0.15);
}

.haip-ico {
  font-size: 1.1rem;
  flex-shrink: 0;
}

.haip-text {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
}

.haip-text strong {
  color: var(--purple);
}

.haip-arrow {
  font-size: 0.85rem;
  color: var(--purple);
  font-weight: 700;
  flex-shrink: 0;
  transition: transform 0.2s;
}

.hero-ai-pill:hover .haip-arrow {
  transform: translateX(3px);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
}

.hero-orb-1 {
  width: 600px;
  height: 600px;
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, var(--blue-new-dark) 0%, transparent 30%);
  opacity: 0.7;
}

.hero-orb-2 {
  width: 400px;
  height: 400px;
  bottom: 0;
  right: -100px;
  background: radial-gradient(circle, #ffbb00 0%, transparent 40%);
  opacity: 0.6;
}

.hero-orb-3 {
  width: 300px;
  height: 300px;
  bottom: 50px;
  left: -80px;
  background: radial-gradient(circle, #007d68 0%, transparent 30%);
  opacity: 0.6;
}

.hero-dots {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(
    circle,
    rgba(15, 17, 35, 0.065) 1px,
    transparent 1px
  );
  background-size: 28px 28px;
  mask-image: radial-gradient(
    ellipse 70% 80% at 50% 40%,
    black 20%,
    transparent 80%
  );
}

.hero-content {
  position: relative;
  max-width: 900px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--blue-new-light);
  border: 1px solid var(--blue-new-dark);
  border-radius: 100px;
  padding: 0.4rem 1.1rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--blue-new-dark);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
  animation: fadeUp 0.55s ease both;
}

.pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue-new-dark);
  animation: blink 1.8s ease-in-out infinite;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

.hl-purple {
  background: linear-gradient(
    135deg,
    var(--text-dark) 0%,
    var(--text-dark) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hl-blue {
  background: linear-gradient(
    135deg,
    var(--text-dark) 0%,
    var(--text-dark) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 0.55s 0.24s ease both;
}

.btn-lg {
  padding: 0.9rem 2.1rem;
  font-size: 1rem;
  border-radius: 10px;
}

.hero-proof {
  margin-top: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  animation: fadeUp 0.55s 0.32s ease both;
}

.proof-pill {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.45rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-body);
}

.proof-pill .stars {
  color: #f59e0b;
  letter-spacing: -1px;
}

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

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ═══════════ SHARED ═══════════ */
.max-w {
  max-width: 1200px;
  margin: 0 auto;
}

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-new-dark);
  margin-bottom: 0.85rem;
}

.eyebrow.g {
  color: var(--blue-new-dark);
}

.sec-title {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 5vw, 4.4rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: var(--text-dark);
  margin-bottom: 1.4rem;
}

.sec-sub {
  font-size: 1.1rem;
  color: var(--text-body);
  font-weight: 400;
  max-width: 560px;
  line-height: 1.8;
}

.ctr {
  text-align: center;
}

.ctr .sec-sub {
  margin: 0 auto;
}

.divider {
  height: 1px;
  background: var(--border);
}

/* ═══════════ CUSTOMER BAR ═══════════ */
.customer-bar {
  background: var(--bg-white);
  padding: 28px 5%;
  border-bottom: 1px solid var(--border);
}

.customer-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.customer-bar-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  white-space: nowrap;
  flex-shrink: 0;
}

.customer-logos {
  overflow: hidden;
  flex: 1;
  position: relative;
}

.customer-logos::before,
.customer-logos::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.customer-logos::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg-white), transparent);
}

.customer-logos::after {
  right: 0;
  background: linear-gradient(270deg, var(--bg-white), transparent);
}

.logos-track {
  display: flex;
  gap: 3rem;
  align-items: center;
  animation: logoScroll 28s linear infinite;
  width: max-content;
}

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

@keyframes logoScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.logo-item {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-faint);
  white-space: nowrap;
  letter-spacing: -0.01em;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.logo-item:hover {
  opacity: 1;
}

/* ═══════════ WHAT JOP IS — CLEAN LAYOUT ═══════════ */
.what-jop-sec {
  background: var(--bg-lighter);
  padding: 80px 5%;
}

/* Two-col split: headline left, intro right */
.wj-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 0;
}

.wj-top-left {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.wj-top-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.wj-big-title {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.04em;
  color: var(--text-dark);
  margin-bottom: 0;
  margin-top: 0.75rem;
}

.wj-big-title span {
  background: linear-gradient(135deg, var(--text-dark) 0%, #34d399 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.wj-intro {
  font-size: 1.1rem;
  color: var(--text-body);
  line-height: 1.85;
  max-width: 100%;
  margin-bottom: 0;
}

/* Three pillars */

/* ── What JOP feature pills row ── */
.wj-stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 40px;
}

.wj-stat-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--bg-white);
  border: 1.5px solid var(--border);
  border-radius: 100px;
  padding: 0.65rem 1.25rem;
  box-shadow: var(--shadow-sm);
}

.wj-stat-divider {
  display: none;
}

.wj-stat-num {
  font-size: 1.1rem;
  line-height: 1;
}

.wj-stat-label {
  font-size: 0.85rem;
  color: var(--text-body);
  font-weight: 600;
}

.wj-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.wj-pillar {
  background: var(--bg-white);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 2.25rem;
  position: relative;
  overflow: hidden;
  transition:
    box-shadow 0.25s,
    transform 0.25s,
    border-color 0.25s;
}

.wj-pillar:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.wj-pillar-p:hover {
  border-color: rgba(124, 92, 252, 0.3);
}

.wj-pillar-b:hover {
  border-color: rgba(59, 130, 246, 0.3);
}

.wj-pillar-g:hover {
  border-color: rgba(9, 194, 105, 0.3);
}

/* subtle corner tint */
.wj-pillar-p::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(124, 92, 252, 0.08),
    transparent 70%
  );
  pointer-events: none;
}

.wj-pillar-b::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(59, 130, 246, 0.08),
    transparent 70%
  );
  pointer-events: none;
}

.wj-pillar-g::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(9, 194, 105, 0.08), transparent 70%);
  pointer-events: none;
}

.wjp-ico-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.wjp-ico {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.lp {
  background: var(--purple-light);
}

.lb {
  background: var(--blue-light);
}

.lg {
  background: var(--blue-new-light);
}

.wjp-num {
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(15, 17, 35, 0.06);
  letter-spacing: -0.04em;
  line-height: 1;
}

.wjp-body h3 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.wjp-edge-tag {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--orange-light);
  color: var(--orange-dark, #ea6508);
  border: 1px solid rgba(249, 115, 22, 0.2);
  border-radius: 5px;
  padding: 0.18rem 0.55rem;
}

.wjp-body p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.wjp-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.wjp-list li {
  font-size: 0.85rem;
  color: var(--text-body);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.wj-pillar-p .wjp-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--purple);
  flex-shrink: 0;
}

.wj-pillar-b .wjp-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
}

.wj-pillar-g .wjp-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--text-dark);
  flex-shrink: 0;
}

/* ═══════════ VS HRMS ═══════════ */
.vs-sec {
  background: var(--bg-white);
  padding: 72px 5%;
}

.vs-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.vs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2.5rem;
}

.hrms-card {
  background: #eceef5;
  border: 1.5px solid #d8daed;
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.hrms-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.015) 0px,
    rgba(0, 0, 0, 0.015) 1px,
    transparent 1px,
    transparent 8px
  );
  pointer-events: none;
}

.hrms-card h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: #4a4c63;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.hrms-chip {
  background: rgba(0, 0, 0, 0.07);
  color: var(--text-faint);
  border-radius: 6px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: normal;
  padding: 0.2rem 0.6rem;
}

.hrms-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.hrms-list li {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-size: 16px;
  color: #6b6e8a;
  font-family: "Inter", sans-serif;
}

.hrms-list li .dot-x {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.06);
  border: 1.5px solid rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: var(--text-faint);
  flex-shrink: 0;
}

/* JOP card — light with blue accent */
.jop-bright-card {
  background: var(--bg-white);
  border: 1.5px solid #ffbb00;
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 0 0 4px #fff1c7,
    var(--shadow-sm);
}

.jop-bright-card::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, #fff1c7 0%, transparent 70%);
  pointer-events: none;
}

.jop-bright-card h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.jop-chip {
  border-radius: 6px;
  font-size: 0.65rem;
  font-weight: 700;
  line-height: normal;
  color: #dba000;
  background: #fff1c7;
  padding: 0.2rem 0.6rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid #ffbb00;
}

.jop-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.jop-list li {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.dot-check {
  width: 20px;
  height: 20px;
  display: flex;
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 600;
  color: #ffbb00;
  border-radius: 50%;
  align-items: center;
  background: #fff1c7;
  justify-content: center;
  border: 1.5px solid #ffbb00;
}

/* ═══════════ CAPABILITIES — SCROLL ACCORDION ═══════════ */
.caps-scene {
  position: relative;
}

.caps-sticky {
  background: var(--bg-white);
}

.caps-inner {
  display: grid;
  grid-template-columns: 300px 1fr;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
  min-height: 580px;
}

/* Left — numbered nav */
.caps-nav {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  gap: 0;
  padding: 80px 2rem 40px 0;
  border-right: 1px solid var(--border);
  min-height: 500px;
}

.caps-nav-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1rem;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.2s;
  position: relative;
}

.caps-nav-item.active {
  background: var(--blue-new-light);
}

.caps-nav-num {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--text-faint);
  min-width: 26px;
  padding-top: 2px;
  transition: color 0.2s;
}

.caps-nav-item.active .caps-nav-num {
  color: var(--blue-new-dark);
}

.caps-nav-title {
  font-weight: 700;
  font-size: 18px;
  color: var(--text-muted);
  transition: color 0.2s;
  line-height: 1.35;
}

.caps-nav-item.active .caps-nav-title {
  color: #000 !important;
}

.caps-nav-desc {
  font-size: 0.82rem;
  color: var(--text-faint);
  margin-top: 0.3rem;
  line-height: 1.55;
  display: none;
}

.caps-nav-desc {
  display: block !important;
}

.caps-nav-item.active .caps-nav-desc {
  color: var(--text-muted);
}

.caps-nav-bar {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 0;
  background: var(--blue-new-dark);
  border-radius: 3px;
  transition: height 0.4s ease;
}

.caps-nav-item.active .caps-nav-bar {
  height: 60%;
}

/* Right — feature panels */
.caps-panels {
  position: relative;
  padding: 80px 0 40px 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.caps-panel {
  display: none;
  width: 100%;
}

.caps-panel.active {
  display: block;
}

.caps-panel-header {
  margin-bottom: 1.5rem;
}

.caps-panel-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border-radius: 100px;
  padding: 0.3rem 0.85rem;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-new-dark);
  margin-bottom: 0.65rem;
}

.tag-g {
  background: var(--blue-new-light);
  color: #07945a;
  border: 1px solid rgba(9, 194, 105, 0.22);
}

.tag-p {
  background: var(--blue-new-light);
  color: var(--blue-new-dark);
  border: 1px solid var(--blue-new-dark);
}

.tag-b {
  background: var(--blue-light);
  color: var(--blue);
  border: 1px solid rgba(59, 130, 246, 0.22);
}

.feat-boxes {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.feat-box {
  background: var(--bg-light);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 0.9rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  transition:
    border-color 0.2s,
    box-shadow 0.2s,
    transform 0.25s;
}

.feat-box:hover {
  border-color: var(--border-dark);
  box-shadow: var(--shadow-sm);
  transform: translateX(5px);
}

.feat-box-ico {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.feat-box span {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-dark);
}

/* caps scroll top label */
.caps-top-label {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 72px;
  display: flex;
  align-items: center;
  padding: 0 5%;
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  z-index: 5;
}

.caps-top-label .eyebrow {
  margin: 0;
  margin-right: 1rem;
}

.caps-top-label .sec-title {
  margin: 0;
  font-size: 1.9rem;
}

/* ═══════════ JOP EDGE — LIGHT SECTION ═══════════ */
.edge-sec {
  background: var(--bg-lighter);
  padding: 0;
  position: relative;
  overflow: hidden;
}

.edge-bg-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.edge-bg-line {
  position: absolute;
  height: 1px;
  width: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(9, 194, 105, 0.12),
    transparent
  );
  animation: lineSlide 6s linear infinite;
}

.edge-bg-line:nth-child(1) {
  top: 20%;
  animation-delay: 0s;
}

.edge-bg-line:nth-child(2) {
  top: 40%;
  animation-delay: -2s;
}

.edge-bg-line:nth-child(3) {
  top: 60%;
  animation-delay: -4s;
}

.edge-bg-line:nth-child(4) {
  top: 80%;
  animation-delay: -1s;
}

@keyframes lineSlide {
  0% {
    background-position: -100% 0;
  }

  100% {
    background-position: 200% 0;
  }
}

.edge-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 5%;
}

/* Top hero part */
.edge-hero {
  text-align: center;
  margin-bottom: 56px;
}

.edge-new-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(249, 115, 22, 0.1);
  border: 1px solid rgba(249, 115, 22, 0.25);
  border-radius: 100px;
  padding: 0.38rem 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--orange-dark, #ea6508);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.edge-hero h2 {
  font-family: var(--font-head);
  font-size: clamp(3rem, 5.5vw, 5rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.08;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.edge-hero h2 em {
  font-style: normal;
  background: linear-gradient(135deg, #f97316, #fb923c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.edge-hero p {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  color: #222;
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
}

/* Hexagonal feature grid */
/* ═══════════ JOP EDGE — TAB LAYOUT ═══════════ */
.edge-tabs-wrap {
  margin-top: 0;
}

/* Tab nav */
.edge-tab-nav {
  display: flex;
  gap: 0;
  background: var(--bg-white);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 6px;
  margin-bottom: 2.5rem;
  overflow-x: auto;
}

.edge-tab {
  flex: 1;
  align-items: center !important;
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  padding: 1rem 1rem;
  border-radius: 9px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.22s;
  border: none;
  background: none;
  font-family: var(--font-body);
  white-space: normal;
  min-width: 0;
  text-align: left;
  outline: 1.5px solid transparent;
}

.edge-tab .et-ico {
  font-size: 1rem;
  flex-shrink: 0;
}

.edge-tab .et-label {
  overflow: visible;
  text-overflow: unset;
  white-space: normal;
  line-height: 1.35;
  text-align: center;
  text-transform: capitalize;
}

.edge-tab:hover {
  color: var(--text-dark);
}

.edge-tab.active {
  background: var(--bg-lighter);
  color: var(--text-dark);
  outline: 1.5px solid rgb(58 89 236);
  box-shadow: var(--shadow-sm);
}

.edge-tab.active .et-ico {
  filter: none;
}

/* Panels */
.edge-tab-panels {
  position: relative;
}

.edge-tab-panel {
  display: none;
  grid-template-columns: 0.7fr 1fr;
  gap: 1.5rem;
  align-items: center;
}

.edge-tab-panel.active {
  display: grid;
}

/* Left text */
.etp-left {
}

.etp-tag {
  display: inline-block;
  background: var(--orange-light);
  color: var(--orange-dark, #ea6508);
  border: 1px solid rgba(249, 115, 22, 0.2);
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.22rem 0.65rem;
  margin-bottom: 0.85rem;
}

.etp-left h3 {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 3.8vw, 3.2rem);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 0.85rem;
}

.etp-left p {
  /* font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1.5rem; */
}

.etp-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.etp-bullets li {
  font-size: 16px;
  color: #222;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.etp-bullets li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--text-dark);
  flex-shrink: 0;
}

/* Right screen */
.etp-right {
  position: relative;
}

.etp-screen {
  background: var(--bg-dark);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.etps-bar {
  background: rgba(255, 255, 255, 0.06);
  padding: 0.65rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.etps-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.etps-dot.r {
  background: #3a59ec;
}

.etps-dot.y {
  background: #fb0;
}

.etps-dot.g {
  background: #007d68;
}

.etps-title {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.3);
  font-weight: 600;
  margin-left: auto;
}

.etps-body {
  padding: 1.25rem;
}

.etps-kpi-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.etps-kpi {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 0.75rem;
  text-align: center;
}

.etps-kv {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 0.2rem;
}

.etps-kl {
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.3);
}

.etps-bar-chart {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  padding: 0.85rem;
}

.etps-bc-label {
  font-size: 0.62rem;
  color: rgba(255, 255, 255, 0.3);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.65rem;
}

.etps-bc-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.5rem;
}

.etps-bc-row:last-child {
  margin-bottom: 0;
}

.etps-bc-row span:first-child {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.4);
  min-width: 42px;
}

.etps-bc-row span:last-child {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 700;
  min-width: 30px;
  text-align: right;
}

.etps-bc-track {
  flex: 1;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 4px;
  height: 5px;
  overflow: hidden;
}

.etps-bc-fill {
  height: 100%;
  border-radius: 4px;
}

.etps-challenge {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 9px;
  padding: 0.75rem;
  margin-bottom: 0.5rem;
}

.etps-challenge:last-child {
  margin-bottom: 0;
}

.etc-line {
  width: 3px;
  border-radius: 2px;
  min-height: 36px;
  flex-shrink: 0;
}

.etc-body {
  flex: 1;
}

.etc-title {
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.2rem;
}

.etc-meta {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.35);
}

.etc-badge {
  font-size: 0.6rem;
  font-weight: 800;
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  white-space: nowrap;
  flex-shrink: 0;
}

.etps-reco {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 9px;
  padding: 0.85rem;
  margin-bottom: 0.5rem;
}

.etps-reco:last-child {
  margin-bottom: 0;
}

.etps-reco-num {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: var(--blue-new-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--text-dark);
  flex-shrink: 0;
}

.etps-reco-title {
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.2rem;
}

.etps-reco-desc {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.35);
}

/* Stat badge floating below screen */
.etp-stat-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: var(--bg-white);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 0.75rem 1.25rem;
  box-shadow: var(--shadow-md);
  margin-top: 1rem;
}

.esb-num {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.esb-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Stats bar */
.edge-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1.5px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  background: var(--bg-white);
}

.edge-stat {
  padding: 1.75rem 2rem;
  border-right: 1px solid var(--border);
  text-align: center;
}

.edge-stat:last-child {
  border-right: none;
}

.edge-stat-num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 0.35rem;
}

.edge-stat-num.orange {
  background: linear-gradient(135deg, #f97316, #fb923c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.edge-stat-num.blue {
  background: linear-gradient(135deg, var(--text-dark), #34d399);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.edge-stat-num.purple {
  background: linear-gradient(135deg, var(--purple), #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.edge-stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ═══════════ JOP AI — SIGNAL FLOW — LIGHT ═══════════ */
.ai-sec {
  background: var(--bg-white);
  padding: 80px 5% 72px;
  overflow: hidden;
  position: relative;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.ai-sec-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* Subtle grid */
.ai-grid-bg {
  display: none;
}

.ai-top {
  text-align: center;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}

.ai-top .eyebrow {
  /* color: var(--purple); */
}

.ai-top .sec-title {
  color: var(--text-dark);
}

.ai-top .sec-sub {
  color: var(--text-muted);
  margin: 0 auto;
}

/* ── SIGNAL FLOW ARENA ── */
.ai-arena {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto 56px;
  height: 460px;
}

/* Canvas for animated SVG lines — drawn by JS */
.ai-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

/* ── HEX NODES ── */
.ai-node {
  position: absolute;
  z-index: 4;
  cursor: pointer;
  transform: translate(-50%, -50%);
  user-select: none;
}

.ai-node-1 {
  left: 16%;
  top: 50%;
}

.ai-node-2 {
  left: 50%;
  top: 50%;
}

.ai-node-3 {
  left: 84%;
  top: 50%;
}

.ai-hex {
  position: relative;
  width: 210px;
  height: 210px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.ai-node:hover .ai-hex {
  transform: scale(1.06);
}

/* Hexagon shape via clip-path */
.ai-hex-shape {
  position: absolute;
  inset: 0;
  clip-path: polygon(
    50% 0%,
    93.3% 25%,
    93.3% 75%,
    50% 100%,
    6.7% 75%,
    6.7% 25%
  );
  transition: all 0.4s;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.ai-hex-bg {
  background: rgba(255, 255, 255, 0.04);
  border: none;
}

.ai-hex-border {
  background: transparent;
}

/* Rotating hex ring */
.ai-hex-ring {
  position: absolute;
  inset: -8px;
  clip-path: polygon(
    50% 0%,
    93.3% 25%,
    93.3% 75%,
    50% 100%,
    6.7% 75%,
    6.7% 25%
  );
  opacity: 0.3;
  transition: opacity 0.4s;
}

.ai-node:hover .ai-hex-ring {
  opacity: 0.7;
}

/* Node 1 — Predict — Blue */
.ai-node-1 .ai-hex-shape {
  background: linear-gradient(
    145deg,
    rgba(59, 130, 246, 0.12) 0%,
    rgba(59, 130, 246, 0.06) 100%
  );
  border: 2px solid rgba(59, 130, 246, 0.4);
}

.ai-node-1 .ai-hex-ring {
  background: conic-gradient(
    from 0deg,
    transparent 0%,
    rgba(59, 130, 246, 0.6) 20%,
    transparent 40%
  );
  animation: spinRing 4s linear infinite;
}

.ai-node-1 .ai-hex-glow {
  position: absolute;
  inset: 0;
  clip-path: polygon(
    50% 0%,
    93.3% 25%,
    93.3% 75%,
    50% 100%,
    6.7% 75%,
    6.7% 25%
  );
  background: radial-gradient(
    circle at center,
    rgba(59, 130, 246, 0.15) 0%,
    transparent 70%
  );
  animation: glowPulse1 3s ease-in-out infinite;
}

/* Node 2 — Prescribe — Purple */
.ai-node-2 .ai-hex-shape {
  background: linear-gradient(
    145deg,
    rgb(233 173 5 / 14%) 0%,
    rgb(255 235 59 / 48%) 100%
  );
  border: 2px solid rgb(252 240 92);
}

.ai-node-2 .ai-hex-ring {
  background: conic-gradient(
    from 120deg,
    transparent 0%,
    rgb(255 193 7 / 92%) 20%,
    transparent 40%
  );
  animation: spinRing 3s linear infinite reverse;
}

.ai-node-2 .ai-hex-glow {
  position: absolute;
  inset: 0;
  clip-path: polygon(
    50% 0%,
    93.3% 25%,
    93.3% 75%,
    50% 100%,
    6.7% 75%,
    6.7% 25%
  );
  background: radial-gradient(
    circle at center,
    rgba(124, 92, 252, 0.2) 0%,
    transparent 70%
  );
  animation: glowPulse2 2.5s ease-in-out infinite;
}

/* Central node slightly larger */
.ai-node-2 .ai-hex {
  width: 250px;
  height: 250px;
}

/* Node 3 — Transform — blue */
.ai-node-3 .ai-hex-shape {
  background: linear-gradient(
    145deg,
    rgba(9, 194, 105, 0.12) 0%,
    rgba(9, 194, 105, 0.05) 100%
  );
  border: 2px solid rgba(9, 194, 105, 0.4);
}

.ai-node-3 .ai-hex-ring {
  background: conic-gradient(
    from 240deg,
    transparent 0%,
    rgba(9, 194, 105, 0.6) 20%,
    transparent 40%
  );
  animation: spinRing 5s linear infinite;
}

.ai-node-3 .ai-hex-glow {
  position: absolute;
  inset: 0;
  clip-path: polygon(
    50% 0%,
    93.3% 25%,
    93.3% 75%,
    50% 100%,
    6.7% 75%,
    6.7% 25%
  );
  background: radial-gradient(
    circle at center,
    rgba(9, 194, 105, 0.15) 0%,
    transparent 70%
  );
  animation: glowPulse3 3.5s ease-in-out infinite;
}

@keyframes spinRing {
  to {
    transform: rotate(360deg);
  }
}

@keyframes glowPulse1 {
  0%,
  100% {
    opacity: 0.5;
  }

  50% {
    opacity: 1;
  }
}

@keyframes glowPulse2 {
  0%,
  100% {
    opacity: 0.6;
  }

  50% {
    opacity: 1;
  }
}

@keyframes glowPulse3 {
  0%,
  100% {
    opacity: 0.4;
  }

  50% {
    opacity: 0.9;
  }
}

/* Node inner content */
.ai-node-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 1rem;
}

.ai-node-step {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  opacity: 1;
}

.ai-node-1 .ai-node-step {
  color: var(--text-dark);
}

.ai-node-2 .ai-node-step {
  color: var(--yellow-new);
}

.ai-node-3 .ai-node-step {
  color: var(--green-new);
}

.ai-node-verb {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 0.6rem;
}

.ai-node-1 .ai-node-verb {
  color: var(--text-dark);
}

.ai-node-2 .ai-node-verb {
  color: var(--yellow-new);
}

.ai-node-3 .ai-node-verb {
  color: var(--green-new);
}

.ai-node-desc {
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--text-body);
  font-weight: 400;
}

/* Outer glow aura on hover */
.ai-node::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 220px;
  height: 220px;
  border-radius: 50%;
  opacity: 0;
  transition:
    opacity 0.4s,
    transform 0.4s;
  pointer-events: none;
}

.ai-node-1::after {
  background: radial-gradient(
    circle,
    rgba(59, 130, 246, 0.12) 0%,
    transparent 70%
  );
}

.ai-node-2::after {
  background: radial-gradient(
    circle,
    rgba(124, 92, 252, 0.15) 0%,
    transparent 70%
  );
}

.ai-node-3::after {
  background: radial-gradient(
    circle,
    rgba(9, 194, 105, 0.12) 0%,
    transparent 70%
  );
}

.ai-node:hover::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.4);
}

/* ── DETAIL TOOLTIP that appears on hover ── */
.ai-tooltip {
  position: absolute;
  bottom: -85px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--text-dark);
  border: none;
  border-radius: 10px;
  padding: 0.75rem 1rem;
  white-space: nowrap;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.85);
  opacity: 0;
  box-shadow: var(--shadow-lg);
  transition:
    opacity 0.3s,
    transform 0.3s;
  transform: translateX(-50%) translateY(6px);
  pointer-events: none;
  z-index: 10;
}

.ai-node:hover .ai-tooltip {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.ai-tooltip b {
  color: #fff;
  display: block;
  margin-bottom: 0.2rem;
  font-size: 0.78rem;
}

/* ── BOTTOM FLOW LABEL ── */
.ai-flow-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 560px;
  margin: 0 auto 36px;
  position: relative;
  z-index: 2;
}

.afl-item {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 0.3rem;
  flex: 1;
  text-align: center;
}

.afl-num {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.8;
}

.afl-word {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 800;
}

.afl-item:nth-child(1) .afl-num,
.afl-item:nth-child(1) .afl-word {
  color: var(--blue-new-dark);
}

.afl-item:nth-child(3) .afl-num,
.afl-item:nth-child(3) .afl-word {
  color: var(--yellow-new);
}

.afl-item:nth-child(5) .afl-num,
.afl-item:nth-child(5) .afl-word {
  color: var(--green-new);
}

.afl-arrow {
  flex: 0;
  color: var(--blue-new-dark);
  font-size: 1rem;
  margin: 0 0.5rem;
  padding-bottom: 0.3rem;
}

/* Tagline */
.ai-tagline {
  text-align: center;
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: -0.02em;
  position: relative;
  z-index: 2;
}

.ai-tagline strong {
  color: var(--green-new);
}

/* ═══════════ INDUSTRIES — CLEAN TABBED ═══════════ */
.ind-sec {
  background: var(--bg-lighter);
  padding: 72px 5%;
}

.ind-wrap {
  max-width: 1100px;
  margin: 0 auto;
}

.ind-header {
  text-align: center;
  margin-bottom: 36px;
}

/* Tab row */
.ind-tabs {
  display: flex;
  gap: 0;
  background: var(--bg-light);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 5px;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.ind-tab {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 0.85rem;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.22s;
  border: none;
  background: none;
  font-family: var(--font-body);
}

.ind-tab .t-ico {
  font-size: 0.95rem;
}

.ind-tab:hover {
  color: var(--text-dark);
}

.ind-tab.active {
  background: rgba(172, 187, 253, 1);
  color: #000;
  box-shadow: var(--shadow-sm);
}

/* Content panel grid */
.ind-panels {
  position: relative;
}

.ind-panel {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.ind-panel.active {
  display: grid;
}

/* Left: big card */
.ind-main-card {
  background: var(--bg-white);
  border: 1.5px solid var(--border);
  border-radius: 18px;
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.ind-main-card::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  pointer-events: none;
}

.ind-panel[data-panel="0"] .ind-main-card::before {
  background: radial-gradient(
    circle,
    rgba(9, 194, 105, 0.08) 0%,
    transparent 70%
  );
}

.ind-panel[data-panel="1"] .ind-main-card::before {
  background: radial-gradient(
    circle,
    rgba(59, 130, 246, 0.08) 0%,
    transparent 70%
  );
}

.ind-panel[data-panel="2"] .ind-main-card::before {
  background: radial-gradient(
    circle,
    rgba(249, 115, 22, 0.07) 0%,
    transparent 70%
  );
}

.ind-panel[data-panel="3"] .ind-main-card::before {
  background: radial-gradient(
    circle,
    rgba(124, 92, 252, 0.08) 0%,
    transparent 70%
  );
}

.ind-main-emoji {
  font-size: 2.5rem;
  margin-bottom: 1.25rem;
  display: block;
}

.ind-main-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 6px;
  padding: 0.25rem 0.7rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.ind-main-card h3 {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.ind-main-card p {
  font-size: 0.88rem;
  color: var(--color-444);
  line-height: 1.7;
  margin-bottom: 1.35rem;
}

.ind-main-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.ind-pill {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-body);
  background: var(--bg-light);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 0.4rem 0.85rem;
}

/* Right: feature list */
.ind-feat-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ind-feat-row {
  background: var(--bg-white);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 1.35rem 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition:
    border-color 0.2s,
    box-shadow 0.2s,
    transform 0.2s;
}

.ind-feat-row:hover {
  box-shadow: var(--shadow-sm);
  transform: translateX(5px);
}

.ind-feat-ico {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  flex-shrink: 0;
}

.ind-feat-row h4 {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-dark);
  margin-bottom: 0.2rem;
}

.ind-feat-row p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* color theming per industry */
.ind-panel[data-panel="0"] .ind-main-badge {
  background: var(--blue-new-light);
  color: #07945a;
  border: 1px solid rgba(9, 194, 105, 0.2);
}

.ind-panel[data-panel="0"] .ind-tab-accent {
  color: var(--text-dark);
}

.ind-panel[data-panel="0"] .ind-feat-ico {
  background: var(--blue-new-light);
}

.ind-panel[data-panel="0"] .ind-feat-row:hover {
  border-color: rgba(9, 194, 105, 0.25);
}

.ind-panel[data-panel="1"] .ind-main-badge {
  background: var(--blue-light);
  color: var(--blue);
  border: 1px solid rgba(59, 130, 246, 0.2);
}

.ind-panel[data-panel="1"] .ind-feat-ico {
  background: var(--blue-light);
}

.ind-panel[data-panel="1"] .ind-feat-row:hover {
  border-color: rgba(59, 130, 246, 0.25);
}

.ind-panel[data-panel="2"] .ind-main-badge {
  background: var(--orange-light);
  color: var(--orange);
  border: 1px solid rgba(249, 115, 22, 0.2);
}

.ind-panel[data-panel="2"] .ind-feat-ico {
  background: var(--orange-light);
}

.ind-panel[data-panel="2"] .ind-feat-row:hover {
  border-color: rgba(249, 115, 22, 0.25);
}

.ind-panel[data-panel="3"] .ind-main-badge {
  background: var(--purple-light);
  color: var(--purple);
  border: 1px solid rgba(124, 92, 252, 0.2);
}

.ind-panel[data-panel="3"] .ind-feat-ico {
  background: var(--purple-light);
}

.ind-panel[data-panel="3"] .ind-feat-row:hover {
  border-color: rgba(124, 92, 252, 0.25);
}

/* ═══════════ JOP CARE ═══════════ */
.care-sec {
  background: var(--bg-white);
  padding: 72px 5% 48px;
}

.care-header {
  text-align: center;
  margin-bottom: 52px;
}

.care-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--blue-new-light);
  border: 1px solid var(--blue-new);
  border-radius: 100px;
  padding: 0.4rem 1.1rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--blue-new-dark);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}

.care-badge-ico {
  font-size: 0.9rem;
}

.care-header .sec-title {
  margin-bottom: 0.9rem;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
}

.care-header .sec-sub {
  margin: 0 auto;
}

/* Journey steps */
.care-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-bottom: 52px;
  overflow-x: auto;
  padding-bottom: 4px;
  padding-top: 10px;
}

.care-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 140px;
  max-width: 160px;
  flex: 1;
}

.care-step-ico {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.cs-1 {
  background: linear-gradient(
    135deg,
    rgba(249, 115, 22, 0.15),
    rgba(249, 115, 22, 0.08)
  );
  border: 2px solid rgba(249, 115, 22, 0.25);
  box-shadow: 0 0 0 6px rgba(249, 115, 22, 0.06);
}

.cs-2 {
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.15),
    rgba(59, 130, 246, 0.08)
  );
  border: 2px solid rgba(59, 130, 246, 0.25);
  box-shadow: 0 0 0 6px rgba(59, 130, 246, 0.06);
}

.cs-3 {
  background: linear-gradient(
    135deg,
    rgba(251, 191, 36, 0.18),
    rgba(251, 191, 36, 0.09)
  );
  border: 2px solid rgba(251, 191, 36, 0.3);
  box-shadow: 0 0 0 6px rgba(251, 191, 36, 0.07);
}

.cs-4 {
  background: linear-gradient(
    135deg,
    rgba(9, 194, 105, 0.15),
    rgba(9, 194, 105, 0.08)
  );
  border: 2px solid rgba(9, 194, 105, 0.25);
  box-shadow: 0 0 0 6px rgba(9, 194, 105, 0.06);
}

.cs-5 {
  background: linear-gradient(
    135deg,
    rgba(124, 92, 252, 0.15),
    rgba(124, 92, 252, 0.08)
  );
  border: 2px solid rgba(124, 92, 252, 0.25);
  box-shadow: 0 0 0 6px rgba(124, 92, 252, 0.06);
}

.care-step-label {
  font-family: var(--font-head);
  font-size: 0.875rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
}

.care-step-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
  padding: 0 0.5rem;
}

/* Connector between steps */
.care-connector {
  flex: 1;
  display: flex;
  align-items: flex-start;
  padding-top: 32px;
  min-width: 24px;
}

.care-connector-line {
  width: 100%;
  height: 2px;
  background: var(--border);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

.care-connector-pulse {
  position: absolute;
  top: -1px;
  left: -40%;
  width: 40%;
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--blue-new-dark),
    transparent
  );
  animation: carePulse 2.5s ease-in-out infinite;
}

.care-connector:nth-child(2) .care-connector-pulse {
  animation-delay: 0s;
}

.care-connector:nth-child(4) .care-connector-pulse {
  animation-delay: 0.6s;
}

.care-connector:nth-child(6) .care-connector-pulse {
  animation-delay: 1.2s;
}

.care-connector:nth-child(8) .care-connector-pulse {
  animation-delay: 1.8s;
}

@keyframes carePulse {
  0% {
    left: -40%;
  }

  100% {
    left: 130%;
  }
}

/* Review cards */
.care-reviews {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1.5rem;
  align-items: stretch;
  max-width: 900px;
  margin: 0 auto;
}

.care-review-card {
  background: var(--bg-lighter);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition:
    box-shadow 0.2s,
    border-color 0.2s;
}

.care-review-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--border-dark);
}

.crv-top {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.85rem;
}

.crv-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}

.crv-info {
  flex: 1;
}

.crv-name {
  font-weight: 800;
  font-size: 0.88rem;
  color: var(--text-dark);
}

.crv-role {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 0.1rem;
  line-height: 1.4;
}

.crv-g2 {
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 900;
  color: #fff;
  background: #ff492c;
  border-radius: 5px;
  padding: 0.2rem 0.45rem;
  letter-spacing: 0.02em;
}

.crv-stars {
  color: #f59e0b;
  font-size: 0.9rem;
  letter-spacing: 1px;
  margin-bottom: 0.65rem;
}

.crv-text {
  font-size: 0.82rem;
  color: var(--text-body);
  line-height: 1.7;
  font-style: italic;
}

/* Users Love Us badge */
.care-loves-us {
  display: flex;
  align-items: center;
  justify-content: center;
}

.clu-inner {
  background: var(--bg-white);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 1.5rem 1.75rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  min-width: 120px;
}

.clu-g2 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 900;
  color: #fff;
  background: #ff492c;
  border-radius: 6px;
  padding: 0.25rem 0.55rem;
  display: inline-block;
  margin-bottom: 0.6rem;
}

.clu-text {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.3;
  margin-bottom: 0.5rem;
}

.clu-stars {
  color: #f59e0b;
  font-size: 0.85rem;
  letter-spacing: 1px;
}

/* ═══════════ TRUSTED BY — REVIEW CARDS ═══════════ */
.proof-sec {
  background: var(--bg-light);
  padding: 48px 5% 72px;
}

.award-row {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.award {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--bg-white);
  border: 1.5px solid var(--border);
  border-radius: 100px;
  padding: 0.5rem 1.1rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-body);
  box-shadow: var(--shadow-sm);
}

.award .stars {
  color: #f59e0b;
}

.award-cta {
  text-decoration: none;
  background: var(--blue-new-light);
  border-color: rgba(124, 92, 252, 0.25);
  color: var(--text-dark);
  font-weight: 700;
  transition: all 0.2s;
}

.award-cta:hover {
  background: var(--blue-new-light);
  border-color: var(--blue-new-dark);
}

/* ── Use cases middle badge ── */
.plu-usecases {
  padding: 1.75rem 1.5rem;
  min-width: 160px;
  max-width: 200px;
  border-radius: 18px;
}

.plu-uc-ico {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.plu-uc-text {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.4;
  margin-bottom: 1rem;
}

.plu-uc-btn {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--blue-new-dark);
  text-decoration: none;
  border: 1.5px solid rgba(9, 194, 105, 0.3);
  border-radius: 8px;
  padding: 0.45rem 0.85rem;
  background: var(--blue-new-light);
  transition: all 0.2s;
}

.plu-uc-btn:hover {
  background: var(--blue-new-mid);
  border-color: var(--text-dark);
}

.proof-reviews-grid {
  display: grid;
  grid-template-columns: 1fr 200px 1fr;
  gap: 1.5rem;
  align-items: stretch;
  max-width: 1000px;
  margin: 0 auto;
}

.prv-card {
  background: var(--bg-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition:
    box-shadow 0.2s,
    border-color 0.2s;
  display: flex;
  flex-direction: column;
}

.prv-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--border-dark);
}

.prv-top {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 0.85rem;
}

.prv-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}

.prv-info {
  flex: 1;
}

.prv-name {
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.prv-role {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.1rem;
}

.prv-company {
  font-size: 0.72rem;
  color: var(--text-faint);
  margin-top: 0.1rem;
}

.prv-g2 {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 900;
  color: #fff;
  background: #f59e0b;
  border-radius: 5px;
  padding: 0.22rem 0.5rem;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}

.prv-stars {
  color: #f59e0b;
  font-size: 0.95rem;
  letter-spacing: 1.5px;
  margin-bottom: 0.75rem;
}

.prv-text {
  font-size: 0.9rem;
  color: var(--color-444);
  line-height: 1.8;
  font-style: italic;
  flex: 1;
}

.prv-loves-us {
  display: flex;
  align-items: stretch;
  justify-content: center;
  width: 100%;
}

.plu-inner {
  background: var(--bg-white);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 1.75rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.plu-g2 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 900;
  color: #fff;
  background: #ff492c;
  border-radius: 7px;
  padding: 0.3rem 0.6rem;
  display: inline-block;
  margin-bottom: 0.6rem;
}

.plu-text {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.3;
  margin-bottom: 0.55rem;
}

.plu-stars {
  color: #f59e0b;
  font-size: 0.9rem;
  letter-spacing: 1.5px;
}

/* ═══════════ CONSULTING ═══════════ */
.consult {
  background: var(--bg-white);
  padding: 72px 5%;
}

.cons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step {
  display: flex;
  gap: 1.25rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
}

.step:last-child {
  border-bottom: none;
}

.step-n {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--blue-new-light);
  border: 1.5px solid var(--purple-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--text-dark);
  flex-shrink: 0;
  margin-top: 2px;
}

.step h4 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 0.3rem;
}

.step p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ═══════════ RESOURCES — CREATIVE GRID ═══════════ */
.res-sec {
  background: var(--bg-light);
  padding: 72px 5%;
  overflow: hidden;
  position: relative;
}

.res-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 60% 50% at 80% 50%,
      rgba(9, 194, 105, 0.04) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 40% 40% at 20% 50%,
      rgba(124, 92, 252, 0.04) 0%,
      transparent 60%
    );
  pointer-events: none;
}

.res-top {
  margin-bottom: 36px;
  position: relative;
  z-index: 2;
}

.res-top .eyebrow {
  /* color: var(--purple); */
}

.res-top .sec-title {
  color: var(--text-dark);
}

.res-grid-creative {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1rem;
  position: relative;
  z-index: 2;
}

.res-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1.5px solid var(--border);
  background: var(--bg-white);
  transition:
    border-color 0.25s,
    transform 0.25s,
    box-shadow 0.25s;
  text-decoration: none;
  color: inherit;
  display: block;
}

.res-card:hover {
  border-color: var(--border-dark);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.res-card-bg {
  position: absolute;
  inset: 0;
  transition: opacity 0.3s;
}

.res-card:hover .res-card-bg {
  opacity: 1.3;
}

.res-card-content {
  position: relative;
  z-index: 2;
  padding: 1.6rem;
}

.res-bignum {
  font-family: var(--font-head);
  font-size: 4rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  opacity: 0.05;
  position: absolute;
  right: 1.25rem;
  top: 0.75rem;
  pointer-events: none;
  color: var(--text-dark);
}

.res-ico-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 0.9rem;
}

.res-card h3 {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.45rem;
}

.res-card p {
  font-size: 16px;
  color: var(--color-444);
  line-height: 26px;
  padding-right: 30px;
}

.res-arrow {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--text-faint);
  transition: all 0.2s;
  line-height: 0;
}

.res-card:hover .res-arrow {
  border-color: var(--blue-new-dark);
  color: var(--blue-new-dark);
}

.res-articles {
  background: var(--bg-white);
}

.res-articles .res-card-bg {
  background: linear-gradient(
    135deg,
    rgba(124, 92, 252, 0.05) 0%,
    transparent 55%
  );
}

.res-articles .res-ico-circle {
  background: var(--purple-light);
}

.res-videos {
  background: var(--bg-white);
}

.res-videos .res-card-bg {
  background: linear-gradient(
    135deg,
    rgba(9, 194, 105, 0.06) 0%,
    transparent 55%
  );
}

.res-videos .res-ico-circle {
  background: var(--blue-new-light);
}

.res-guides {
  background: var(--bg-white);
}

.res-guides .res-card-bg {
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.05) 0%,
    transparent 55%
  );
}

.res-guides .res-ico-circle {
  background: var(--blue-light);
}

/* explore all */
.res-explore {
  grid-column: span 3;
  background: var(--bg-white);
  border-radius: 12px;
  border: 1.5px solid var(--border);
  padding: 1.4rem 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  color: inherit;
  transition:
    background 0.2s,
    border-color 0.2s;
}

.res-explore:hover {
  border-color: var(--border-dark);
}
.res-explore-cta,
.res-explore span {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-muted);
}

.res-explore-cta {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* ═══════════ FINAL CTA ═══════════ */
.cta-sec {
  background: var(--bg-lighter);
  padding: 80px 5%;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    ellipse 55% 55% at 50% 50%,
    #3a59ec2b 0%,
    transparent 65%
  );
}

.cta-sec h2 {
  font-family: var(--font-head);
  font-size: clamp(3rem, 5.5vw, 4.8rem);
  font-weight: 800;
  letter-spacing: -0.032em;
  color: var(--text-dark);
  margin-bottom: 0.9rem;
  position: relative;
}

.cta-sec h2 span {
  background: linear-gradient(
    135deg,
    var(--text-dark) 0%,
    var(--text-dark) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-sec p {
  /* font-size: 1rem;
    color: var(--text-muted); */
  max-width: 480px;
  /* margin: 0 auto 0.75rem; */
  position: relative;
  margin-left: auto;
  margin-right: auto;
}

.cta-sub-main {
  font-size: 1.4rem !important;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--text-dark) !important;
  margin-bottom: 0.75rem !important;
}

.cta-sub-main + p {
  margin-bottom: 2rem !important;
}

.cta-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  position: relative;
}

.btn-wht {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark);
  background: var(--bg-white);
  border: 1.5px solid var(--border-dark);
  border-radius: 10px;
  padding: 0.9rem 2.1rem;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-wht:hover {
  border-color: var(--purple);
  color: var(--purple);
  transform: translateY(-1px);
}

/* ═══════════ FOOTER ═══════════ */


.ft {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.fl {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.65rem;
  display: block;
}

.fl span {
  color: var(--text-dark);
}

.fb p {
  font-size: 0.82rem;
  color: var(--text-muted);
  max-width: 260px;
  line-height: 1.7;
}

.fc h4 {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 0.85rem;
}

.fc ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.fc a {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.fc a:hover {
  color: var(--text-dark);
}

.fb-bot {
  border-top: 1px solid var(--border);
  padding-top: 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  max-width: 1200px;
  margin: 0 auto;
}

.fb-bot p {
  font-size: 0.78rem;
  color: var(--text-faint);
}

.fb-bot a {
  color: var(--text-faint);
  text-decoration: none;
  margin-left: 1.5rem;
  font-size: 0.78rem;
  transition: color 0.2s;
}

.fb-bot a:hover {
  color: var(--text-dark);
}

/* ═══════════ AI ACCENT BANNER ═══════════ */
.ai-banner {
  background: linear-gradient(135deg, #0f1123 0%, #1a1040 50%, #0f1123 100%);
  position: relative;
  overflow: hidden;
}

.ai-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 60% 200% at 30% 50%,
      rgba(124, 92, 252, 0.18) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 40% 200% at 80% 50%,
      rgba(9, 194, 105, 0.1) 0%,
      transparent 60%
    );
  pointer-events: none;
}

.ai-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2.25rem 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  position: relative;
  z-index: 2;
}

.ai-banner-left {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.ai-banner-ico {
  font-size: 2rem;
  flex-shrink: 0;
  filter: drop-shadow(0 0 12px rgba(124, 92, 252, 0.6));
}

.ai-banner-headline {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 0.25rem;
}

.ai-banner-sub {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  max-width: 520px;
  line-height: 1.6;
}

.ai-banner-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--blue-new-dark);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  border-radius: 10px;
  padding: 0.8rem 1.6rem;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all 0.2s;
  box-shadow: 0 4px 20px rgba(124, 92, 252, 0.35);
}

.ai-banner-cta:hover {
  background: var(--blue-new-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(124, 92, 252, 0.45);
}

/* ## custom css J - 5-05-2026 start*/
.plu-usecases .circle_new_button {
  padding: 10px;
  font-size: 12px;
  font-weight: 500;
}

.mw__520 {
  max-width: 520px;
}

.color__444 {
  color: var(--color-444);
}

/* End */

/* ═══════════ RESPONSIVE ═══════════ */
@media (max-width: 960px) {
  .ai-banner-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }

  .ai-banner-cta {
    align-self: stretch;
    justify-content: center;
  }

  .nav-links {
    display: none;
  }

  .wj-cards-inner {
    flex-direction: column;
    align-items: center;
  }

  .wj-card {
    width: 100%;
    max-width: 420px;
  }

  .vs-grid,
  .cons-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .caps-inner {
    grid-template-columns: 1fr;
  }

  .caps-nav {
    padding: 20px 0;
    flex-direction: row;
    overflow-x: auto;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .caps-panels {
    padding: 2rem 0 0;
  }

  .wj-top {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  /* ── What JOP feature pills row ── */
  .wj-stats-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 40px;
  }

  .wj-stat-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--bg-white);
    border: 1.5px solid var(--border);
    border-radius: 100px;
    padding: 0.65rem 1.25rem;
    box-shadow: var(--shadow-sm);
  }

  .wj-stat-divider {
    display: none;
  }

  .wj-stat-num {
    font-size: 1.1rem;
    line-height: 1;
  }

  .wj-stat-label {
    font-size: 0.85rem;
    color: var(--text-body);
    font-weight: 600;
  }

  .wj-pillars {
    grid-template-columns: 1fr;
  }

  .edge-tab-panel {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .edge-tab-nav {
    flex-wrap: wrap;
  }

  .edge-tab {
    flex: 1 1 45%;
  }

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

  .edge-feat-card.featured {
    grid-column: span 1;
  }

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

  .edge-stat {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .ind-layout {
    grid-template-columns: 1fr;
  }

  .care-steps {
    gap: 0;
    flex-wrap: nowrap;
  }

  .care-step {
    min-width: 100px;
  }

  .care-step-ico {
    width: 52px;
    height: 52px;
    font-size: 1.2rem;
  }

  .care-reviews {
    grid-template-columns: 1fr;
    max-width: 520px;
  }

  .care-loves-us {
    order: -1;
  }

  .ind-tabs {
    max-width: 100%;
  }

  .quotes-grid,
    /* ── Use cases middle badge ── */
    .plu-usecases {
    padding: 1.75rem 1.5rem;
    min-width: 160px;
    max-width: 200px;
    border-radius: 18px;
  }

  .plu-uc-ico {
    font-size: 2rem;
    margin-bottom: 0.75rem;
  }

  .plu-uc-text {
    font-family: var(--font-head);
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.4;
    margin-bottom: 1rem;
  }

  .plu-uc-btn {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--blue-new-dark);
    text-decoration: none;
    border: 1.5px solid rgba(9, 194, 105, 0.3);
    border-radius: 8px;
    padding: 0.45rem 0.85rem;
    background: var(--blue-new-light);
    transition: all 0.2s;
  }

  .plu-uc-btn:hover {
    background: var(--blue-new-mid);
    border-color: var(--text-dark);
  }

  .proof-reviews-grid {
    grid-template-columns: 1fr;
    max-width: 540px;
    margin: 0 auto;
  }

  .prv-loves-us {
    order: -1;
  }

  .res-grid-creative {
    grid-template-columns: 1fr;
  }

  .res-explore {
    grid-column: span 1;
  }

  .ft {
    grid-template-columns: 1fr 1fr;
  }

  .ai-arena {
    height: 320px;
  }

  .ai-node-1 {
    left: 12%;
  }

  .ai-node-3 {
    right: 12%;
    left: auto;
    transform: translate(50%, -50%);
  }
}

@media (max-width: 767px) {
  .hero {
    padding: 20px 3% 20px;
  }

  .ft {
    grid-template-columns: 1fr;
  }

  .ai-arena {
    height: 260px;
  }

  .ai-node-1 {
    left: 8%;
  }

  .ai-node-2 {
    left: 50%;
  }

  .ai-node-3 {
    right: 8%;
    left: auto;
    transform: translate(50%, -50%);
  }

  .ai-hex {
    width: 130px;
    height: 130px;
  }

  .ai-node-2 .ai-hex {
    width: 150px;
    height: 150px;
  }

  .ai-node-verb {
    font-size: 1.1rem;
  }

  .ai-node-desc {
    font-size: 0.72rem;
  }

  .caps-nav {
    flex-direction: column;
    min-height: auto;
  }

  div#capabilities {
    padding-bottom: 50px;
  }

  .edge-tab-nav .edge-tab {
    width: 100%;
    flex: 1 1 100%;
  }

  .ind-panels .ind-panel.active {
    flex-wrap: wrap;
    display: flex;
  }

  .care-steps {
    justify-content: flex-start;
  }

  .care-step {
    min-width: 137px;
  }

  .ind-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 12px;
  }

  .cta-btns {
    flex-wrap: wrap;
  }

  .wj-top {
    gap: 0px;
  }

  .res-card-content p {
    max-width: 250px !important;
  }
}

/* Add custom css Start */
.btn__cnt {
  background: transparent;
  color: var(--blue-new-dark);
}

.btn__cnt:hover {
  background: var(--blue-new-dark);
  color: var(--bg-white);
}

.circle_new_button {
  text-decoration: none;
}

.edge-bg-lines {
  display: none;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

span.logo-item img {
  max-width: 125px;
  width: 100%;
  height: auto;
}

.care-step-ico img {
  width: 36px;
  height: 36px;
}

.color__fff {
  color: var(--bg-white);
}

.wrapper__nj__home .heading__02 {
  font-size: 45px !important;
  line-height: 55px !important;
}
.hl-blue-need {
  color: var(--blue-new-dark) !important;
}
.text-uppercase {
  text-transform: uppercase !important;
}
.caps-panel-header .heading__03 {
  font-size: 36px !important;
  line-height: 45px !important;
}
/* Add custom css  End */

/* new CSS AZ 13-05-2026 */

.circle_new_button {
  padding: 15.5px 34px;
  line-height: 19px;
}

.res-explore-cta span {
  transform: rotate(45deg);
}
.hero-heading {
  font-size: 75px !important;
  line-height: 80px !important;
}
.wrapper__nj__home .heading__02 {
  font-size: 45px !important;
  line-height: 55px !important;
}
.mb__24{
	margin-bottom:24px !important;
}

@media (max-width: 1024px) {
  .wrapper__nj__home .heading__02 {
    font-size: 32px !important;
    line-height: 35px !important;
  }
}

@media (max-width: 767px) {
  .hero {
    padding-top: 85px;
  }

  .hero-proof {
    margin-top: 0rem;
  }

  .customer-bar-inner {
    flex-direction: column;
    gap: 1.5rem;
  }

  .customer-logos {
    width: 100%;
    overflow: hidden;
  }

  .wj-top-right div {
    justify-content: center;
  }

  .heading__01 {
    font-size: 28px !important;
    line-height: 38px !important;
  }
}

@media (max-width: 576px) {
  .caps-panel-header .heading__03 {
    font-size: 24px !important;
    line-height: 30px !important;
  }
  .hero-heading {
    font-size: 32px !important;
    line-height: 40px !important;
  }

  .wrapper__nj__home .heading__02 {
    font-size: 28px !important;
    line-height: 32px !important;
  }

  .hero-proof svg,
  .award-row svg {
    margin-top: 30px;
    max-width: 270px;
  }

  .ai-node {
    position: relative !important;
    left: 0;
    right: unset;
    top: unset;
    bottom: unset;
    transform: unset;
    max-width: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
  }

  div#aiArena {
    height: auto;
    display: flex;
    flex-wrap: wrap;
    row-gap: 20px;
    justify-content: center;
  }

  .ai-hex {
    width: 220px !important;
    height: 220px !important;
  }
  canvas#aiCanvas {
    display: none;
  }

  .res-explore {
    gap: 5px;
    flex-wrap: wrap;
  }
  .hrms-card,
  .jop-bright-card {
    padding: 20px !important;
  }
}
