/* =============================================
   ENSEUR HOMEPAGE — Option C · Bold Light
   ============================================= */

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

:root {
  --blue: #2456E6;
  --blue-mid: #1B3FA8;
  --blue-lt: #3B6BFF;
  --blue-pale: #E6EDFE;
  --blue-xlt: #E8EEFE;
  --bg: #F5F7FC;
  --white: #ffffff;
  --ink: #11142A;
  --ink-mid: #2A2E45;
  --ink-muted: #545971;
  --ink-faint: #6C7088;
  --border: #E9ECF4;
  --border-lt: #ECEFF6;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  /* background: var(--bg); */
  color: var(--ink);
  min-height: 100vh;
  overflow-x: hidden;
}

.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 32px;
}

/* --- Typography Utilities --- */
.gradient-text {
  /* background: linear-gradient(120deg, var(--blue-lt), var(--blue-mid)); */
  background-image: linear-gradient(211deg, #0699e9 0%, #0dd1ab 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* --- Animations --- */
@keyframes floaty {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-14px)
  }
}

@keyframes floaty2 {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-16px)
  }
}

@keyframes floaty3 {

  0%,
  100% {
    transform: translateY(0) rotate(-2deg)
  }

  50% {
    transform: translateY(-12px) rotate(-2deg)
  }
}

@keyframes drift {

  0%,
  100% {
    transform: translate(0, 0) scale(1)
  }

  33% {
    transform: translate(34px, -26px) scale(1.1)
  }

  66% {
    transform: translate(-24px, 20px) scale(0.94)
  }
}

@keyframes driftB {

  0%,
  100% {
    transform: translate(0, 0) scale(1)
  }

  50% {
    transform: translate(-30px, 24px) scale(1.12)
  }
}

@keyframes spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg)
  }
}

@keyframes spinrev {
  to {
    transform: translate(-50%, -50%) rotate(-360deg)
  }
}

@keyframes dashflow {
  to {
    stroke-dashoffset: -28
  }
}

@keyframes marquee {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

@keyframes pulsering {
  0% {
    transform: translate(-50%, -50%) scale(.6);
    opacity: .55;
  }

  100% {
    transform: translate(-50%, -50%) scale(1.7);
    opacity: 0;
  }
}

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

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

@keyframes countUp {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.anim-floaty {
  animation: floaty 7s ease-in-out infinite;
}

.anim-floaty2 {
  animation: floaty2 6s ease-in-out infinite;
}

.anim-floaty3 {
  animation: floaty3 8s ease-in-out infinite;
}

/* =============================================
   NAV
   ============================================= */
.nav {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 1300px;
  z-index: 900;
  background: rgba(255, 255, 255, 0.80);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(36, 86, 230, 0.12);
  border-radius: 16px;
  box-shadow: 0 8px 32px -8px rgba(17, 20, 42, 0.12);
}

.nav-inner {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 20px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-icon {
  width: 31px;
  height: 31px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--blue-lt), var(--blue-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px -6px rgba(36, 86, 230, 0.6);
}

.logo-ring {
  width: 13px;
  height: 13px;
  border: 2.5px solid #fff;
  border-radius: 50%;
  border-right-color: transparent;
}

.logo-text {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.logo-img {
  height: 54px;
  width: auto;
  display: block;
  object-fit: contain;
  filter: brightness(0);
}

.logo-img-footer {
  filter: brightness(0) invert(1);
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 14.5px;
  font-weight: 500;
  color: #000000;
  align-items: baseline;
}

.nav-link {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color .15s;
}

.nav-link:hover {
  color: #0bbcc3;
}

.nav-link--active {
  color: #2456E6 !important;
  font-weight: 700;
}

a.nav-link {
  text-decoration: none;
  color: inherit;
}

.caret {
  font-size: 12px;
  display: inline-block;
  transition: transform .45s ease;
  vertical-align: middle;
  line-height: 1;
}

/* Products dropdown */
.nav-dropdown-wrap {
  position: relative;
}

.nav-dropdown-wrap::after {
  content: '';
  position: absolute;
  top: 100%;
  left: -20px;
  right: -20px;
  height: 18px;
}

.nav-dropdown-wrap:hover .caret,
.nav-dropdown-wrap.open .caret {
  transform: rotate(180deg);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 24px 52px -12px rgba(17, 20, 42, 0.22);
  padding: 8px;
  min-width: 284px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .2s ease .35s, transform .2s ease .35s, visibility .2s ease .35s;
  z-index: 1000;
}

.nav-dropdown-wrap:hover .nav-dropdown,
.nav-dropdown-wrap.open .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}

.nav-dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 12px;
  border-radius: 10px;
  text-decoration: none;
  color: var(--ink);
  transition: background .15s;
}

.nav-dropdown-item:hover {
  background: var(--bg);
}

.nav-dd-icon {
  width: 36px;
  height: 36px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 8px;
}

.nav-dd-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
}

.nav-dd-sub {
  font-size: 11px;
  color: var(--ink-faint);
  margin-top: 2px;
}

/* Mobile nav products */
.mobile-products-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
  padding: 2px 0;
}

.mobile-nav-section-label {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
}

.mobile-products-caret {
  font-size: 13px;
  color: var(--ink-mid);
  transition: transform 0.25s ease;
}

.mobile-products-toggle.open .mobile-products-caret {
  transform: rotate(180deg);
}

.mobile-nav-product-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-left: 14px;
  border-left: 2px solid var(--border);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.25s ease;
  opacity: 0;
  margin-top: -10px;
}

.mobile-nav-product-links.open {
  max-height: 300px;
  opacity: 1;
  margin-top: 0;
}

.mobile-product-link {
  font-size: 14.5px;
  color: var(--ink-mid);
  text-decoration: none;
}

/* Nav actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.nav-free {
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  color: rgb(11, 188, 195);
  background: #fff;
  border: 1px solid #D6DEF0;
  padding: 14px 20px;
  border-radius: 25px;
  cursor: pointer;
  /* box-shadow: 0 8px 20px -12px rgba(17, 20, 42, 0.18); */
  transition: all .15s;
}

.nav-free:hover {
  opacity: 1;
  color: #0bbcc3;
  transform: translateY(-1px);
}

/* Hamburger (mobile) */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  display: block;
  transition: all .25s;
}

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  position: fixed;
  top: 88px;
  left: 12px;
  right: 12px;
  bottom: auto;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(36, 86, 230, 0.10);
  border-radius: 16px;
  box-shadow: 0 16px 48px -12px rgba(17, 20, 42, 0.18);
  z-index: 850;
  padding: 24px 28px;
  transform: translateY(-16px);
  opacity: 0;
  transition: transform .3s ease, opacity .25s ease;
  pointer-events: none;
}

.mobile-nav.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-size: 16px;
  font-weight: 500;
}

/* Buttons */
.btn-primary {
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  /* background: linear-gradient(135deg, var(--blue-lt), var(--blue)); */
  border: none;
  padding: 14px 21px;
  border-radius: 25px;
  cursor: pointer;
  box-shadow: 0 10px 22px -10px rgb(159 159 159 / 70%);
  white-space: nowrap;
  transition: opacity .15s, transform .15s;
  background-image: linear-gradient(211deg, #0699e9 0%, #0dd1ab 100%);
}

.btn-primary:hover {
  opacity: .9;
  transform: translateY(-1px);
}

.btn-secondary {
  font-family: inherit;
  font-size: 15.5px;
  font-weight: 600;
  color: rgb(11, 188, 195);
  background: #fff;
  border: 1px solid #D6DEF0;
  padding: 16px 28px;
  border-radius: 25px;
  cursor: pointer;
  /* box-shadow: 0 8px 20px -12px rgba(17, 20, 42, 0.18); */
  transition: all .15s;
}

.btn-secondary:hover {
  /* background: #F0F5FF; */
  transform: translateY(-1px);
  color: rgb(11, 188, 195);
}

.btn-lg {
  padding: 16px 28px;
  font-size: 14px;
  border-radius: 25px;
}

.btn-primary.btn-lg {
  box-shadow: 0 10px 22px -10px rgb(159 159 159 / 70%);
}

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  overflow: hidden;
  background: white;
  padding-top: 0px;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

/* .hero-blob-a {
  top: -160px;
  right: -80px;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(59, 107, 255, 0.22), transparent 62%);
  animation: drift 18s ease-in-out infinite;
} */

/* .hero-blob-b {
  top: 120px;
  left: -140px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(36, 86, 230, 0.13), transparent 64%);
  animation: driftB 22s ease-in-out infinite;
} */

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 24px;
  align-items: center;
  padding-top: 16px;
  padding-bottom: 16px;
  position: relative;
  z-index: 2;
}

/* Hero copy */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue-mid);
  background: var(--blue-pale);
  border: 1px solid #CFDCFB;
  padding: 7px 13px;
  border-radius: 100px;
  margin-bottom: 26px;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 4px rgba(36, 86, 230, 0.18);
  flex-shrink: 0;
}

.hero-h1 {
  /* font-family: 'Space Grotesk', sans-serif; */
  font-weight: 700;
  font-size: 56px;
  line-height: 1.22;
  letter-spacing: -0.035em;
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-muted);
  margin-bottom: 34px;
  max-width: 480px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13.5px;
  color: #6C7088;
}

.avatars {
  display: flex;
}

.avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid var(--bg);
}

.avatar:not(:first-child) {
  margin-left: -10px;
}

.avatar:nth-child(1) {
  background: #E6CFA0;
}

.avatar:nth-child(2) {
  background: #B8D2A6;
}

.avatar:nth-child(3) {
  background: #A9C0F7;
}

.avatar:nth-child(4) {
  background: #EBB6A4;
}

/* Ecosystem map */
.ecosystem-map {
  position: relative;
  aspect-ratio: 1 / 1;
}

.orbit {
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  pointer-events: none;
}

.orbit-inner {
  width: 70%;
  height: 70%;
  transform: translate(-50%, -50%);
  border: 1.5px dashed rgba(0, 0, 0, 0.28);
  animation: spin 38s linear infinite;
}

.orbit-outer {
  width: 96%;
  height: 96%;
  transform: translate(-50%, -50%);
  border: 1px dashed rgba(0, 0, 0, 0.18);
  animation: spinrev 60s linear infinite;
}

.connectors {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.dash-flow {
  animation: dashflow 1.1s linear infinite;
}

.pulse-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 116px;
  height: 116px;
  border-radius: 50%;
  border: 2px solid rgba(0, 0, 0, 0.5);
  transform: translate(-50%, -50%);
}

.pr1 {
  animation: pulsering 2.8s ease-out infinite;
}

.pr2 {
  animation: pulsering 2.8s ease-out infinite 1.4s;
}

.hub {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 116px;
  height: 116px;
  border-radius: 50%;
  background: #000;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 8px rgba(0, 0, 0, 0.1), 0 24px 50px -16px rgba(0, 0, 0, 0.5);
  z-index: 5;
}

.hub-ring {
  width: 18px;
  height: 18px;
  border: 3px solid #fff;
  border-radius: 50%;
  border-right-color: transparent;
  margin-bottom: 5px;
}

.hub-label {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 16px;
}

.node {
  position: absolute;
  width: 200px;
  z-index: 4;
}

.node-tl {
  left: -6px;
  top: 9%;
}

.node-tr {
  right: -6px;
  top: 9%;
}

.node-bl {
  left: -6px;
  bottom: 5%;
}

.node-br {
  right: -6px;
  bottom: 8%;
}

/* ══════════════════════════════════════════════════
   HERO SPHERE — THREE.js WebGL futuristic canvas
══════════════════════════════════════════════════ */
.hero-sphere-wrap {
  position: relative;
  width: 150%;
  height: 680px;
  margin-right: -10%;
  border-radius: 0;
  overflow: visible;
  background: none;
}

/* no overlay — canvas is transparent, sphere floats on hero bg */

.hero-sphere-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 2;
  left: -130px;
}

/* Product cards */
.sph-card {
  position: absolute;
  width: 168px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 14px 40px -16px rgba(17, 20, 42, 0.32);
  overflow: hidden;
  z-index: 4;
}

.sph-card--tl {
  left: -8px;
  top: 8%;
}

.sph-card--tr {
  right: -8px;
  top: 8%;
}

.sph-card--bl {
  left: -8px;
  bottom: 8%;
}

.sph-card--br {
  right: -8px;
  bottom: 8%;
}

.sph-card-topbar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
}

.sph-card-dot {
  font-size: 7px;
  color: rgba(255, 255, 255, 0.85);
}

.sph-card-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #fff;
}

.sph-card-body {
  padding: 10px 12px 12px;
}

/* Expohive: bar chart */
.sph-mock-bars {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 48px;
}

.sph-mock-bar {
  flex: 1;
  border-radius: 3px 3px 0 0;
}

/* Awardocado: nomination rows */
.sph-mock-row {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 6px;
}

.sph-mock-row:last-child {
  margin-bottom: 0;
}

.sph-mock-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.sph-mock-line {
  height: 6px;
  border-radius: 3px;
  background: #E2EFE1;
}

/* Intelligence Suite: line chart SVG */
.sph-mock-chart {
  display: block;
  width: 100%;
  height: 48px;
}

/* Event Marketing: metric bars */
.sph-mock-metric {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
}

.sph-mock-metric:last-child {
  margin-bottom: 0;
}

.sph-mock-metric-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 8.5px;
  color: #9198B0;
  width: 32px;
  flex-shrink: 0;
}

.sph-mock-metric-bar {
  flex: 1;
  height: 5px;
  background: #F0F2F8;
  border-radius: 3px;
  overflow: hidden;
}

.sph-mock-metric-bar>div {
  height: 100%;
  border-radius: 3px;
}

.node-card {
  display: flex;
  align-items: center;
  gap: 11px;
  background: #fff;
  border: 1px solid #ECEFF6;
  border-radius: 10px;
  padding: 12px 14px;
  box-shadow: 0 18px 38px -22px rgba(17, 20, 42, 0.4);
}

.node-icon {
  width: 40px;
  height: 40px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.node-name {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
}

.node-sub {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
}

/* =============================================
   MARQUEE
   ============================================= */
/* =============================================
   TRUST + STATS — Combined dark section
   ============================================= */
.trust-stats-section {
  position: relative;
  z-index: 2;
  background-image: url('../images/bg/home3-newsletter-bg.png'), linear-gradient(180deg, #0A0A0A 0%, #0A0A0A 100%);
  background-size: cover;
  background-position: center;
  padding: 52px 0 56px;
}

.trust-stats-section .marquee-label {
  color: white
}

.trust-stats-section .stats-grid {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
  /* margin-top: 44px; */
}

.trust-stats-section .stat-item {
  border-right-color: rgba(255, 255, 255, 0.1);
}

.trust-stats-section .stat-label {
  color: rgba(255, 255, 255, 0.5);
}

.trust-stats-section .stat-num {
  /* background-image: url('../images/bg/home3-newsletter-bg.png'); */
  background-size: 600px auto;
  background-position: center;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.marquee-section {
  position: relative;
  z-index: 2;
  padding: 40px 0 40px;
  /* background: #f6f6f6; */
}

.marquee-label {
  display: block;
  padding-bottom: 18px;
  /* font-family: 'JetBrains Mono', monospace; */
  font-size: 18px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #1d1d1d;
  text-align: center;
  margin-bottom: 20px;
}

.marquee-track-wrap {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  margin-top: 40px;
}

.marquee-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: marquee 55s linear infinite;
}

.logo-pill {
  height: 80px;
  width: 180px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid var(--border-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  /* box-shadow: 0 2px 8px -4px rgba(17, 20, 42, 0.1); */
  flex-shrink: 0;
  transition: box-shadow .2s;
}

.logo-pill:hover {
  box-shadow: 0 4px 14px -4px rgba(17, 20, 42, 0.18);
}

.logo-pill img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* =============================================
   STATS
   ============================================= */
.stats-section {
  position: relative;
  z-index: 2;
  /* background-color: #f4f4f4; */
}

.stats-section .container {
  padding-bottom: 40px;
  /* padding-top: 24px; */
}

.stats-grid {
  background: #fff;
  border: 1px solid var(--border-lt);
  border-radius: 10px;
  /* box-shadow: 0 24px 50px -34px rgba(17, 20, 42, 0.3); */
  box-shadow: rgb(75 75 75 / 30%) 0px 24px 50px -34px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
}

.stat-item {
  padding: 19px 31px;
  border-right: 1px solid #ebebeb;
  position: relative;
}

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

.stat-num {
  /* font-family: 'Space Grotesk', sans-serif; */
  font-weight: 700;
  font-size: 40px;
  letter-spacing: -0.02em;
  line-height: 1;
  /* background: linear-gradient(120deg, var(--blue-lt), var(--blue-mid)); */
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  background-image: linear-gradient(211deg, #0699e9 0%, #0dd1ab 100%);
}

.stat-label {
  font-size: 13.5px;
  color: var(--ink-faint);
  margin-top: 9px;
}

/* =============================================
   PRODUCTS
   ============================================= */
.products-section {
  position: relative;
  z-index: 2;
  background: #fff;
  border-top: 1px solid #EBEEF5;
  border-bottom: 1px solid #EBEEF5;
}

.products-section .container {
  padding-top: 60px;
  padding-bottom: 60px;
}

.products-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 44px;
}

.section-eyebrow {
  /* font-family: 'JetBrains Mono', monospace; */
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0bbcc3;
  margin-bottom: 14px;
}

.section-h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 44px;
  letter-spacing: -0.03em;
  line-height: 1.04;
  max-width: 620px;
}

.products-sub {
  font-size: 15px;
  color: var(--ink-faint);
  max-width: 320px;
  margin-bottom: 8px;
  line-height: 1.55;
}

.products-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

/* Individual product card */
.product-card {
  position: relative;
  background: #fff;
  border: 1px solid #E9ECF4;
  border-radius: 16px;
  overflow: hidden;
  transition: all .3s cubic-bezier(.2, .7, .2, 1);
  box-shadow: rgba(50, 50, 93, 0.12) 0px 8px 24px -6px, rgba(0, 0, 0, 0.08) 0px 4px 12px -4px;
  cursor: default;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: rgba(50, 50, 93, 0.22) 0px 18px 36px -8px, rgba(0, 0, 0, 0.15) 0px 8px 18px -6px;
}

/* Expohive — amber */
.product-card[data-key="expohive"] {
  background: linear-gradient(to left, #FFF8EC 0%, #ffffff 55%);
  border: 1px solid rgba(201, 138, 14, 0.2);
}

.product-card[data-key="expohive"] .product-icon {
  background: rgba(201, 138, 14, 0.1);
}

.product-card[data-key="expohive"] .chip {
  background: rgba(201, 138, 14, 0.08);
  border-color: rgba(201, 138, 14, 0.2);
  color: #7A5208;
}

.product-card[data-key="expohive"] .product-cat {
  color: #C98A0E;
}

/* Awardocado — green */
.product-card[data-key="awardocado"] {
  background: linear-gradient(to left, #F0FAF0 0%, #ffffff 55%);
  border: 1px solid rgba(79, 154, 62, 0.2);
}

.product-card[data-key="awardocado"] .product-icon {
  background: rgba(79, 154, 62, 0.1);
}

.product-card[data-key="awardocado"] .chip {
  background: rgba(79, 154, 62, 0.08);
  border-color: rgba(79, 154, 62, 0.2);
  color: #2D6022;
}

.product-card[data-key="awardocado"] .product-cat {
  color: #4F9A3E;
}

/* Intelligence Suite — teal */
.product-card[data-key="suite"] {
  background: linear-gradient(to left, #EDFAFA 0%, #ffffff 55%);
  border: 1px solid rgba(11, 188, 195, 0.2);
}

.product-card[data-key="suite"] .product-icon {
  background: rgba(11, 188, 195, 0.1);
}

.product-card[data-key="suite"] .chip {
  background: rgba(11, 188, 195, 0.08);
  border-color: rgba(11, 188, 195, 0.22);
  color: #0A7A80;
}

.product-card[data-key="suite"] .product-cat {
  color: rgb(11, 188, 195);
}

/* Event Marketing — orange */
.product-card[data-key="marketing"] {
  background: linear-gradient(to left, #FFF3EF 0%, #ffffff 55%);
  border: 1px solid rgba(224, 97, 59, 0.2);
}

.product-card[data-key="marketing"] .product-icon {
  background: rgb(244 244 244 / 10%);
}

.product-card[data-key="marketing"] .chip {
  background: rgba(224, 97, 59, 0.08);
  border-color: rgba(224, 97, 59, 0.2);
  color: #8A2E10;
}

.product-card[data-key="marketing"] .product-cat {
  color: #E0613B;
}

.product-content {
  padding: 30px;
}

.product-header-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.product-idx {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
}

.product-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.product-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-name {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 25px;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 6px;
}

.product-cat {
  font-size: 13px;
  font-weight: 600;
}

.own-badge {
  margin-left: auto;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--blue-mid);
  background: var(--blue-xlt);
  border: 1px solid #CFDCFB;
  padding: 6px 11px;
  border-radius: 100px;
  white-space: nowrap;
}

.product-desc {
  font-size: 16px;
  line-height: 1.6;
  color: #4C516A;
  margin-bottom: 20px;
  /* max-width: 470px; */
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 26px;
}

.chip {
  font-size: 12.5px;
  color: #4C516A;
  background: #F4F6FC;
  border: 1px solid #E6E9F2;
  padding: 6px 12px;
  border-radius: 100px;
}

.product-ctas {
  display: flex;
  align-items: center;
  gap: 18px;
}

.product-cta-link {
  font-size: 14.5px;
  font-weight: 700;
  color: rgb(65, 65, 65);
  cursor: pointer;
  transition: opacity .15s;
  text-decoration: none;
}

.product-cta-link:hover {
  opacity: .8;
}

.product-read {
  font-size: 13.5px;
  font-weight: 500;
  color: #8A8EA2;
  cursor: pointer;
}

/* Product visual panel */
.product-visual {
  position: relative;
  background: linear-gradient(150deg, #EFF3FD, #E4EBFB);
  border-left: 1px solid #EBEEF5;
  overflow: hidden;
  min-height: 220px;
}

.visual-hatch {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(135deg,
      rgba(36, 86, 230, 0.04), rgba(36, 86, 230, 0.04) 12px,
      transparent 12px, transparent 24px);
}

.visual-num {
  position: absolute;
  right: 22px;
  top: 20px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 92px;
  color: rgba(36, 86, 230, 0.07);
  line-height: 1;
  pointer-events: none;
}

/* Floating mini UI card */
.visual-card {
  position: absolute;
  left: 34px;
  top: 42px;
  width: 220px;
  background: #fff;
  border: 1px solid #EBEEF5;
  border-radius: 14px;
  padding: 15px;
  box-shadow: 0 24px 44px -22px rgba(17, 20, 42, 0.4);
}

.vc-header {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 12px;
}

.vc-icon {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
}

.vc-bar {
  height: 8px;
  width: 70px;
  border-radius: 10px;
  background: #EAEDF4;
}

.vc-line {
  height: 7px;
  border-radius: 10px;
  background: #F0F2F8;
  margin-bottom: 7px;
}

.vc-line.w100 {
  width: 100%;
}

.vc-line.w82 {
  width: 82%;
  margin-bottom: 14px;
}

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

.bar {
  flex: 1;
  border-radius: 3px;
}

/* Floating stat chip */
.visual-chip {
  position: absolute;
  right: 26px;
  bottom: 30px;
  background: #fff;
  border: 1px solid #EBEEF5;
  border-radius: 12px;
  padding: 11px 14px;
  box-shadow: 0 18px 36px -20px rgba(17, 20, 42, 0.42);
  display: flex;
  align-items: center;
  gap: 10px;
}

.chip-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  flex-shrink: 0;
}

.chip-live {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 15px;
  line-height: 1;
}

.chip-sub {
  font-size: 10px;
  color: #8A8EA2;
  white-space: nowrap;
}

/* How products connect */
.connect-note {
  margin-top: 24px;
  background: linear-gradient(135deg, #EFF3FD, #E7EEFC);
  border: 1px solid #DBE4F8;
  border-radius: 18px;
  padding: 22px 26px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.connect-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 8px 18px -10px rgba(36, 86, 230, 0.5);
  flex-shrink: 0;
}

.connect-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 3px;
}

.connect-body {
  font-size: 13.5px;
  color: var(--ink-muted);
  line-height: 1.5;
}

/* =============================================
   CTA BAND
   ============================================= */
.cta-band-section {
  position: relative;
  z-index: 2;
  background: #fff;
}

.cta-band-section .container {
  padding-top: 60px;
  padding-bottom: 60px;
}

.cta-band {
  position: relative;
  background-image: url(../images/bg/home3-newsletter-bg.png), linear-gradient(135deg, #0e1212, #030a0e);
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  padding: 40px 36px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  overflow: hidden;
}

.cta-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.cta-blob-a {
  right: -60px;
  top: -80px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.22), transparent 65%);
  animation: drift 16s ease-in-out infinite;
}

.cta-blob-b {
  left: 30%;
  bottom: -120px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(124, 160, 255, 0.4), transparent 68%);
  animation: driftB 20s ease-in-out infinite;
}

.cta-copy {
  position: relative;
  z-index: 2;
}

.cta-h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 40px;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
  line-height: 1.06;
}

.cta-sub {
  font-size: 16.5px;
  color: rgba(255, 255, 255, 0.82);
  max-width: 460px;
  line-height: 1.55;
}

.cta-buttons {
  display: flex;
  gap: 14px;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

.btn-white {
  font-family: inherit;
  font-size: 15.5px;
  font-weight: 600;
  color: #ffffff;
  /* background: #fff; */
  border: none;
  padding: 16px 28px;
  border-radius: 25px;
  cursor: pointer;
  box-shadow: 0 18px 34px -16px rgba(0, 0, 0, 0.5);
  transition: all .15s;
  white-space: nowrap;
  background-image: linear-gradient(211deg, #0699e9 0%, #0dd1ab 100%);
}

.btn-white:hover {
  opacity: .92;
  transform: translateY(-1px);
}

.btn-ghost {
  font-family: inherit;
  font-size: 15.5px;
  font-weight: 600;
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.32);
  padding: 16px 28px;
  border-radius: 25px;
  cursor: pointer;
  transition: all .15s;
  white-space: nowrap;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-1px);
}

/* =============================================
   CONTACT
   ============================================= */
.contact-section {
  position: relative;
  z-index: 2;
  background: #fff;
  border-top: 1px solid #EBEEF5;
}

.contact-grid {
  padding-top: 60px;
  padding-bottom: 60px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: start;
}

.contact-h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 38px;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
  line-height: 1.08;
}

.contact-sub {
  font-size: 15.5px;
  color: var(--ink-muted);
  line-height: 1.6;
  margin-bottom: 28px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--ink-mid);
}

.contact-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #f8f8f8;
  color: #0bbcc7;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Contact form */
.contact-form-wrap {
  background: white;
  border: 1px solid #E6E9F2;
  border-radius: 10px;
  padding: 32px;
  box-shadow: 0 24px 50px -34px rgba(17, 20, 42, 0.28);
}

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

.form-group {
  display: flex;
  flex-direction: column;
}

.form-full {
  grid-column: 1 / -1;
}

.form-label {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink-muted);
  margin-bottom: 7px;
}

.form-input {
  width: 100%;
  font-family: inherit;
  font-size: 14.5px;
  padding: 13px 14px;
  border: 1px solid #DBE0EC;
  border-radius: 10px;
  background: #fff;
  outline: none;
  color: var(--ink);
  transition: border-color .15s, box-shadow .15s;
  resize: vertical;
}

.form-input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(36, 86, 230, 0.12);
}

.form-input--invalid {
  border-color: #C0392B;
}

.form-input--invalid:focus {
  border-color: #C0392B;
  box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.12);
}

.field-error {
  display: block;
  min-height: 15px;
  margin-top: 5px;
  font-size: 12px;
  font-weight: 500;
  color: #C0392B;
}

.btn-submit {
  width: 100%;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  /* background: linear-gradient(135deg, var(--blue-lt), var(--blue)); */
  border: none;
  padding: 14px 21px;
  border-radius: 25px;
  cursor: pointer;
  /* box-shadow: 0 10px 22px -10px rgb(159 159 159 / 70%); */
  white-space: nowrap;
  transition: opacity .15s, transform .15s;
  background-image: linear-gradient(211deg, #0699e9 0%, #0dd1ab 100%);
}

.btn-submit:hover {
  opacity: .9;
  transform: translateY(-1px);
}

.form-status {
  margin-top: 12px;
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.5;
}

.form-status--ok {
  color: #3A7A2E;
}

.form-status--err {
  color: #C0392B;
}

/* =============================================
   COOKIE CONSENT BANNER
   ============================================= */
.cookie-banner {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 999;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  width: 428px;
  max-width: calc(100vw - 32px);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 24px 60px -20px rgba(17, 20, 42, 0.35);
  padding: 20px;
  opacity: 0;
  transform: translateY(24px);
  pointer-events: none;
  transition: opacity .35s ease, transform .35s ease;
}

.cookie-banner--visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.cookie-banner-icon {
  font-size: 22px;
  line-height: 1;
  flex-shrink: 0;
}

.cookie-banner-text {
  margin: 0 0 14px 0;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ink-muted);
}

.cookie-banner-link {
  color: var(--blue);
  font-weight: 600;
  text-decoration: underline;
}

.cookie-banner-link:hover {
  color: var(--blue-mid);
}

.cookie-banner-actions {
  display: flex;
  gap: 10px;
}

.cookie-btn {
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 10px;
  cursor: pointer;
  transition: opacity .15s, transform .15s;
  white-space: nowrap;
}

.cookie-btn:hover {
  opacity: .85;
  transform: translateY(-1px);
}

.cookie-btn-decline {
  background: #fff;
  color: var(--ink-muted);
  border: 1px solid var(--border);
}

.cookie-btn-accept {
  background: #000;
  color: #fff;
  border: 1px solid #000;
}

@media (max-width: 480px) {
  .cookie-banner {
    left: 16px;
    right: 16px;
    bottom: 16px;
    width: auto;
  }
}

/* Form success state */
.form-success {
  display: none;
  text-align: center;
  padding: 32px 0;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 17px;
  color: var(--blue);
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  position: relative;
  z-index: 2;
  background: #000000;
  color: #C9CEE0;
}

/* .footer-accent-bar {
  height: 5px;
  background: linear-gradient(135deg, var(--blue-lt), var(--blue-mid));
} */

.footer-grid {
  padding-top: 40px;
  padding-bottom: 40px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-brand .logo {
  margin-bottom: 16px;
}

.footer-tagline {
  font-size: 14px;
  line-height: 1.6;
  color: #ffffff;
  max-width: 280px;
}

.footer-col-title {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgb(11, 188, 195);
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 11px;
  font-size: 14px;
  color: #ffffff;
}

.footer-links span {
  cursor: pointer;
  transition: color .15s;
}

.footer-links span:hover {
  color: #fff;
}

.footer-bottom {
  padding-top: 22px;
  padding-bottom: 22px;
  border-top: 1px solid rgb(255 255 255 / 12%);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-size: 11px;
  color: #b3b3b3;
  gap: 10px;
}

.footer-policy-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.footer-policy-links a {
  color: #b3b3b3;
  text-decoration: none;
  transition: color .15s;
}

.footer-policy-links a:hover {
  color: #fff;
}

.footer-policy-sep {
  color: #555;
}

.footer-copyright {
  color: #8a8a8a;
}

/* =============================================
   RESPONSIVE
   ============================================= */
/* ── Floating nav: tablet landscape ── */
@media (max-width: 1100px) {
  .nav {
    width: calc(100% - 40px);
  }
}

@media (max-width: 1024px) {
  .hero-h1 {
    font-size: 50px;
  }

  .section-h2 {
    font-size: 38px;
  }

  .cta-h2 {
    font-size: 34px;
  }

  .cta-band {
    flex-direction: column;
    text-align: center;
  }

  .cta-buttons {
    justify-content: center;
  }

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

@media (max-width: 900px) {
  .container {
    padding: 40px 20px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .ecosystem-map {
    display: none;
  }

  .hero-sphere-wrap {
    display: none;
  }

  .products-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .products-list {
    grid-template-columns: 1fr;
  }

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

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

  .stat-item:nth-child(2) {
    border-right: none;
  }

  .stat-item:nth-child(n+3) {
    border-top: 1px solid #F0F2F8;
  }
}

@media (max-width: 680px) {

  /* Floating nav — compact mobile pill */
  .nav {
    top: 10px;
    width: calc(100% - 20px);
    border-radius: 14px;
  }

  .nav-inner {
    height: 54px;
    padding: 0 14px;
  }

  /* Hero clears the smaller floating nav */
  .hero {
    padding-top: 76px;
  }

  /* Mobile drawer starts just below the mobile nav */
  .mobile-nav {
    top: 74px;
    left: 10px;
    right: 10px;
    border-radius: 14px;
  }

  .nav-links,
  .nav-actions {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-nav {
    display: block;
  }

  .hero-h1 {
    font-size: 38px;
  }

  .hero-ctas {
    /* flex-direction: column; */
    align-items: flex-start;
  }

  .cta-band {
    padding: 40px 28px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    padding-top: 30px;
    padding-bottom: 30px;
  }

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

  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn-white,
  .btn-ghost {
    width: 100%;
    text-align: center;
  }
}

/* ── Floating nav: tiny phones ── */
@media (max-width: 400px) {
  .nav {
    top: 8px;
    width: calc(100% - 16px);
    border-radius: 12px;
  }

  .nav-inner {
    height: 50px;
    padding: 0 12px;
  }

  .hero {
    padding-top: 70px;
  }

  .mobile-nav {
    top: 66px;
    left: 8px;
    right: 8px;
    border-radius: 12px;
    padding: 20px 20px;
  }
}

/* =============================================
   UTILITY CLASSES
   ============================================= */
.footer-product-link {
  text-decoration: none;
  color: inherit;
}

.btn-mobile-full {
  width: 100%;
  margin-top: 8px;
}

.nav-back-link {
  text-decoration: none;
  color: inherit;
}

/* =============================================
   EXPOHIVE — Hero Visual
   ============================================= */
.expo-hero-img {
  width: 115%;
  height: 115%;
  display: block;
  border-radius: 16px;
  object-fit: contain;
}

.expo-visual {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 20px 50px -10px rgba(17, 20, 42, 0.22);
}

.expo-visual:has(.expo-visual-img) {
  aspect-ratio: 1805/871;
}

.expo-visual-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (min-width: 901px) {
  html[data-product="expohive"] .prod-hero-grid {
    grid-template-columns: 1fr 1.15fr;
  }
}

/* --- Expohive Dashboard Mock --- */
.expo-db {
  position: absolute;
  top: 0;
  left: 0;
  width: 960px;
  height: 600px;
  transform: scale(0.61);
  transform-origin: top left;
  display: flex;
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: #F0F2F8;
  pointer-events: none;
}

/* Sidebar */
.expo-db-sidebar {
  width: 210px;
  flex-shrink: 0;
  background: #0F1929;
  display: flex;
  flex-direction: column;
  padding: 18px 14px 14px;
  gap: 0;
  overflow: hidden;
}

.expo-db-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.expo-db-logo-img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.expo-db-logo-text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #F5A623;
}

.expo-db-event-card {
  display: flex;
  align-items: center;
  gap: 9px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  padding: 9px 11px;
  margin-bottom: 18px;
}

.expo-db-event-av {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #F5A623;
  color: #0F1929;
  font-size: 11px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.expo-db-event-name {
  font-size: 11px;
  font-weight: 700;
  color: #fff;
}

.expo-db-event-date {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 2px;
}

.expo-db-nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1px;
  overflow: hidden;
}

.expo-db-nav-label {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.09em;
  color: rgba(255, 255, 255, 0.28);
  padding: 9px 8px 3px;
}

.expo-db-nav-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
}

.expo-db-nav-item i {
  font-size: 12px;
  width: 14px;
  flex-shrink: 0;
}

.expo-db-nav-item--active {
  background: rgba(245, 166, 35, 0.13);
  color: #F5A623;
}

.expo-db-nav-badge {
  margin-left: auto;
  background: #F5A623;
  color: #0F1929;
  font-size: 9px;
  font-weight: 800;
  padding: 1px 6px;
  border-radius: 20px;
}

.expo-db-nav-reddot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #E05A4A;
  margin-left: auto;
}

.expo-db-user {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  padding: 9px 11px;
  margin-top: 10px;
}

.expo-db-user-av {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: #F5A623;
  color: #0F1929;
  font-size: 10px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.expo-db-user-name {
  font-size: 11px;
  font-weight: 700;
  color: #fff;
}

.expo-db-user-role {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.38);
}

.expo-db-user-caret {
  margin-left: auto;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.35);
}

/* Main */
.expo-db-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* Topbar */
.expo-db-topbar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  background: #fff;
  border-bottom: 1px solid #E9ECF4;
  flex-shrink: 0;
}

.expo-db-page-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #11142A;
}

.expo-db-breadcrumb {
  font-size: 10px;
  color: #6C7088;
  margin-top: 1px;
}

.expo-db-live-pill {
  display: flex;
  align-items: center;
  gap: 5px;
  background: #EAFAF1;
  border: 1px solid rgba(39, 174, 96, .2);
  color: #27AE60;
  font-size: 9px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  white-space: nowrap;
}

.expo-db-live-pip {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #27AE60;
}

.expo-db-topbar-right {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.expo-db-search-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #F5F7FC;
  border: 1px solid #E9ECF4;
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 10px;
  color: #6C7088;
  white-space: nowrap;
}

.expo-db-icon-btn {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  border: 1px solid #E9ECF4;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #545971;
  position: relative;
}

.expo-db-notif-pip {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #E05A4A;
  position: absolute;
  top: 4px;
  right: 4px;
}

.expo-db-quick-btn {
  background: #F5A623;
  color: #0F1929;
  font-size: 10px;
  font-weight: 700;
  padding: 7px 14px;
  border-radius: 8px;
  white-space: nowrap;
}

/* Hero card */
.expo-db-hero-card {
  margin: 12px 14px 0;
  background: #0F1929;
  border-radius: 12px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.expo-db-hero-left {
  flex: 1;
}

.expo-db-greeting {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #F5A623;
  margin-bottom: 5px;
}

.expo-db-hero-h {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 21px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 7px;
}

.expo-db-hero-p {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
  margin-bottom: 12px;
  max-width: 380px;
}

.expo-db-hero-btns {
  display: flex;
  gap: 7px;
}

.expo-db-btn-gold {
  background: #F5A623;
  color: #0F1929;
  border: none;
  font-size: 9.5px;
  font-weight: 700;
  padding: 7px 13px;
  border-radius: 7px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}

.expo-db-btn-outline {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 9.5px;
  font-weight: 600;
  padding: 7px 13px;
  border-radius: 7px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}

.expo-db-onsite-wrap {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 12px 16px;
  min-width: 130px;
  text-align: right;
}

.expo-db-onsite-label {
  font-size: 8.5px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  margin-bottom: 3px;
}

.expo-db-onsite-pip {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #27AE60;
}

.expo-db-onsite-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.expo-db-onsite-cap {
  font-size: 8.5px;
  color: rgba(255, 255, 255, 0.38);
  margin-top: 3px;
}

.expo-db-cap-bar {
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  margin-top: 7px;
  overflow: hidden;
}

.expo-db-cap-fill {
  height: 100%;
  width: 62%;
  background: #F5A623;
  border-radius: 2px;
}

/* Stats */
.expo-db-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding: 10px 14px 0;
}

.expo-db-stat {
  background: #fff;
  border-radius: 9px;
  padding: 11px 13px;
  border: 1px solid #E9ECF4;
}

.expo-db-stat-top {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 7px;
}

.expo-db-stat-ic {
  width: 26px;
  height: 26px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  flex-shrink: 0;
}

.expo-db-stat-ic--blue {
  background: #EEF2FF;
  color: #6B5CE7;
}

.expo-db-stat-ic--yellow {
  background: #FFF8EC;
  color: #F5A623;
}

.expo-db-stat-ic--teal {
  background: #EDFAFA;
  color: #0BBCC3;
}

.expo-db-stat-ic--red {
  background: #FFF0EE;
  color: #E05A4A;
}

.expo-db-stat-lbl {
  font-size: 10px;
  color: #6C7088;
}

.expo-db-stat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #11142A;
  margin-bottom: 3px;
}

.expo-db-stat-delta {
  font-size: 9px;
  color: #27AE60;
  font-weight: 600;
}

.expo-db-stat-delta span {
  color: #6C7088;
  font-weight: 400;
}

/* Charts */
.expo-db-charts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 8px 14px 12px;
  flex: 1;
}

.expo-db-chart-card {
  background: #fff;
  border-radius: 9px;
  padding: 11px 13px;
  border: 1px solid #E9ECF4;
  display: flex;
  flex-direction: column;
}

.expo-db-chart-hdr {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 7px;
}

.expo-db-chart-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #11142A;
}

.expo-db-chart-sub {
  font-size: 9px;
  color: #6C7088;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 400;
  margin-left: 4px;
}

.expo-db-peak-badge {
  background: #EDFAFA;
  color: #0BBCC3;
  font-size: 8.5px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 20px;
  white-space: nowrap;
}

.expo-db-area-svg {
  width: 100%;
  flex: 1;
}

.expo-db-x-labels {
  display: flex;
  justify-content: space-between;
  font-size: 8.5px;
  color: #6C7088;
  margin-top: 3px;
}

.expo-db-edition-tag {
  font-size: 8.5px;
  color: #6C7088;
  border: 1px solid #E9ECF4;
  border-radius: 6px;
  padding: 2px 7px;
}

.expo-db-donut-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
}

.expo-db-donut-svg {
  width: 100px;
  height: 100px;
  flex-shrink: 0;
}

.expo-db-legend {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.expo-db-legend-row {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 10px;
}

.expo-db-legend-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

html[data-product="suite"] .expo-db-legend-row:nth-child(1) .expo-db-legend-dot {
  background: #0BBCC3;
}

html[data-product="suite"] .expo-db-legend-row:nth-child(2) .expo-db-legend-dot {
  background: #069CE6;
}

html[data-product="suite"] .expo-db-legend-row:nth-child(3) .expo-db-legend-dot {
  background: #0DD1AB;
}

html[data-product="marketing"] .expo-db-legend-row:nth-child(1) .expo-db-legend-dot {
  background: #E0613B;
}

html[data-product="marketing"] .expo-db-legend-row:nth-child(2) .expo-db-legend-dot {
  background: #FF9B7A;
}

html[data-product="marketing"] .expo-db-legend-row:nth-child(3) .expo-db-legend-dot {
  background: #C94A29;
}

html[data-product="marketing"] .expo-db-legend-row:nth-child(4) .expo-db-legend-dot {
  background: #FFB89A;
}

html[data-product="expohive"] .expo-db-legend-row:nth-child(1) .expo-db-legend-dot {
  background: #6B5CE7;
}

html[data-product="expohive"] .expo-db-legend-row:nth-child(2) .expo-db-legend-dot {
  background: #F5A623;
}

html[data-product="expohive"] .expo-db-legend-row:nth-child(3) .expo-db-legend-dot {
  background: #E05A4A;
}

html[data-product="expohive"] .expo-db-legend-row:nth-child(4) .expo-db-legend-dot {
  background: #0BBCC3;
}

html[data-product="awardocado"] .expo-db-legend-row:nth-child(1) .expo-db-legend-dot {
  background: #4F9A3E;
}

html[data-product="awardocado"] .expo-db-legend-row:nth-child(2) .expo-db-legend-dot {
  background: #2D6022;
}

html[data-product="awardocado"] .expo-db-legend-row:nth-child(3) .expo-db-legend-dot {
  background: #6FBF5A;
}

html[data-product="awardocado"] .expo-db-legend-row:nth-child(4) .expo-db-legend-dot {
  background: #3A7A2E;
}

.expo-db-legend-name {
  color: #11142A;
  flex: 1;
}

.expo-db-legend-val {
  color: #11142A;
  font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
}

/* Extra stat icon colours */
.expo-db-stat-ic--green {
  background: #EDFAF0;
  color: #4F9A3E;
}

.expo-db-stat-ic--purple {
  background: #EEF2FF;
  color: #6B5CE7;
}

.expo-db-stat-ic--orange {
  background: #FFF3EE;
  color: #E0613B;
}

.expo-db-stat-ic--pink {
  background: #FFF0F5;
  color: #D94F8A;
}

/* Live pill & pip variants */
.expo-db-live-pill--award {
  background: #EDFAF0;
  border-color: rgba(79, 154, 62, .2);
  color: #4F9A3E;
}

.expo-db-live-pip--award {
  background: #4F9A3E;
}

.expo-db-live-pill--suite {
  background: #EDFAFA;
  border-color: rgba(11, 188, 195, .2);
  color: #0BBCC3;
}

.expo-db-live-pip--suite {
  background: #0BBCC3;
}

.expo-db-live-pill--mkt {
  background: #FFF3EE;
  border-color: rgba(224, 97, 59, .2);
  color: #E0613B;
}

.expo-db-live-pip--mkt {
  background: #E0613B;
}

/* Onsite pip variants */
.expo-db-onsite-pip--award {
  background: #4F9A3E;
}

.expo-db-onsite-pip--suite {
  background: #0BBCC3;
}

.expo-db-onsite-pip--mkt {
  background: #E0613B;
}

/* Cap fill variants */
.expo-db-cap-fill--award {
  background: #4F9A3E;
}

.expo-db-cap-fill--suite {
  background: #0BBCC3;
  width: 82%;
}

.expo-db-cap-fill--mkt {
  background: #E0613B;
  width: 78%;
}

/* Peak badge variants */
.expo-db-peak-badge--award {
  background: #EDFAF0;
  color: #4F9A3E;
}

.expo-db-peak-badge--suite {
  background: #EDFAFA;
  color: #0BBCC3;
}

.expo-db-peak-badge--mkt {
  background: #FFF3EE;
  color: #E0613B;
}

/* --- Awardocado theme overrides --- */
.expo-db--award .expo-db-logo-text {
  color: #4F9A3E;
}

.expo-db--award .expo-db-event-av,
.expo-db--award .expo-db-user-av {
  background: #4F9A3E;
}

.expo-db--award .expo-db-nav-badge {
  background: #4F9A3E;
}

.expo-db--award .expo-db-nav-item--active {
  background: rgba(79, 154, 62, .13);
  color: #4F9A3E;
}

.expo-db--award .expo-db-quick-btn {
  background: #4F9A3E;
}

.expo-db--award .expo-db-btn-gold {
  background: #4F9A3E;
  color: #fff;
}

/* --- Intelligence Suite theme overrides --- */
.expo-db--suite .expo-db-logo-text {
  color: #0BBCC3;
}

.expo-db--suite .expo-db-event-av,
.expo-db--suite .expo-db-user-av {
  background: #0BBCC3;
  color: #fff;
}

.expo-db--suite .expo-db-nav-badge {
  background: #0BBCC3;
  color: #fff;
}

.expo-db--suite .expo-db-nav-item--active {
  background: rgba(11, 188, 195, .13);
  color: #0BBCC3;
}

.expo-db--suite .expo-db-quick-btn {
  background: #0BBCC3;
  color: #fff;
}

.expo-db--suite .expo-db-btn-gold {
  background: #0BBCC3;
  color: #fff;
}

/* --- Event Marketing theme overrides --- */
.expo-db--mkt .expo-db-logo-text {
  color: #E0613B;
}

.expo-db--mkt .expo-db-event-av,
.expo-db--mkt .expo-db-user-av {
  background: #E0613B;
  color: #fff;
}

.expo-db--mkt .expo-db-nav-badge {
  background: #E0613B;
  color: #fff;
}

.expo-db--mkt .expo-db-nav-item--active {
  background: rgba(224, 97, 59, .13);
  color: #E0613B;
}

.expo-db--mkt .expo-db-quick-btn {
  background: #E0613B;
  color: #fff;
}

.expo-db--mkt .expo-db-btn-gold {
  background: #E0613B;
  color: #fff;
}

.expo-hero-bg {
  position: absolute;
  inset: 0;
  border-radius: 22px;
  background: linear-gradient(150deg, #EFF3FD, #E4EBFB);
  border: 1px solid #E4E9F4;
  overflow: hidden;
}

.expo-grid-pattern {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(135deg,
      rgba(36, 86, 230, 0.04),
      rgba(36, 86, 230, 0.04) 12px,
      transparent 12px,
      transparent 24px);
}

.expo-watermark {
  position: absolute;
  right: 20px;
  top: 14px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 100px;
  color: #C98A0E;
  opacity: 0.12;
  line-height: 1;
  pointer-events: none;
}

.expo-portal-card {
  position: absolute;
  left: 26px;
  top: 34px;
  width: 248px;
  background: #fff;
  border-radius: 16px;
  padding: 17px;
  box-shadow: 0 28px 54px -24px rgba(17, 20, 42, 0.4);
}

.expo-portal-header {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 14px;
}

.expo-portal-icon {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: #FBF1DC;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
}

.expo-portal-name {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 13px;
}

.expo-skeleton {
  height: 8px;
  border-radius: 4px;
  background: #EFF1F6;
  margin-bottom: 8px;
}

.expo-skeleton--short {
  width: 76%;
  margin-bottom: 16px;
}

.expo-mini-chart {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 56px;
}

.expo-bar {
  flex: 1;
  background: #FBF1DC;
  border-radius: 4px;
}

.expo-bar--h40 {
  height: 40%;
}

.expo-bar--h65 {
  height: 65%;
}

.expo-bar--active {
  background: #C98A0E;
  height: 100%;
}

.expo-bar--h78 {
  height: 78%;
}

.expo-bar--h55 {
  height: 55%;
}

.expo-live-badge {
  position: absolute;
  right: 22px;
  bottom: 30px;
  background: #fff;
  border-radius: 13px;
  padding: 13px 16px;
  box-shadow: 0 22px 42px -22px rgba(17, 20, 42, 0.42);
  display: flex;
  align-items: center;
  gap: 11px;
}

.expo-live-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #C98A0E;
  box-shadow: 0 0 0 4px #FBF1DC;
  flex-shrink: 0;
}

.expo-live-num {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
}

.expo-live-sub {
  font-size: 10.5px;
  color: #8A8EA2;
}

/* =============================================
   ALL PRODUCTS — Features Section (dark bg)
   ============================================= */
[data-product] .prod-features-section {
  background-image: url('../images/bg/home3-countdown-bg.png');
  background-size: cover;
  background-position: center top;
  background-color: #0B1629;
}

[data-product] .prod-features-section .prod-section-eyebrow {
  color: rgba(255, 255, 255, 0.5);
}

[data-product] .prod-features-section .prod-section-h2 {
  color: #fff;
}

[data-product] .prod-features-section .prod-section-sub {
  color: rgba(255, 255, 255, 0.65);
}

[data-product] .prod-features-section .prod-feature-card {
  background: rgb(255 255 255 / 99%);
  border-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}

[data-product] .prod-features-section .prod-feat-title {
  color: #000000;
}

[data-product] .prod-features-section .prod-feat-desc {
  color: rgb(35 35 35 / 78%);
}

/* Per-product icon gradient */
[data-product="expohive"] .prod-features-section .prod-feat-icon {
  background-image: linear-gradient(211deg, #cb8f2a 0%, #fbbf24 100%);
}

[data-product="awardocado"] .prod-features-section .prod-feat-icon {
  background-image: linear-gradient(211deg, #3A7A2E 0%, #6FBF5A 100%);
}

[data-product="suite"] .prod-features-section .prod-feat-icon {
  background-image: linear-gradient(211deg, #0A7A80 0%, #0DD1AB 100%);
}

[data-product="marketing"] .prod-features-section .prod-feat-icon {
  background-image: linear-gradient(211deg, #C94A29 0%, #FF9B7A 100%);
}

[data-product] .prod-features-section .prod-feat-icon i {
  color: #fff;
}

/* =============================================
   PRODUCT PAGES — Shared
   ============================================= */

/* Per-product color tokens (set on <html data-product="...">) */
[data-product="expohive"] {
  --prod: #fbbf24;
  --prod-lt: #FFF8EC;
  --prod-mid: rgba(201, 138, 14, .1);
  --prod-border: rgba(201, 138, 14, .25);
  --prod-text: #7A5208;
  --prod-blob: rgba(201, 138, 14, 0.18);
}

[data-product="awardocado"] {
  --prod: #4F9A3E;
  --prod-lt: #F0FAF0;
  --prod-mid: rgba(79, 154, 62, .1);
  --prod-border: rgba(79, 154, 62, .25);
  --prod-text: #2D6022;
  --prod-blob: rgba(79, 154, 62, 0.18);
}

[data-product="suite"] {
  --prod: #0BBCC3;
  --prod-lt: #EDFAFA;
  --prod-mid: rgba(11, 188, 195, .1);
  --prod-border: rgba(11, 188, 195, .25);
  --prod-text: #0A7A80;
  --prod-blob: rgba(11, 188, 195, 0.18);
}

[data-product="marketing"] {
  --prod: #E0613B;
  --prod-lt: #FFF3EF;
  --prod-mid: rgba(224, 97, 59, .1);
  --prod-border: rgba(224, 97, 59, .25);
  --prod-text: #8A2E10;
  --prod-blob: rgba(224, 97, 59, 0.18);
}

/* ── Back link ── */
.prod-back {
  padding: 18px 0 0;
  position: relative;
  z-index: 1;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-muted);
  text-decoration: none;
  cursor: pointer;
  transition: color .15s;
}

.back-link:hover {
  color: var(--ink);
}

/* ── Product Hero ── */
.prod-hero {
  padding: 160px 0 80px;
  background: white;
  position: relative;
  overflow: hidden;
}

.prod-hero::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -80px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--prod-blob), transparent 62%);
  animation: drift 20s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.prod-hero::after {
  content: '';
  position: absolute;
  bottom: -180px;
  left: -120px;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background: rgba(36, 86, 230, 0.07);
  animation: driftB 24s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.prod-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Eyebrow pill */
.prod-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 16px 6px 8px;
  margin-bottom: 24px;
}

.prod-eyebrow-logo {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--prod-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.prod-eyebrow-logo img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.prod-eyebrow-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-muted);
}

/* Hero copy */
.prod-h1 {
  /* font-family: 'Space Grotesk', sans-serif; */
  font-size: clamp(30px, 3.8vw, 44px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 20px;
}

.prod-h1 .accent {
  color: var(--prod);
}

.prod-sub {
  font-size: 16.5px;
  color: var(--ink-muted);
  line-height: 1.7;
  margin-bottom: 36px;
}

.prod-ctas {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.prod-trust {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--ink-faint);
}

.prod-trust-item {
  display: flex;
  align-items: center;
  gap: 5px;
}

.prod-trust-tick {
  color: var(--prod);
  font-size: 15px;
  font-weight: 700;
}

/* Hero panel */
.prod-visual {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 20px 50px -10px rgba(17, 20, 42, 0.22);
}

.prod-visual:has(.prod-visual-img) {
  aspect-ratio: 1694/871;
}

@media (min-width: 901px) {
  html[data-product="awardocado"] .prod-hero-grid {
    grid-template-columns: 1fr 1.15fr;
  }
}

.prod-visual-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.prod-panel {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 28px 80px -20px rgba(0, 0, 0, 0.15);
}

.prod-panel-bar {
  background: #FAFBFD;
  border-bottom: 1px solid var(--border-lt);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

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

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

.pp-dot--red {
  background: #ff5f57;
}

.pp-dot--yellow {
  background: #febc2e;
}

.pp-dot--green {
  background: #28c840;
}

.prod-panel-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-mid);
  flex: 1;
  text-align: center;
}

.pp-live {
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  background: var(--prod-lt);
  color: var(--prod);
  border: 1px solid var(--prod-border);
}

.prod-panel-body {
  padding: 18px;
}

/* ── Expohive panel ── */
.expo-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 14px;
}

.expo-cell {
  aspect-ratio: 1;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 7.5px;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 600;
}

.ec-p {
  background: #C98A0E;
  color: #fff;
}

.ec-c {
  background: #FFF8EC;
  border: 1px solid rgba(201, 138, 14, .3);
  color: #C98A0E;
}

.ec-a {
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--ink-faint);
}

.ec-w {
  background: #FFFBEB;
  border: 1px solid rgba(201, 138, 14, .18);
  color: #A06C0A;
}

.ec-x {
  background: transparent;
}

.expo-qs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin-bottom: 14px;
}

.expo-qs-box {
  background: var(--bg);
  border-radius: 8px;
  padding: 8px;
  text-align: center;
}

.expo-qs-val {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
}

.expo-qs-lbl {
  font-size: 9.5px;
  color: var(--ink-faint);
  margin-top: 1px;
}

.expo-rows {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.expo-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg);
  border-radius: 8px;
  padding: 7px 11px;
}

.expo-row-name {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--ink-mid);
}

.expo-row-tag {
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 100px;
}

/* ── Awardocado panel ── */
.award-funnel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg);
  border-radius: 10px;
  padding: 12px 8px;
  margin-bottom: 14px;
}

.award-funnel-stage {
  text-align: center;
  flex: 1;
}

.afs-num {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 19px;
  color: var(--ink);
}

.afs-lbl {
  font-size: 9px;
  color: var(--ink-faint);
  margin-top: 2px;
}

.award-funnel-arrow {
  color: var(--border);
  font-size: 14px;
}

.award-sub-list {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 12px;
}

.award-sub-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--border-lt);
  border-radius: 10px;
  padding: 9px 12px;
}

.award-sub-left {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.award-sub-title {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-mid);
}

.award-sub-org {
  font-size: 10px;
  color: var(--ink-faint);
}

.award-sub-badge {
  font-size: 10px;
  font-weight: 700;
  padding: 2px 9px;
  border-radius: 100px;
}

.award-sub-badge--shortlisted {
  background: #F0FAF0;
  color: #4F9A3E;
  border: 1px solid rgba(79, 154, 62, .2);
}

.award-sub-badge--review {
  background: #FFF8EC;
  color: #C98A0E;
  border: 1px solid rgba(201, 138, 14, .2);
}

.award-sub-badge--winner {
  background: #4F9A3E;
  color: #fff;
}

.award-judges {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(79, 154, 62, .06);
  border-radius: 10px;
  padding: 10px 12px;
}

.judge-av {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.judge-av--a {
  background: #4F9A3E;
}

.judge-av--b {
  background: #2D6022;
}

.judge-av--c {
  background: #6FBF5A;
}

.judge-av--d {
  background: #3A7A2E;
}

.afs-num--winner {
  color: #4F9A3E;
}

.judges-label {
  font-size: 11.5px;
  color: var(--ink-muted);
}

/* ── Intelligence Suite panel ── */
.is-browser {
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 12px;
}

.is-browser-bar {
  background: #F5F7FC;
  padding: 7px 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--border-lt);
}

.is-browser-dots {
  display: flex;
  gap: 4px;
}

.is-browser-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.is-url {
  flex: 1;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 5px;
  padding: 3px 9px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9.5px;
  color: var(--ink-faint);
}

.is-browser-content {
  padding: 10px;
}

.is-nav-block {
  height: 22px;
  border-radius: 4px;
  margin-bottom: 8px;
}

[data-product="suite"] .is-nav-block {
  background: linear-gradient(90deg, #0BBCC3, #069CE6);
}

.is-hero-strip {
  height: 46px;
  border-radius: 6px;
  margin-bottom: 8px;
}

[data-product="suite"] .is-hero-strip {
  background: linear-gradient(135deg, #EDFAFA, #C5F0F2);
  border: 1px solid rgba(11, 188, 195, .2);
}

.is-blocks-row {
  display: flex;
  gap: 6px;
  margin-bottom: 8px;
}

.is-block {
  height: 28px;
  border-radius: 4px;
}

.is-block--wide {
  flex: 2;
  background: #F5F7FC;
  border: 1px solid var(--border);
}

.is-block--main {
  flex: 1;
  background: #F5F7FC;
  border: 1px solid var(--border);
}

.is-block--teal {
  flex: 1;
  background: #EDFAFA;
  border: 1px solid rgba(11, 188, 195, .2);
}

.is-product-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.is-product-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 8px;
  text-align: center;
}

.is-product-card--active {
  border-color: rgba(11, 188, 195, .3);
  background: rgba(11, 188, 195, .04);
}

.is-product-icon {
  font-size: 20px;
  margin-bottom: 5px;
}

.is-product-name {
  font-size: 10.5px;
  font-weight: 600;
  color: var(--ink-mid);
}

.is-product-sub {
  font-size: 9px;
  color: var(--ink-faint);
  margin-top: 2px;
}

/* ── Event Marketing panel ── */
.mkt-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 14px;
}

.mkt-kpi {
  background: var(--bg);
  border-radius: 10px;
  padding: 11px 8px;
  text-align: center;
}

.mkt-kpi-val {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 19px;
  color: var(--ink);
}

.mkt-kpi-lbl {
  font-size: 9px;
  color: var(--ink-faint);
  margin-top: 2px;
}

.mkt-kpi-delta {
  font-size: 9px;
  font-weight: 700;
  margin-top: 3px;
}

.mkt-kpi-delta--up {
  color: #4F9A3E;
}

.mkt-chart {
  background: var(--bg);
  border-radius: 10px;
  padding: 12px 10px 8px;
  margin-bottom: 14px;
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 72px;
}

.mkt-bar {
  flex: 1;
  border-radius: 3px 3px 0 0;
}

.mkt-bar--h35 {
  height: 35%;
  background: rgba(224, 97, 59, .25);
}

.mkt-bar--h50 {
  height: 50%;
  background: rgba(224, 97, 59, .35);
}

.mkt-bar--h45 {
  height: 45%;
  background: rgba(224, 97, 59, .3);
}

.mkt-bar--h65 {
  height: 65%;
  background: rgba(224, 97, 59, .45);
}

.mkt-bar--h80 {
  height: 80%;
  background: rgba(224, 97, 59, .6);
}

.mkt-bar--active {
  height: 100%;
  background: #E0613B;
}

/* prod-hero-grid with back-link spacing */
.prod-hero-grid--spaced {
  /* margin-top: 32px; */
}

.mkt-campaigns {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.mkt-campaign {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--border-lt);
  border-radius: 10px;
  padding: 9px 12px;
}

.mkt-campaign-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mkt-campaign-name {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--ink-mid);
}

.mkt-campaign-reach {
  font-size: 10px;
  color: var(--ink-faint);
}

.mkt-campaign-roas {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--prod);
}

/* ── Features section ── */
.prod-features-section {
  padding: 50px 0;
  background: var(--bg);
}

.prod-section-top {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 52px;
}

.prod-section-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 12px;
}

.prod-section-h2 {
  /* font-family: 'Space Grotesk', sans-serif; */
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 14px;
}

.prod-section-sub {
  font-size: 16px;
  color: var(--ink-muted);
  line-height: 1.65;
}

.prod-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.prod-feature-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 30px;
  transition: transform .25s, box-shadow .25s;
}

.prod-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px -16px rgba(0, 0, 0, 0.1);
}

.prod-feat-icon {
  width: 55px;
  height: 55px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
  background: var(--prod-lt);
}

.prod-feat-icon i {
  font-size: 26px;
  color: var(--prod);
}

.prod-feat-icon-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* border-radius: 8px; */
  padding: 4px;
}

.prod-feat-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--ink);
  margin-bottom: 10px;
}

.prod-feat-desc {
  font-size: 15px;
  color: var(--ink-muted);
  line-height: 1.65;
}

/* ── How it works ── */
.prod-how-section {
  padding: 50px 0;
  background: #fff;
}

.prod-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 52px;
  position: relative;
}

.prod-steps::before {
  content: '';
  position: absolute;
  top: 23px;
  left: calc(12.5% + 12px);
  right: calc(12.5% + 12px);
  height: 2px;
  background: var(--border);
  z-index: 0;
}

.prod-step {
  padding: 0 16px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.prod-step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--prod);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 16px;
  margin: 0 auto 18px;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 0 5px var(--prod-lt), 0 0 0 6px var(--prod-border);
}

.prod-step-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--ink);
  margin-bottom: 8px;
}

.prod-step-desc {
  font-size: 15px;
  color: var(--ink-muted);
  line-height: 1.6;
}

/* ── Stats ── */
.prod-stats-section {
  padding: 70px 0;
  background: var(--bg);
}

.prod-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.prod-stat {
  padding: 36px 20px;
  text-align: center;
  border-right: 1px solid var(--border);
}

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

.prod-stat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 38px;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 8px;
  color: var(--prod);
}

.prod-stat-label {
  font-size: 13px;
  color: var(--ink-muted);
  font-weight: 500;
}

/* ── Responsive product pages ── */

/* 1100px — tablet landscape */
@media (max-width: 1100px) {
  /* is-features handled after base styles below */
}

/* 1024px — features grid 2-col */
@media (max-width: 1024px) {
  .prod-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 900px — tablet portrait: stack hero, 2-col steps/stats, stack IS rows */
@media (max-width: 900px) {

  /* Neutralise the global .container { padding: 40px 20px } on product pages */
  [data-product] .container {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  /* Hero */
  .prod-hero {
    padding: 50px 0 40px;
  }

  .prod-hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .prod-visual,
  .expo-visual {
    display: none;
  }

  /* Trust badges */
  .prod-trust {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  /* Steps */
  .prod-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .prod-steps::before {
    display: none;
  }

  /* Prod stats strip */
  .prod-stats-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .prod-stat {
    border-bottom: 1px solid var(--border);
  }

  .prod-stat:nth-child(even) {
    border-right: none;
  }

  .prod-stat:nth-last-child(-n+2) {
    border-bottom: none;
  }

  /* Section padding */
  .prod-features-section {
    padding: 40px 0;
  }

  .prod-how-section {
    padding: 40px 0;
  }

  .prod-section-top {
    margin-bottom: 36px;
  }
}

/* 600px — mobile: single column, tighter spacing */
@media (max-width: 600px) {

  /* Container */
  .container {
    padding: 0 18px;
  }

  /* Hero */
  .prod-hero {
    padding: 36px 0 28px;
  }

  .prod-h1 {
    font-size: clamp(24px, 7.5vw, 30px);
    line-height: 1.15;
  }

  .prod-sub {
    font-size: 15px;
    margin-bottom: 24px;
  }

  .prod-eyebrow {
    padding: 5px 12px 5px 6px;
  }

  .prod-eyebrow-label {
    font-size: 11px;
  }

  .prod-trust {
    font-size: 14px;
    gap: 8px;
  }

  /* Features */
  .prod-features-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .prod-feature-card {
    padding: 22px 20px;
  }

  .prod-feat-title {
    font-size: 17px;
  }

  .prod-feat-desc {
    font-size: 14px;
  }

  /* Steps — number badge left, title+desc right */
  .prod-steps {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 32px;
  }

  .prod-step {
    display: grid;
    grid-template-columns: 40px 1fr;
    grid-template-rows: auto auto;
    column-gap: 16px;
    text-align: left;
    padding: 0 4px;
  }

  .prod-step-num {
    margin: 0;
    width: 40px;
    height: 40px;
    font-size: 14px;
    grid-row: 1 / 3;
    align-self: start;
  }

  .prod-step-title {
    font-size: 16px;
    grid-column: 2;
    margin-bottom: 4px;
    align-self: center;
  }

  .prod-step-desc {
    font-size: 14px;
    grid-column: 2;
    margin: 0;
  }

  /* Section headings */
  .prod-section-h2 {
    font-size: clamp(22px, 6vw, 28px);
  }

  .prod-section-sub {
    font-size: 14.5px;
  }

  .prod-section-top {
    margin-bottom: 28px;
  }

  /* Section padding */
  .prod-features-section {
    padding: 32px 0;
  }

  .prod-how-section {
    padding: 32px 0;
  }

}

/* 480px — small phones */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .prod-h1 {
    font-size: clamp(22px, 7vw, 26px);
  }

  .prod-feature-card {
    padding: 18px 16px;
  }

  .prod-step {
    grid-template-columns: 36px 1fr;
  }

  .prod-step-num {
    width: 36px;
    height: 36px;
    font-size: 13px;
  }

  .prod-steps {
    gap: 16px;
  }
}

/* =============================================
   COMPANY PAGES — About · Case Studies · Blog · Contact
   ============================================= */

/* ── Shared hero ── */
.cp-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #EBEEF5;
  background-color: white;
}

/* .cp-hero-orb {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(36, 86, 230, 0.16), transparent 62%);
  animation: cpDrift 20s ease-in-out infinite;
  pointer-events: none;
} */

.cp-hero-orb--tr {
  top: -150px;
  right: -80px;
}

.cp-hero-orb--tl {
  top: -150px;
  left: -80px;
}

@keyframes cpDrift {

  0%,
  100% {
    transform: translate(0, 0);
  }

  33% {
    transform: translate(-30px, 20px);
  }

  66% {
    transform: translate(20px, -30px);
  }
}

.cp-hero-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 150px 32px 40px;
  position: relative;
  z-index: 2;
  text-align: center;
}

.cp-hero-inner--left {
  text-align: left;
}

.cp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #1B3FA8;
  background: #E6EDFE;
  border: 1px solid #CFDCFB;
  padding: 7px 13px;
  border-radius: 100px;
  margin-bottom: 26px;
}

.cp-h1 {
  /* font-family: 'Space Grotesk', sans-serif; */
  font-weight: 700;
  font-size: 44px;
  line-height: 1.04;
  letter-spacing: -0.03em;
  margin: 0 auto 22px;
  max-width: 820px;
  color: #11142A;
}

.cp-sub {
  font-size: 18px;
  line-height: 1.6;
  color: #545971;
  margin: 0 auto 30px;
  max-width: 860px;
}

.cp-hero-inner--left .cp-h1,
.cp-hero-inner--left .cp-sub {
  margin-left: 0;
}

/* ── Stats strip (About) ── */
.cp-stats-strip {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px 64px;
  position: relative;
  z-index: 2;
}

.cp-stats-grid {
  background: #fff;
  background-image: url(../images/bg/home3-newsletter-bg.png), linear-gradient(180deg, #0A0A0A 0%, #0A0A0A 100%);
  background-size: cover;
  border: 1px solid #ECEFF6;
  border-radius: 20px;
  box-shadow: 0 24px 50px -36px rgba(17, 20, 42, 0.3);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
}

.cp-stat-cell {
  padding: 28px;
  border-right: 1px solid #F0F2F8;
}

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

.cp-stat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 38px;
  letter-spacing: -0.02em;
  line-height: 1;
  background: linear-gradient(120deg, #3B6BFF, #1B3FA8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  background-image: linear-gradient(211deg, #0699e9 0%, #0dd1ab 100%);
}

.cp-stat-lbl {
  font-size: 13px;
  color: #f2f2f2;
  margin-top: 8px;
}

/* ── Generic section ── */
.cp-section {
  border-bottom: 1px solid #EBEEF5;
}

.cp-section--white {
  background: #fff;
}

.cp-section-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 50px 32px;
}

.cp-section-hdr {
  margin-bottom: 44px;
  /* max-width: 600px; */
  text-align: center;
}

.cp-section-hdr--center {
  max-width: 100%;
  text-align: center;
  margin-bottom: 52px;
}

.cp-section-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0bbfbf;
  margin-bottom: 14px;
}

.cp-section-h2 {
  /* font-family: 'Space Grotesk', sans-serif; */
  font-weight: 700;
  font-size: 38px;
  letter-spacing: -0.025em;
  margin: 0;
  line-height: 1.08;
  color: #11142A;
}

/* ── Values (About) ── */
.cp-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.cp-value-card {
  background: white;
  border: 1px solid #EBEEF5;
  border-radius: 18px;
  padding: 26px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.cp-value-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background-image: linear-gradient(211deg, rgb(6, 153, 233) 0%, rgb(13, 209, 171) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 21px;
  margin-bottom: 16px;
}

.cp-value-icon i {
  font-size: 22px;
  color: #fff;
}

.cp-value-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
  color: #11142A;
}

.cp-value-desc {
  font-size: 14px;
  line-height: 1.55;
  color: #5C6076;
  margin: 0;
}

/* ── Timeline (About) ── */
.cp-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  position: relative;
}

.cp-timeline::before {
  content: '';
  position: absolute;
  top: 26px;
  left: 8%;
  right: 8%;
  height: 2px;
  background-image: linear-gradient(211deg, #0699e9 0%, #0dd1ab 100%);
}

.cp-milestone {
  position: relative;
  text-align: center;
}

.cp-year-dot {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(white, white) padding-box, linear-gradient(211deg, #0699e9 0%, #0dd1ab 100%) border-box;
  border: 2px solid transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: #0699e9;
  margin: 0 auto 16px;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 0 4px #F5F7FC;
}

.cp-milestone-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 6px;
  color: #11142A;
}

.cp-milestone-desc {
  font-size: 16px;
  line-height: 1.5;
  color: #6C7088;
  margin: 0;
}

/* ── Leadership (About) ── */
.cp-leaders-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.cp-leader-avatar {
  width: 220px;
  height: 220px;
  border-radius: 18px;
  background: linear-gradient(150deg, #EFF3FD, #DDE6FA);
  border: 1px solid #E4E9F4;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin: 0 auto 14px;
}

.cp-leader-initials {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 52px;
  color: #B9C7EE;
}

.cp-leader-name {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: #11142A;
  margin-bottom: 4px;
  text-align: center;
}

.cp-leader-role {
  font-size: 13.5px;
  color: #0ab8c8;
  font-weight: 600;
  text-align: center;
}

/* ── Filter pills (Cases + Blog) ── */
.cp-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cp-filter-pill {
  display: inline-block;
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 600;
  padding: 9px 16px;
  border-radius: 100px;
  border: 1px solid #E0E5F0;
  background: #fff;
  color: #4A4F63;
  cursor: pointer;
  text-decoration: none;
  transition: all .15s;
}

.cp-filter-pill:hover {
  border-color: #0dd1ab;
  color: #0dd1ab;
}

.cp-filter-pill.cp-active {
  /* background: #2456E6; */
  color: #fff;
  /* border-color: #2456E6; */
  background-image: linear-gradient(211deg, #0699e9 0%, #0dd1ab 100%);
}

/* ── Featured case card ── */
.cp-featured-case {
  background: linear-gradient(135deg, #11193A, #1B3FA8);
  border-radius: 24px;
  padding: 48px;
  color: #fff;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 44px;
  align-items: center;
  margin-bottom: 36px;
  position: relative;
  overflow: hidden;
}

.cp-featured-case::before {
  content: '';
  position: absolute;
  right: -50px;
  top: -60px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99, 130, 255, 0.4), transparent 68%);
  pointer-events: none;
}

.cp-featured-tag {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #BCCBF7;
  background: rgba(255, 255, 255, 0.12);
  padding: 6px 12px;
  border-radius: 100px;
  margin-bottom: 18px;
}

.cp-featured-h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 32px;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
  line-height: 1.12;
}

.cp-featured-desc {
  font-size: 15.5px;
  line-height: 1.6;
  color: #C2CCE8;
  margin: 0 0 26px;
}

.cp-featured-metrics {
  display: flex;
  gap: 36px;
}

.cp-featured-metric-num {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 30px;
  letter-spacing: -0.02em;
}

.cp-featured-metric-lbl {
  font-size: 12.5px;
  color: #9FB0DC;
}

.cp-featured-visual {
  aspect-ratio: 4/3;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: #8EA0CE;
}

/* ── Cases grid ── */
.cp-cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.cp-case-card {
  background: #F8FAFE;
  border: 1px solid #EBEEF5;
  border-radius: 18px;
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
  cursor: pointer;
  display: block;
  color: inherit;
  text-decoration: none;
}

.cp-case-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px -16px rgba(17, 20, 42, 0.18);
}

.cp-case-thumb {
  aspect-ratio: 16/10;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 16px;
}

.cp-case-product-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
  padding: 5px 10px;
  border-radius: 100px;
}

.cp-case-body {
  padding: 22px;
}

.cp-case-client {
  font-size: 14px;
  color: #8A8EA2;
  margin-bottom: 8px;
  line-height: 1.5;
}

.cp-case-headline {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
  line-height: 1.25;
  margin-bottom: 14px;
  color: #11142A;
}

.cp-case-metric-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 14px;
  border-top: 1px solid #EAEDF4;
}

.cp-case-metric-num {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #2456E6;
}

.cp-case-metric-lbl {
  font-size: 12.5px;
  color: #6C7088;
}

/* case thumb bg colors */
.cp-case-bg--expo {
  background: linear-gradient(150deg, #FCEFD2, #F6DFA6);
}

.cp-case-bg--award {
  background: linear-gradient(150deg, #E7F2DC, #CFE3B8);
}

.cp-case-bg--suite {
  background: linear-gradient(150deg, #E4ECFC, #C9D9F8);
}

.cp-case-bg--mkt {
  background: linear-gradient(150deg, #FBE2D7, #F5C3AE);
}

/* ── Blog featured post ── */
.cp-featured-post {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid #EBEEF5;
}

.cp-post-thumb {
  border-radius: 20px;
  background: linear-gradient(150deg, #EFF3FD, #DDE6FA);
  border: 1px solid #E4E9F4;
  position: relative;
  overflow: hidden;
}

.cp-post-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(135deg, rgba(36, 86, 230, 0.05), rgba(36, 86, 230, 0.05) 12px, transparent 12px, transparent 24px);
}

.cp-post-thumb--featured {
  aspect-ratio: 16/10;
}

.cp-post-thumb--card {
  aspect-ratio: 16/9;
}

/* post card thumb color variants */
.cp-post-bg--playbook {
  background: linear-gradient(150deg, #E4ECFC, #C9D9F8);
}

.cp-post-bg--product {
  background: linear-gradient(150deg, #E7F2DC, #CFE3B8);
}

.cp-post-bg--industry {
  background: linear-gradient(150deg, #FBE2D7, #F5C3AE);
}

.cp-post-bg--guide {
  background: linear-gradient(150deg, #FCEFD2, #F6DFA6);
}

/* make post card thumb stripe match */
.cp-post-thumb.cp-post-bg--product::after,
.cp-post-thumb.cp-post-bg--industry::after,
.cp-post-thumb.cp-post-bg--guide::after {
  background: repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.28) 10px, transparent 10px, transparent 20px);
}

.cp-post-cat {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #2456E6;
  background: #E8EEFE;
  padding: 6px 12px;
  border-radius: 100px;
}

.cp-post-cat--inline {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #2456E6;
  display: block;
}

.cp-featured-post-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 30px;
  letter-spacing: -0.02em;
  margin: 18px 0 14px;
  line-height: 1.15;
  color: #11142A;
}

.cp-featured-post-excerpt {
  font-size: 15.5px;
  line-height: 1.6;
  color: #545971;
  margin: 0 0 20px;
}

.cp-post-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #8A8EA2;
}

/* ── Posts grid ── */
.cp-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.cp-post-card {
  background: #F8FAFE;
  border: 1px solid #EBEEF5;
  border-radius: 18px;
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
  cursor: pointer;
  display: block;
  color: inherit;
  text-decoration: none;
}

.cp-post-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px -16px rgba(17, 20, 42, 0.18);
}

.cp-post-card-body {
  padding: 22px;
}

.cp-post-card-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.01em;
  line-height: 1.3;
  margin: 10px 0 12px;
  color: #11142A;
}

.cp-post-card-excerpt {
  font-size: 13.5px;
  line-height: 1.55;
  color: #5C6076;
  margin: 0 0 16px;
}

/* ── Detail page banner (case study / blog post) ── */
.cp-detail-banner {
  background: linear-gradient(135deg, var(--blue-mid), var(--blue));
  padding: 150px 32px 60px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.cp-detail-banner-inner {
  max-width: 780px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.cp-detail-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, .8);
  text-decoration: none;
  margin-bottom: 22px;
  transition: color .15s;
}

.cp-detail-back:hover {
  color: #fff;
}

.cp-detail-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.cp-detail-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, .16);
  border: 1px solid rgba(255, 255, 255, .28);
  color: #fff;
  padding: 6px 13px;
  border-radius: 100px;
}

.cp-detail-meta {
  font-size: 13px;
  color: rgba(255, 255, 255, .78);
}

.cp-detail-title {
  font-weight: 700;
  font-size: clamp(26px, 4vw, 38px);
  line-height: 1.22;
  letter-spacing: -0.02em;
  margin: 16px auto 0;
  max-width: 720px;
  margin-bottom: 30px;
}

/* Dark image banner variant (case study header) */
.cp-detail-banner--dark-bg {
  background-image: url(../images/bg/home3-newsletter-bg.png), linear-gradient(180deg, #0A0A0A 0%, #0A0A0A 100%);
  background-size: cover;
  background-position: center;
}

/* ── Detail page thumbnail (floats over the banner) ── */
.cp-detail-thumb-wrap {
  max-width: 900px;
  margin: -42px auto 0;
  padding: 0 32px;
  position: relative;
  z-index: 3;
}

.cp-detail-thumb-wrap--wide {
  max-width: 900px;
}

.cp-detail-thumb {
  width: 100%;
  max-height: 460px;
  object-fit: cover;
  display: block;
  border-radius: 20px;
  border: 1px solid #fff;
  box-shadow: 0 24px 60px -20px rgba(17, 20, 42, .28);
}

.cp-detail-thumb--contain {
  object-fit: contain;
  max-height: 640px;
  background: var(--bg);
}

/* ── Detail page article body ── */
.cp-article-body {
  max-width: 1000px;
  margin: 0 auto;
  padding: 56px 32px 50px;
}

.cp-article-body--flush {
  padding-top: 50px;
}

/* ── Simple photo card (case studies / blog listing grids + related sections) ── */
.pcard-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}

.pcard-grid--sm {
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.pcard {
  display: block;
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 16px;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
  transition: box-shadow .2s;
}

.pcard:hover {
  box-shadow: 0 8px 32px -8px rgba(17, 20, 42, .12);
}

.pcard--sm {
  border-radius: 12px;
  box-shadow: none;
}

.pcard-img {
  display: block;
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.pcard-img--sm {
  height: 150px;
}

.pcard-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 180px;
  font-size: 40px;
  background: linear-gradient(135deg, #EFF3FD, #DDE6FA);
}

.pcard-placeholder--sm {
  height: 150px;
  font-size: 32px;
}

.pcard-body {
  padding: 20px 22px 24px;
}

.pcard-body--sm {
  padding: 16px 18px;
}

.pcard-meta-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.pcard-tag {
  background: #EFF3FD;
  color: var(--blue);
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
}

.pcard-date {
  font-size: 12px;
  color: #9CA3AF;
}

.pcard-title {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 16px;
  color: var(--ink);
}

.pcard-title--sm {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 0;
}

.pcard-excerpt {
  font-size: 14px;
  color: #6B7280;
  line-height: 1.6;
  margin-bottom: 14px;
}

.pcard-link {
  font-size: 13px;
  font-weight: 600;
  color: #0bbfbf;
}

/* Case-study product tag color variants */
.case-tag--expo {
  color: #C98A0E;
}

.case-tag--award {
  color: #4F9A3E;
}

.case-tag--suite {
  color: #2456E6;
}

.case-tag--mkt {
  color: #D1532F;
}

/* ── Empty state ── */
.empty-state {
  text-align: center;
  padding: 80px 0;
  color: #9CA3AF;
}

.empty-state p {
  font-size: 18px;
}

.pagenotfound{
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    /* background: linear-gradient(135deg, var(--blue-lt), var(--blue)); */
    border: none;
    padding: 14px 21px;
    border-radius: 25px;
    cursor: pointer;
    box-shadow: 0 10px 22px -10px rgb(159 159 159 / 70%);
    white-space: nowrap;
    transition: opacity .15s, transform .15s;
    background-image: linear-gradient(211deg, #0699e9 0%, #0dd1ab 100%);
    text-decoration: none;
}

.page-notfound {
  padding: 170px 0 100px;
  text-align: center;
}

/* ── Pagination (blog listing) ── */
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
}

.page-link {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  background: #F3F4F6;
  color: #374151;
}

.page-link.active {
  background: #0cc3bb;
  color: #fff;
}

/* ── Related section (case study / blog post detail pages) ── */
.related-section {
  background: #F9FAFB;
  border-top: 1px solid #EBEEF5;
}

.related-heading {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 24px;
}

.pcard-meta-line {
  font-size: 12px;
  color: #9CA3AF;
  margin-bottom: 6px;
}

/* ── Article body (rendered case study / blog post content) ── */
.blog-content {
  font-size: 17px;
  line-height: 1.8;
  color: #374151;
}

.policy-updated {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12.5px;
  color: var(--ink-faint);
  margin: 0 0 28px 0;
}

.blog-content h1,
.blog-content h2,
.blog-content h3 {
  color: #11142A;
  margin: 1.5em 0 .6em;
  font-weight: 700;
}

.blog-content h2 {
  font-size: 24px;
}

.blog-content h3 {
  font-size: 20px;
}

.blog-content p {
  margin-bottom: 1.2em;
}

.blog-content ul,
.blog-content ol {
  padding-left: 1.5em;
  margin-bottom: 1.2em;
}

.blog-content li {
  margin-bottom: .4em;
}

.blog-content a {
  color: #0abbc4;
}

.blog-content blockquote {
  border-left: 3px solid var(--blue);
  padding-left: 16px;
  color: #6B7280;
  font-style: italic;
  margin: 1.5em 0;
}

.blog-content img {
  max-width: 100%;
  border-radius: 10px;
}

.blog-content pre {
  background: #F3F4F6;
  padding: 16px;
  border-radius: 8px;
  overflow-x: auto;
  font-size: 14px;
}

.blog-content code {
  background: #F3F4F6;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.9em;
}

.blog-content table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.2em;
}

.blog-content th,
.blog-content td {
  border: 1px solid #E5E7EB;
  padding: 8px 12px;
  text-align: left;
}

.blog-content th {
  background: #F9FAFB;
  font-weight: 600;
}

/* ── Newsletter ── */
.cp-newsletter {
  border-bottom: 1px solid #EBEEF5;
}

.cp-newsletter-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px 76px;
}

.cp-newsletter-card {
  background: linear-gradient(135deg, #EFF3FD, #E7EEFC);
  border: 1px solid #DBE4F8;
  border-radius: 22px;
  padding: 44px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cp-newsletter-h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 26px;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
  color: #11142A;
}

.cp-newsletter-p {
  font-size: 15px;
  color: #545971;
  margin: 0;
}

.cp-newsletter-form {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cp-newsletter-input {
  font-family: inherit;
  font-size: 14.5px;
  padding: 14px 18px;
  border: 1px solid #D6DEF0;
  border-radius: 11px;
  background: #fff;
  outline: none;
  width: 240px;
  color: #11142A;
  transition: border-color .2s;
}

.cp-newsletter-input:focus {
  border-color: #2456E6;
}

.cp-newsletter-btn {
  font-family: inherit;
  font-size: 14.5px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #3B6BFF, #2456E6);
  border: none;
  padding: 14px 22px;
  border-radius: 11px;
  cursor: pointer;
  box-shadow: 0 12px 26px -12px rgba(36, 86, 230, 0.7);
  white-space: nowrap;
  transition: opacity .2s;
}

.cp-newsletter-btn:hover {
  opacity: 0.9;
}

/* ── Contact ── */
.cp-contact-grid {
  max-width: 1180px;
  margin: 0 auto;
  padding: 32px 32px 80px;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 56px;
  align-items: start;
}

.cp-contact-info-row {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}

.cp-contact-info-item {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 15px;
  color: #2A2E45;
}

.cp-contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: #E8EEFE;
  color: #2456E6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.cp-dept-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cp-dept-card {
  background: #fff;
  border: 1px solid #EBEEF5;
  border-radius: 14px;
  padding: 16px 18px;
}

.cp-dept-name {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #11142A;
}

.cp-dept-email {
  font-size: 13px;
  color: #6C7088;
  margin-top: 2px;
}

.cp-form-wrap {
  background: #fff;
  border: 1px solid #E6E9F2;
  border-radius: 22px;
  padding: 34px;
  box-shadow: 0 24px 50px -34px rgba(17, 20, 42, 0.28);
}

.cp-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.cp-form-group {
  display: flex;
  flex-direction: column;
}

.cp-form-group--full {
  grid-column: 1 / -1;
}

.cp-form-label {
  font-size: 12.5px;
  font-weight: 600;
  color: #545971;
  margin-bottom: 7px;
}

.cp-form-input,
.cp-form-select,
.cp-form-textarea {
  font-family: inherit;
  font-size: 14.5px;
  padding: 13px 14px;
  border: 1px solid #DBE0EC;
  border-radius: 11px;
  background: #fff;
  outline: none;
  color: #11142A;
  transition: border-color .2s;
  width: 100%;
}

.cp-form-input:focus,
.cp-form-select:focus,
.cp-form-textarea:focus {
  border-color: #2456E6;
}

.cp-form-textarea {
  resize: vertical;
  min-height: 110px;
}

.cp-form-submit {
  grid-column: 1 / -1;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #3B6BFF, #2456E6);
  border: none;
  padding: 16px;
  border-radius: 12px;
  cursor: pointer;
  margin-top: 4px;
  box-shadow: 0 16px 30px -14px rgba(36, 86, 230, 0.7);
  transition: opacity .2s;
}

.cp-form-submit:hover {
  opacity: 0.9;
}

.cp-form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* hidden cards (filter) */
.cp-case-card[hidden],
.cp-post-card[hidden] {
  display: none;
}

/* ── Company pages — shared content section ── */
.cp-content-section {
  background: #fff;
}

.cp-content-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 48px 32px 80px;
}

/* ── Responsive ── */
@media (max-width: 1024px) {

  .cp-values-grid,
  .cp-leaders-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .cp-timeline::before {
    display: none;
  }

  .cp-featured-case,
  .cp-featured-post {
    grid-template-columns: 1fr;
  }

  .cp-featured-visual {
    display: none;
  }

  .cp-contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .cp-cases-grid,
  .cp-posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .cp-h1 {
    font-size: 36px;
  }

  .cp-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cp-values-grid,
  .cp-leaders-grid {
    grid-template-columns: 1fr;
  }

  .cp-timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .cp-cases-grid,
  .cp-posts-grid {
    grid-template-columns: 1fr;
  }

  .cp-newsletter-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .cp-newsletter-form {
    flex-direction: column;
    width: 100%;
  }

  .cp-newsletter-input {
    width: 100%;
  }

  .cp-form-grid {
    grid-template-columns: 1fr;
  }

  .cp-form-group--full {
    grid-column: 1;
  }

  .cp-form-submit {
    grid-column: 1;
  }
}

/* ── Awardocado hero stats ── */
.aw-stats-wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 50px 32px 0;
  position: relative;
  z-index: 2;
}

.aw-stats-grid {
  background: #fff;
  border: 1px solid #ECEFF6;
  border-radius: 20px;
  box-shadow: 0 24px 50px -36px rgba(17, 20, 42, 0.3);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
}

.aw-stat-item {
  padding: 26px 28px;
  border-right: 1px solid #F0F2F8;
}

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

.aw-stat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 34px;
  letter-spacing: -0.02em;
  line-height: 1;
  color: #4F9A3E;
}

.aw-stat-label {
  font-size: 13px;
  color: #6C7088;
  margin-top: 7px;
}

.aw-stat-num--gold {
  color: #fbbf24;
}

.aw-stat-num--blue {
  color: #0BBCC3;
}

.aw-stat-num--orange {
  color: #E0613B;
}

/* ── aw-stats responsive (must sit AFTER base styles to win cascade) ── */
@media (max-width: 900px) {
  .aw-stats-wrap {
    padding: 32px 20px 0;
  }

  .aw-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    border-radius: 16px;
  }

  /* Reset all borders, then re-apply for 2-col layout */
  .aw-stat-item {
    border-right: none;
    border-bottom: none;
  }

  .aw-stat-item:nth-child(odd) {
    border-right: 1px solid #F0F2F8;
  }

  .aw-stat-item:nth-child(-n+2) {
    border-bottom: 1px solid #F0F2F8;
  }
}

@media (max-width: 600px) {
  .aw-stats-wrap {
    padding: 24px 16px 0;
  }

  .aw-stats-grid {
    border-radius: 14px;
  }

  .aw-stat-item {
    padding: 18px 16px;
  }

  .aw-stat-num {
    font-size: 26px;
  }

  .aw-stat-label {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .aw-stats-wrap {
    padding: 20px 14px 0;
  }

  .aw-stat-item {
    padding: 14px 12px;
  }

  .aw-stat-num {
    font-size: 22px;
  }
}

/* ── Intelligence Suite features section ── */
.is-features {
  background: #fff;
  border-bottom: 1px solid #EBF0F5;
}

.is-features-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 50px 32px;
}

.is-features-hdr {
  text-align: center;
  margin-bottom: 52px;
}

.is-features-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #2456E6;
  margin-bottom: 14px;
}

.is-features-h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 40px;
  letter-spacing: -0.025em;
  margin: 0 auto;
  line-height: 1.08;
  max-width: 560px;
}

.is-features-rows {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.is-feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.is-feature-copy {
  padding: 8px 20px;
  order: 1;
}

.is-feature-row--reverse .is-feature-copy {
  order: 2;
}

.is-feature-row--reverse .is-feature-visual {
  order: 1;
}

.is-feature-icon {
  width: 50px;
  height: 50px;
  border-radius: 13px;
  background: #E8EEFE;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
}

.is-feature-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 27px;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.is-feature-desc {
  font-size: 16px;
  line-height: 1.6;
  color: #4C516A;
  margin: 0 0 20px;
  /* max-width: 440px; */
}

.is-feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.is-feature-tag {
  font-size: 12.5px;
  color: #2456E6;
  background: #EAF0FE;
  border: 1px solid #D9E3FB;
  padding: 6px 12px;
  border-radius: 100px;
  font-weight: 600;
}

.is-feature-visual {
  background: linear-gradient(150deg, #EFF3FD, #E4EBFB);
  border-radius: 18px;
  position: relative;
  overflow: hidden;
  min-height: 240px;
  border: 1px solid #E4E9F4;
  order: 2;
}

.is-feature-pattern {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(135deg, rgba(36, 86, 230, 0.043), rgba(36, 86, 230, 0.043) 12px, transparent 12px, transparent 24px);
}

.is-feature-visual-label {
  position: absolute;
  left: 24px;
  bottom: 20px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: #8A8EA2;
}

.is-feature-card {
  position: absolute;
  right: 24px;
  top: 22px;
  width: 150px;
  height: 96px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 22px 44px -22px rgba(17, 20, 42, 0.4);
  animation: floaty 7s ease-in-out infinite;
}

/* ── Website mock ── */
.is-mock-browser {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 88%;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 18px 40px -12px rgba(17, 20, 42, 0.22);
  overflow: hidden;
  animation: floaty 7s ease-in-out infinite;
}

.is-mock-browser-chrome {
  background: #F3F4F8;
  padding: 7px 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid #E8EAF0;
}

.is-mock-dots {
  display: flex;
  gap: 4px;
}

.is-mock-dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #D1D5E0;
}

.is-mock-url-bar {
  flex: 1;
  background: #fff;
  border-radius: 4px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 8px;
  color: #9196AC;
  padding: 3px 8px;
  border: 1px solid #E4E7F0;
}

.is-mock-browser-body {
  padding: 10px;
}

.is-mock-web-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid #F0F2F8;
}

.is-mock-web-logo {
  width: 36px;
  height: 10px;
  background: #2456E6;
  border-radius: 3px;
}

.is-mock-web-nav-links {
  display: flex;
  gap: 6px;
  flex: 1;
}

.is-mock-web-nav-links span {
  width: 22px;
  height: 6px;
  background: #E4E7F0;
  border-radius: 3px;
}

.is-mock-web-cta {
  width: 36px;
  height: 14px;
  background: #2456E6;
  border-radius: 4px;
}

.is-mock-web-hero {
  margin-bottom: 10px;
}

.is-mock-web-tag {
  width: 48px;
  height: 7px;
  background: #EAF0FE;
  border-radius: 3px;
  margin-bottom: 7px;
}

.is-mock-web-h1 {
  width: 85%;
  height: 9px;
  background: #D0D4E4;
  border-radius: 3px;
  margin-bottom: 5px;
}

.is-mock-web-h1--short {
  width: 60%;
}

.is-mock-web-actions {
  display: flex;
  gap: 6px;
  margin-top: 8px;
}

.is-mock-web-btn-primary {
  width: 52px;
  height: 14px;
  background: #2456E6;
  border-radius: 4px;
}

.is-mock-web-btn-outline {
  width: 44px;
  height: 14px;
  border: 1px solid #C8CEDF;
  border-radius: 4px;
}

.is-mock-web-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
}

.is-mock-web-card {
  height: 30px;
  background: #F3F5FB;
  border-radius: 5px;
  border: 1px solid #E8EBF5;
}

/* ── Phone / App mock ── */
.is-mock-phone {
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 18px 40px -12px rgba(17, 20, 42, 0.25);
  overflow: hidden;
  border: 2px solid #E4E7F0;
  animation: floaty 7s ease-in-out infinite;
}

.is-mock-phone-notch {
  width: 36px;
  height: 6px;
  background: #D0D4E0;
  border-radius: 3px;
  margin: 8px auto 6px;
}

.is-mock-app-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px 6px;
  border-bottom: 1px solid #F0F2F8;
}

.is-mock-app-name {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 9px;
  color: #11142A;
}

.is-mock-app-bar .bi {
  font-size: 9px;
  color: #9196AC;
}

.is-mock-app-date {
  font-size: 7.5px;
  color: #9196AC;
  padding: 5px 10px;
  font-family: 'JetBrains Mono', monospace;
}

.is-mock-session {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border-bottom: 1px solid #F5F6FA;
}

.is-mock-session--active {
  background: #EAF0FE;
}

.is-mock-session-time {
  font-size: 7px;
  font-family: 'JetBrains Mono', monospace;
  color: #9196AC;
  min-width: 22px;
}

.is-mock-session-info {
  flex: 1;
}

.is-mock-session-t {
  width: 100%;
  height: 6px;
  background: #D0D4E4;
  border-radius: 3px;
  margin-bottom: 3px;
}

.is-mock-session-t--short {
  width: 65%;
}

.is-mock-session--active .is-mock-session-t {
  background: #2456E6;
  opacity: 0.5;
}

.is-mock-session-s {
  width: 70%;
  height: 5px;
  background: #E4E7F0;
  border-radius: 3px;
}

.is-mock-live-pill {
  font-size: 6px;
  font-weight: 700;
  color: #fff;
  background: #2456E6;
  border-radius: 3px;
  padding: 2px 4px;
  letter-spacing: 0.04em;
}

.is-mock-app-tabs {
  display: flex;
  justify-content: space-around;
  padding: 8px 0;
  border-top: 1px solid #F0F2F8;
  margin-top: 4px;
}

.is-mock-tab {
  font-size: 11px;
  color: #C0C4D4;
}

.is-mock-tab--active {
  color: #2456E6;
}

/* ── Photobooth mock ── */
.is-mock-booth {
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 130px;
  animation: floaty 7s ease-in-out infinite;
}

.is-mock-booth-frame {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 18px 40px -12px rgba(17, 20, 42, 0.25);
  border: 2px solid #E4E7F0;
}

.is-mock-booth-overlay-top {
  background: #2456E6;
  padding: 6px 10px;
}

.is-mock-booth-brand-line {
  width: 50px;
  height: 7px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 3px;
}

.is-mock-booth-photo-bg {
  height: 80px;
  background: linear-gradient(160deg, #c8d6f8, #E4EBFB);
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.is-mock-booth-silhouette {
  width: 32px;
  height: 60px;
  background: rgba(36, 86, 230, 0.15);
  border-radius: 16px 16px 0 0;
}

.is-mock-booth-overlay-bottom {
  background: #2456E6;
  padding: 6px 10px;
}

.is-mock-booth-event-line {
  width: 70px;
  height: 6px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 3px;
  margin-bottom: 3px;
}

.is-mock-booth-date-line {
  width: 44px;
  height: 5px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 3px;
}

.is-mock-booth-actions {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 8px;
}

.is-mock-share-btn {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #EAF0FE;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: #2456E6;
}

.is-mock-share-btn--primary {
  background: #2456E6;
  color: #fff;
}

.is-mock-booth-strip {
  display: flex;
  gap: 5px;
  margin-top: 6px;
  justify-content: center;
}

.is-mock-booth-thumb {
  width: 36px;
  height: 28px;
  background: linear-gradient(150deg, #c8d6f8, #E4EBFB);
  border-radius: 5px;
  border: 1px solid #D9E3FB;
}

/* IS feature visual -- full height */
.is-feature-visual {
  min-height: 340px;
}

/* WEBSITE MOCK */
.is-mock-browser {
  position: absolute;
  inset: 12px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 12px 40px -8px rgba(17, 20, 42, 0.22);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  animation: floaty 7s ease-in-out infinite;
  width: auto;
  transform: none;
  top: 12px;
  left: 12px;
}

.is-mock-bchr {
  background: #F3F4F8;
  padding: 7px 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid #E8EAF0;
  flex-shrink: 0;
}

.is-mock-url {
  flex: 1;
  background: #fff;
  border-radius: 4px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 8px;
  color: #9196AC;
  padding: 3px 8px;
  border: 1px solid #E4E7F0;
}

.is-mock-wsite {
  display: flex;
  flex-direction: column;
  flex: 1;
  overflow: hidden;
}

.is-mock-wnav {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 12px;
  border-bottom: 1px solid #F0F2F8;
  flex-shrink: 0;
}

.is-mock-wlogo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 10px;
  font-weight: 600;
  color: #11142A;
  white-space: nowrap;
}

.is-mock-wlogo b {
  color: #2456E6;
}

.is-mock-wnavlinks {
  display: flex;
  gap: 10px;
  flex: 1;
}

.is-mock-wnavlinks span {
  font-size: 8.5px;
  color: #6C7088;
}

.is-mock-wcta {
  font-size: 8.5px;
  font-weight: 700;
  color: #fff;
  background: #2456E6;
  padding: 4px 10px;
  border-radius: 20px;
  white-space: nowrap;
}

.is-mock-whero {
  background: linear-gradient(135deg, #EFF3FD, #DDE6FA);
  padding: 14px 14px 12px;
  flex-shrink: 0;
  border-bottom: 1px solid #E0E8F8;
}

.is-mock-wtag {
  font-size: 7.5px;
  color: #2456E6;
  background: #EAF0FE;
  border: 1px solid #D9E3FB;
  padding: 3px 8px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 8px;
  font-family: 'JetBrains Mono', monospace;
}

.is-mock-wh1 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.25;
  color: #11142A;
  margin-bottom: 10px;
}

.is-mock-wh1 span {
  color: #2456E6;
}

.is-mock-wbtns {
  display: flex;
  gap: 7px;
  margin-bottom: 10px;
}

.is-mock-wbtn-p {
  font-size: 8.5px;
  font-weight: 700;
  color: #fff;
  background: #2456E6;
  padding: 5px 11px;
  border-radius: 20px;
}

.is-mock-wbtn-s {
  font-size: 8.5px;
  font-weight: 600;
  color: #2456E6;
  border: 1px solid #D9E3FB;
  padding: 5px 11px;
  border-radius: 20px;
  background: #fff;
}

.is-mock-wnumbers {
  display: flex;
  gap: 16px;
}

.is-mock-wnum {
  font-size: 8.5px;
  color: #6C7088;
}

.is-mock-wnum b {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #11142A;
  margin-bottom: 1px;
}

.is-mock-wspk-sect {
  padding: 10px 12px;
  flex: 1;
}

.is-mock-wsect-lbl {
  font-family: 'JetBrains Mono', monospace;
  font-size: 7px;
  letter-spacing: 0.09em;
  color: #9196AC;
  margin-bottom: 8px;
}

.is-mock-wspks {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}

.is-mock-wspk {
  text-align: center;
}

.is-mock-wspkav {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  margin: 0 auto 5px;
}

.is-mock-wspkname {
  font-size: 8px;
  font-weight: 700;
  color: #11142A;
}

/* PHONE MOCK */
.is-mock-phone {
  position: absolute;
  top: 12px;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 170px;
  background: #fff;
  border-radius: 26px;
  border: 3px solid #D4D8E6;
  overflow: hidden;
  box-shadow: 0 20px 50px -10px rgba(17, 20, 42, 0.28);
  display: flex;
  flex-direction: column;
  animation: floaty 7s ease-in-out infinite;
}

.is-mock-pnotch {
  width: 44px;
  height: 7px;
  background: #D0D4E0;
  border-radius: 4px;
  margin: 8px auto 4px;
  flex-shrink: 0;
}

.is-mock-pheader {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 12px 7px;
  border-bottom: 1px solid #F0F2F8;
  flex-shrink: 0;
}

.is-mock-papp-name {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 10px;
  color: #11142A;
}

.is-mock-pheader-right {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 10px;
  color: #9196AC;
}

.is-mock-pav {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #2456E6;
  color: #fff;
  font-size: 7.5px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.is-mock-pdate {
  font-family: 'JetBrains Mono', monospace;
  font-size: 8px;
  color: #9196AC;
  padding: 6px 12px 4px;
  flex-shrink: 0;
}

.is-mock-plive-banner {
  display: flex;
  align-items: center;
  gap: 5px;
  background: #EAF0FE;
  padding: 6px 12px;
  font-size: 8px;
  color: #2456E6;
  font-weight: 600;
  flex-shrink: 0;
}

.is-mock-plive-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #2456E6;
  flex-shrink: 0;
}

.is-mock-pjoin {
  margin-left: auto;
  background: #2456E6;
  color: #fff;
  font-size: 8px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 10px;
}

.is-mock-psessions {
  flex: 1;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.is-mock-psession {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-bottom: 1px solid #F5F6FA;
  flex-shrink: 0;
}

.is-mock-psession--active {
  background: #EAF0FE;
}

.is-mock-ptime {
  font-family: 'JetBrains Mono', monospace;
  font-size: 8px;
  color: #9196AC;
  min-width: 30px;
  flex-shrink: 0;
}

.is-mock-psess-body {
  flex: 1;
}

.is-mock-psess-title {
  font-size: 9.5px;
  font-weight: 700;
  color: #11142A;
  margin-bottom: 2px;
}

.is-mock-psession--active .is-mock-psess-title {
  color: #2456E6;
}

.is-mock-psess-info {
  font-size: 8px;
  color: #9196AC;
}

.is-mock-plive-pill {
  font-size: 7px;
  font-weight: 800;
  color: #fff;
  background: #2456E6;
  border-radius: 4px;
  padding: 2px 5px;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

.is-mock-ptabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #F0F2F8;
  padding: 7px 0 9px;
  flex-shrink: 0;
}

.is-mock-ptab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  font-size: 13px;
  color: #C0C4D4;
}

.is-mock-ptab span {
  font-size: 7px;
}

.is-mock-ptab--on {
  color: #2456E6;
}

/* KIOSK MOCK */
.is-mock-kiosk {
  position: absolute;
  inset: 12px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 12px 40px -8px rgba(17, 20, 42, 0.22);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  /* animation: floaty 7s ease-in-out infinite; */
}

.is-mock-kiosk-topbar {
  background: #2456E6;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}

.is-mock-kiosk-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
}

.is-mock-kiosk-logo-sq {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.25);
}

.is-mock-kiosk-counter {
  font-size: 8.5px;
  color: rgba(255, 255, 255, 0.75);
  font-family: 'JetBrains Mono', monospace;
}

.is-mock-kiosk-photo {
  flex: 1;
  background: linear-gradient(160deg, #c4d2f5, #d6e2fb, #e0eafd);
  position: relative;
  overflow: hidden;
}

.is-mock-kiosk-frame-overlay {
  position: absolute;
  inset: 8px;
  border: 2px solid rgba(255, 255, 255, 0.65);
  border-radius: 4px;
  z-index: 2;
  pointer-events: none;
}

.is-mock-kiosk-frame-overlay::before,
.is-mock-kiosk-frame-overlay::after {
  content: '';
  position: absolute;
  width: 14px;
  height: 14px;
  border: 3px solid #fff;
}

.is-mock-kiosk-frame-overlay::before {
  top: -2px;
  left: -2px;
  border-right: none;
  border-bottom: none;
}

.is-mock-kiosk-frame-overlay::after {
  bottom: -2px;
  right: -2px;
  border-left: none;
  border-top: none;
}

.is-mock-kiosk-silhouettes {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: flex-end;
  gap: 6px;
}

.is-mock-kiosk-sil {
  border-radius: 50px 50px 0 0;
  background: rgba(36, 86, 230, 0.18);
}

.is-mock-kiosk-sil--a {
  width: 52px;
  height: 90px;
}

.is-mock-kiosk-sil--b {
  width: 44px;
  height: 75px;
}

.is-mock-kiosk-brand-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(36, 86, 230, 0.88), transparent);
  padding: 22px 14px 10px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 8px;
}

.is-mock-kiosk-badge {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  font-size: 10px;
  color: #fff;
  letter-spacing: 0.04em;
}

.is-mock-kiosk-date-badge {
  font-size: 8.5px;
  color: rgba(255, 255, 255, 0.7);
  font-family: 'JetBrains Mono', monospace;
  margin-left: auto;
}

.is-mock-kiosk-actions {
  background: #fff;
  flex-shrink: 0;
  padding: 10px 12px;
}

.is-mock-kiosk-share-row {
  display: flex;
  gap: 7px;
  margin-bottom: 9px;
}

.is-mock-kiosk-share-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  background: #F3F5FB;
  border: 1px solid #E4E7F0;
  border-radius: 8px;
  padding: 7px 4px;
  font-size: 13px;
  color: #545971;
}

.is-mock-kiosk-share-btn span {
  font-size: 7px;
  color: #6C7088;
}

.is-mock-kiosk-share-btn--dl {
  background: #2456E6;
  border-color: #2456E6;
  color: #fff;
}

.is-mock-kiosk-share-btn--dl span {
  color: rgba(255, 255, 255, 0.8);
}

.is-mock-kiosk-gal-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 7px;
  letter-spacing: 0.09em;
  color: #9196AC;
  margin-bottom: 6px;
}

.is-mock-kiosk-thumbs {
  display: flex;
  gap: 5px;
}

.is-mock-kiosk-thumb {
  flex: 1;
  height: 34px;
  border-radius: 5px;
  border: 1px solid #E0E4F0;
}

.is-mock-kiosk-thumb--a {
  background: linear-gradient(135deg, #c4d2f5, #b4c5f4);
}

.is-mock-kiosk-thumb--b {
  background: linear-gradient(135deg, #ccd8f8, #c0cef7);
}

.is-mock-kiosk-thumb--c {
  background: linear-gradient(135deg, #b8c8f3, #accaf2);
}

.is-mock-kiosk-thumb--d {
  background: linear-gradient(135deg, #d0dcf9, #c6d4f8);
}

.is-mock-kiosk-thumb--e {
  background: linear-gradient(135deg, #d8e2fa, #ccd8f9);
}

/* ══════════════════════════════════════════════════
   IS-FEATURES — COMPLETE ALIGNMENT & UX OVERHAUL
   (these rules override all earlier is-feature* and
    is-mock-* declarations above)
══════════════════════════════════════════════════ */
.is-features {
  background: white;
  border-top: 1px solid #EBF0F5;
  border-bottom: 1px solid #EBF0F5;
}

.is-features-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 40px;
}

.is-features-hdr {
  text-align: center;
  margin-bottom: 72px;
}

.is-features-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #2456E6;
  margin-bottom: 16px;
}

.is-features-h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 42px;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: #11142A;
  max-width: 560px;
  margin: 0 auto;
}

.is-features-rows {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.is-feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 72px 0;
  border-bottom: 1px solid #EBF0F5;
}

.is-feature-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.is-feature-row--flush-top {
  padding-top: 0;
}

.is-feature-copy {
  order: 1;
  padding: 0 8px 0 0;
}

.is-feature-visual {
  order: 2;
}

.is-feature-row--reverse .is-feature-copy {
  order: 2;
  padding: 0 0 0 8px;
}

.is-feature-row--reverse .is-feature-visual {
  order: 1;
}

.is-feature-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: #E8EEFE;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 22px;
  box-shadow: 0 4px 16px rgba(36, 86, 230, 0.14);
}

.is-feature-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 28px;
  letter-spacing: -0.02em;
  color: #11142A;
  margin-bottom: 14px;
  line-height: 1.2;
}

.is-feature-desc {
  font-size: 16px;
  line-height: 1.7;
  color: #4C516A;
  margin: 0 0 26px;
  /* max-width: 400px; */
}

.is-feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.is-feature-tag {
  font-size: 12.5px;
  color: #2456E6;
  background: #EAF0FE;
  border: 1px solid #D9E3FB;
  padding: 6px 14px;
  border-radius: 100px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.is-feature-visual {
  height: 440px;
  min-height: unset;
  background: linear-gradient(150deg, #EEF3FE 0%, #E2EBFB 100%);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  border: 1px solid #D4DEF5;
  box-shadow: 0 20px 56px -16px rgba(36, 86, 230, 0.16), 0 2px 8px rgba(17, 20, 42, 0.06);
  order: 2;
}

/* ── Traffic-light browser dots ── */
.is-mock-dots {
  display: flex;
  gap: 5px;
  align-items: center;
  flex-shrink: 0;
}

.is-mock-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.is-mock-dots span:nth-child(1) {
  background: #FF5F57;
}

.is-mock-dots span:nth-child(2) {
  background: #FEBC2E;
}

.is-mock-dots span:nth-child(3) {
  background: #28C840;
}

/* ── BROWSER MOCK (full-fill, overrides earlier rules) ── */
.is-mock-browser {
  position: absolute !important;
  top: 14px !important;
  left: 14px !important;
  right: 14px !important;
  bottom: 14px !important;
  width: auto !important;
  transform: none !important;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 18px 52px -10px rgba(17, 20, 42, 0.22);
  overflow: hidden;
  display: flex !important;
  flex-direction: column !important;
  animation: floaty 7s ease-in-out infinite;
}

.is-mock-bchr {
  background: #F3F4F8;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid #E4E8F0;
  flex-shrink: 0;
}

.is-mock-url {
  flex: 1;
  background: #fff;
  border-radius: 5px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 8px;
  color: #9196AC;
  padding: 4px 10px;
  border: 1px solid #E4E7F0;
  display: flex;
  align-items: center;
}

.is-mock-wsite {
  display: flex;
  flex-direction: column;
  flex: 1;
  overflow: hidden;
}

.is-mock-wnav {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 14px;
  border-bottom: 1px solid #F0F2F8;
  flex-shrink: 0;
}

.is-mock-wlogo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  color: #11142A;
  white-space: nowrap;
}

.is-mock-wlogo b {
  color: #2456E6;
}

.is-mock-wnavlinks {
  display: flex;
  gap: 12px;
  flex: 1;
}

.is-mock-wnavlinks span {
  font-size: 8.5px;
  color: #6C7088;
}

.is-mock-wcta {
  font-size: 8.5px;
  font-weight: 700;
  color: #fff;
  background: #2456E6;
  padding: 5px 12px;
  border-radius: 20px;
  white-space: nowrap;
}

.is-mock-whero {
  background: linear-gradient(135deg, #EFF3FD 0%, #DDE6FA 100%);
  padding: 16px 16px 14px;
  flex-shrink: 0;
  border-bottom: 1px solid #DEE8F8;
}

.is-mock-wtag {
  font-size: 7.5px;
  color: #2456E6;
  background: #EAF0FE;
  border: 1px solid #D4DFFB;
  padding: 3px 9px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 10px;
  font-family: 'JetBrains Mono', monospace;
}

.is-mock-wh1 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.2;
  color: #11142A;
  margin-bottom: 12px;
}

.is-mock-wh1 span {
  color: #2456E6;
}

.is-mock-wbtns {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.is-mock-wbtn-p {
  font-size: 8.5px;
  font-weight: 700;
  color: #fff;
  background: #2456E6;
  padding: 5px 12px;
  border-radius: 20px;
}

.is-mock-wbtn-s {
  font-size: 8.5px;
  font-weight: 600;
  color: #2456E6;
  border: 1.5px solid #C8D8FA;
  padding: 5px 12px;
  border-radius: 20px;
  background: #fff;
}

.is-mock-wnumbers {
  display: flex;
  gap: 18px;
}

.is-mock-wnum {
  font-size: 8px;
  color: #6C7088;
}

.is-mock-wnum b {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #11142A;
  margin-bottom: 2px;
}

.is-mock-wspk-sect {
  padding: 12px 14px;
  flex: 1;
}

.is-mock-wsect-lbl {
  font-family: 'JetBrains Mono', monospace;
  font-size: 7px;
  letter-spacing: 0.1em;
  color: #9196AC;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.is-mock-wspks {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.is-mock-wspk {
  text-align: center;
}

.is-mock-wspkav {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10.5px;
  font-weight: 700;
  margin: 0 auto 6px;
}

.is-mock-wspk:nth-child(1) .is-mock-wspkav {
  background: #E8EEFE;
  color: #2456E6;
}

.is-mock-wspk:nth-child(2) .is-mock-wspkav {
  background: #EAF5EA;
  color: #4F9A3E;
}

.is-mock-wspk:nth-child(3) .is-mock-wspkav {
  background: #FFF3EE;
  color: #E0613B;
}

.is-mock-wspk:nth-child(4) .is-mock-wspkav {
  background: #FFF8EC;
  color: #C98A0E;
}

.is-mock-wspkname {
  font-size: 8px;
  font-weight: 600;
  color: #11142A;
}

/* ── PHONE MOCK (full-height centered, overrides earlier) ── */
.is-mock-phone {
  position: absolute !important;
  top: 14px !important;
  bottom: 14px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: 184px !important;
  background: #fff;
  border-radius: 30px;
  border: 3px solid #CDD2E4;
  overflow: hidden;
  box-shadow: 0 28px 60px -14px rgba(17, 20, 42, 0.30);
  display: flex !important;
  flex-direction: column !important;
  animation: floaty 7s ease-in-out infinite;
}

.is-mock-pnotch {
  width: 46px;
  height: 7px;
  background: #CDD2E4;
  border-radius: 4px;
  margin: 9px auto 4px;
  flex-shrink: 0;
}

.is-mock-pheader {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 13px 8px;
  border-bottom: 1px solid #F0F2F8;
  flex-shrink: 0;
}

.is-mock-papp-name {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 10.5px;
  color: #11142A;
}

.is-mock-pheader-right {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  color: #9196AC;
}

.is-mock-pav {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #2456E6;
  color: #fff;
  font-size: 8px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.is-mock-pdate {
  font-family: 'JetBrains Mono', monospace;
  font-size: 8px;
  color: #9196AC;
  padding: 7px 13px 5px;
  flex-shrink: 0;
}

.is-mock-plive-banner {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #EAF0FE;
  padding: 7px 13px;
  font-size: 8.5px;
  color: #2456E6;
  font-weight: 600;
  flex-shrink: 0;
}

.is-mock-plive-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #2456E6;
  flex-shrink: 0;
  animation: pulseGlow 1.5s ease-in-out infinite;
}

@keyframes pulseGlow {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.4;
  }
}

.is-mock-pjoin {
  margin-left: auto;
  background: #2456E6;
  color: #fff;
  font-size: 8px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 12px;
}

.is-mock-psessions {
  flex: 1;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.is-mock-psession {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 13px;
  border-bottom: 1px solid #F5F6FA;
  flex-shrink: 0;
}

.is-mock-psession--active {
  background: #EAF0FE;
}

.is-mock-ptime {
  font-family: 'JetBrains Mono', monospace;
  font-size: 8px;
  color: #9196AC;
  min-width: 32px;
  flex-shrink: 0;
}

.is-mock-psess-body {
  flex: 1;
}

.is-mock-psess-title {
  font-size: 9.5px;
  font-weight: 700;
  color: #11142A;
  margin-bottom: 2px;
}

.is-mock-psession--active .is-mock-psess-title {
  color: #2456E6;
}

.is-mock-psess-info {
  font-size: 7.5px;
  color: #9196AC;
}

.is-mock-plive-pill {
  font-size: 7px;
  font-weight: 800;
  color: #fff;
  background: #2456E6;
  border-radius: 4px;
  padding: 2px 6px;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

.is-mock-ptabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1.5px solid #F0F2F8;
  padding: 8px 0 10px;
  flex-shrink: 0;
}

.is-mock-ptab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  font-size: 13px;
  color: #C0C4D4;
}

.is-mock-ptab span {
  font-size: 7px;
}

.is-mock-ptab--on {
  color: #2456E6;
}

/* ── KIOSK MOCK (full-fill, overrides earlier) ── */
.is-mock-kiosk {
  position: absolute !important;
  top: 14px !important;
  left: 14px !important;
  right: 14px !important;
  bottom: 14px !important;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 18px 52px -10px rgba(17, 20, 42, 0.22);
  overflow: hidden;
  display: flex !important;
  flex-direction: column !important;
  /* animation: floaty 7s ease-in-out infinite; */
}

.is-mock-kiosk-topbar {
  background: #2456E6;
  padding: 11px 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}

.is-mock-kiosk-brand {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  color: #fff;
}

.is-mock-kiosk-logo-sq {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.25);
  flex-shrink: 0;
}

.is-mock-kiosk-counter {
  font-size: 8.5px;
  color: rgba(255, 255, 255, 0.75);
  font-family: 'JetBrains Mono', monospace;
  display: flex;
  align-items: center;
  gap: 5px;
}

.is-mock-kiosk-photo {
  flex: 1;
  background: linear-gradient(160deg, #c0d0f4 0%, #d4e0fa 50%, #dce8fc 100%);
  position: relative;
  overflow: hidden;
}

.is-mock-kiosk-frame-overlay {
  position: absolute;
  inset: 8px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 6px;
  z-index: 2;
  pointer-events: none;
}

.is-mock-kiosk-frame-overlay::before,
.is-mock-kiosk-frame-overlay::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  border: 3px solid #fff;
}

.is-mock-kiosk-frame-overlay::before {
  top: -2px;
  left: -2px;
  border-right: none;
  border-bottom: none;
  border-radius: 4px 0 0 0;
}

.is-mock-kiosk-frame-overlay::after {
  bottom: -2px;
  right: -2px;
  border-left: none;
  border-top: none;
  border-radius: 0 0 4px 0;
}

.is-mock-kiosk-silhouettes {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: flex-end;
  gap: 8px;
}

.is-mock-kiosk-sil {
  border-radius: 50px 50px 0 0;
  background: rgba(36, 86, 230, 0.18);
}

.is-mock-kiosk-sil--a {
  width: 56px;
  height: 100px;
}

.is-mock-kiosk-sil--b {
  width: 46px;
  height: 82px;
}

.is-mock-kiosk-brand-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(36, 86, 230, 0.90) 0%, transparent 100%);
  padding: 24px 15px 11px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
}

.is-mock-kiosk-badge {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  font-size: 10.5px;
  color: #fff;
  letter-spacing: 0.05em;
}

.is-mock-kiosk-date-badge {
  font-size: 8.5px;
  color: rgba(255, 255, 255, 0.72);
  font-family: 'JetBrains Mono', monospace;
  margin-left: auto;
}

.is-mock-kiosk-actions {
  background: #fff;
  flex-shrink: 0;
  padding: 11px 13px;
}

.is-mock-kiosk-share-row {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
}

.is-mock-kiosk-share-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  background: #F3F5FB;
  border: 1px solid #E4E7F0;
  border-radius: 9px;
  padding: 8px 4px 7px;
  font-size: 14px;
  color: #545971;
}

.is-mock-kiosk-share-btn span {
  font-size: 7px;
  color: #6C7088;
  font-weight: 500;
}

.is-mock-kiosk-share-btn--dl {
  background: #2456E6;
  border-color: #2456E6;
  color: #fff;
}

.is-mock-kiosk-share-btn--dl span {
  color: rgba(255, 255, 255, 0.82);
}

.is-mock-kiosk-gal-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 7px;
  letter-spacing: 0.1em;
  color: #9196AC;
  text-transform: uppercase;
  margin-bottom: 7px;
}

.is-mock-kiosk-thumbs {
  display: flex;
  gap: 6px;
}

.is-mock-kiosk-thumb {
  flex: 1;
  height: 36px;
  border-radius: 6px;
  border: 1px solid #DEE4F2;
}

.is-mock-kiosk-thumb--a {
  background: linear-gradient(135deg, #c4d2f5, #b8c8f4);
}

.is-mock-kiosk-thumb--b {
  background: linear-gradient(135deg, #ccd8f8, #c0cef7);
}

.is-mock-kiosk-thumb--c {
  background: linear-gradient(135deg, #b8c8f3, #aec6f5);
}

.is-mock-kiosk-thumb--d {
  background: linear-gradient(135deg, #d0dcf9, #c6d4f8);
}

.is-mock-kiosk-thumb--e {
  background: linear-gradient(135deg, #d8e2fa, #ccd8f9);
}

/* ── Leadership team photos ── */
.cp-leader-card {
  text-align: center;
}

.cp-leader-avatar {
  overflow: hidden;
}

.cp-leader-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  border-radius: 18px;
}

/* Filter bar — centered variant */
.cp-filter-bar--center {
  justify-content: center;
}

/* ══════════════════════════════════════════════════
   COLORFUL MOCKUPS OVERRIDE
══════════════════════════════════════════════════ */

/* ── Visual panel backgrounds per row ── */
.is-feature-row:nth-child(1) .is-feature-visual {
  background: linear-gradient(150deg, #E8EFFE 0%, #D6E2FC 100%);
}

.is-feature-row:nth-child(2) .is-feature-visual {
  background: linear-gradient(150deg, #E4F8F4 0%, #D4EDF9 100%);
}

.is-feature-row:nth-child(3) .is-feature-visual {
  background: linear-gradient(150deg, #F0ECFF 0%, #E5DDFB 100%);
}

/* ─── 1. WEBSITE MOCK — rich colored hero ─── */
.is-mock-whero {
  background: linear-gradient(135deg, #3730D4 0%, #2456E6 55%, #0699E9 100%);
  border-bottom: none;
}

.is-mock-wtag {
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.28);
}

.is-mock-wh1 {
  color: #fff;
}

.is-mock-wh1 span {
  color: #7EF0DD;
}

.is-mock-wbtn-p {
  background: #fff;
  color: #2456E6;
}

.is-mock-wbtn-s {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.32);
  color: #fff;
}

.is-mock-wnum {
  color: rgba(255, 255, 255, 0.68);
}

.is-mock-wnum b {
  color: #fff;
}

/* Speaker row — subtle colored bg */
.is-mock-wspk-sect {
  background: #F6F8FF;
}

.is-mock-wsect-lbl {
  color: #7B89B8;
}

/* ─── 2. PHONE MOCK — gradient header + colored sessions ─── */
.is-mock-pheader {
  background: linear-gradient(135deg, #2456E6 0%, #0699E9 100%);
  border-bottom: none;
  padding: 7px 13px 9px;
}

.is-mock-papp-name {
  color: #fff;
}

.is-mock-pheader-right {
  color: rgba(255, 255, 255, 0.75);
}

.is-mock-pav {
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.38);
}

.is-mock-plive-banner {
  background: linear-gradient(90deg, #E4FBF5, #EBF9FF);
  border-left: 3px solid #0DD1AB;
  color: #0A9E82;
}

.is-mock-plive-dot {
  background: #0DD1AB;
}

.is-mock-pjoin {
  background: #0DD1AB;
  color: #fff;
}

/* Coloured left-border per session */
.is-mock-psession:nth-child(1) {
  border-left: 3px solid #2456E6;
}

.is-mock-psession:nth-child(2) {
  border-left: 3px solid #9333EA;
}

.is-mock-psession:nth-child(3) {
  border-left: 3px solid #F59E0B;
}

.is-mock-psession:nth-child(4) {
  border-left: 3px solid #10B981;
}

/* Active session title colour already #2456E6 — keep */
.is-mock-ptabs {
  background: #F5F7FF;
}

/* ─── 3. KIOSK MOCK — vibrant photo + branded share buttons ─── */
.is-mock-kiosk-photo {
  background: linear-gradient(160deg, #7C3AED 0%, #4F46E5 28%, #2456E6 55%, #0699E9 78%, #0DD1AB 100%);
}

.is-mock-kiosk-frame-overlay {
  border-color: rgba(255, 255, 255, 0.55);
}

.is-mock-kiosk-sil {
  background: rgba(255, 255, 255, 0.18);
}

.is-mock-kiosk-brand-overlay {
  background: linear-gradient(to top, rgba(55, 30, 180, 0.88) 0%, transparent 100%);
}

/* WhatsApp */
.is-mock-kiosk-share-btn:nth-child(1) {
  background: #E6F9EE;
  border-color: #BBE8CC;
  color: #25D366;
}

.is-mock-kiosk-share-btn:nth-child(1) span {
  color: #25D366;
}

/* Instagram */
.is-mock-kiosk-share-btn:nth-child(2) {
  background: #FDF0FB;
  border-color: #EFC8F0;
  color: #C13584;
}

.is-mock-kiosk-share-btn:nth-child(2) span {
  color: #C13584;
}

/* Email */
.is-mock-kiosk-share-btn:nth-child(3) {
  background: #EEF3FE;
  border-color: #C8D9FA;
  color: #2456E6;
}

.is-mock-kiosk-share-btn:nth-child(3) span {
  color: #2456E6;
}

/* Save/Download — keep existing --dl blue */

/* Vibrant thumbnail strips */
.is-mock-kiosk-thumb--a {
  background: linear-gradient(135deg, #7C3AED, #4F46E5);
  border-color: #6D35D4;
}

.is-mock-kiosk-thumb--b {
  background: linear-gradient(135deg, #2456E6, #0699E9);
  border-color: #1E50D6;
}

.is-mock-kiosk-thumb--c {
  background: linear-gradient(135deg, #0699E9, #0DD1AB);
  border-color: #08A8C8;
}

.is-mock-kiosk-thumb--d {
  background: linear-gradient(135deg, #F59E0B, #EF4444);
  border-color: #E5890A;
}

.is-mock-kiosk-thumb--e {
  background: linear-gradient(135deg, #10B981, #0DD1AB);
  border-color: #0DA872;
}

/* ══════════════════════════════════════════════════
   IS-FEATURES RESPONSIVE
   (placed after all base is-feature* overrides so
    cascade order is correct)
══════════════════════════════════════════════════ */

/* Tablet landscape — tighten gap, shrink visual height */
@media (max-width: 1100px) {
  .is-feature-row {
    gap: 40px;
    padding: 56px 0;
  }

  .is-feature-visual {
    height: 380px;
  }

  .is-features-h2 {
    font-size: 36px;
  }
}

/* Tablet portrait — stack: VISUAL first, copy second */
@media (max-width: 900px) {
  .is-features-inner {
    padding: 40px 24px;
  }

  .is-features-h2 {
    font-size: 30px;
  }

  .is-features-hdr {
    margin-bottom: 44px;
  }

  .is-feature-row {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 44px 0;
  }

  /* Visual always on top */
  .is-feature-visual,
  .is-feature-row--reverse .is-feature-visual {
    order: 1;
    height: 300px;
  }

  /* Copy always below */
  .is-feature-copy,
  .is-feature-row--reverse .is-feature-copy {
    order: 2;
    padding: 0;
  }
}

/* Mobile — reduce further */
@media (max-width: 600px) {
  .is-features-inner {
    padding: 32px 18px;
  }

  .is-features-h2 {
    font-size: 24px;
  }

  .is-features-hdr {
    margin-bottom: 32px;
  }

  .is-feature-row {
    gap: 20px;
    padding: 36px 0;
  }

  .is-feature-visual,
  .is-feature-row--reverse .is-feature-visual {
    height: 260px;
  }

  .is-feature-title {
    font-size: 22px;
  }

  .is-feature-desc {
    font-size: 15px;
  }
}

/* Small phones */
@media (max-width: 480px) {
  .is-features-inner {
    padding: 28px 16px;
  }

  .is-feature-row {
    padding: 28px 0;
    gap: 16px;
  }

  .is-feature-visual,
  .is-feature-row--reverse .is-feature-visual {
    height: 220px;
  }

  .is-feature-title {
    font-size: 20px;
  }

  .is-feature-desc {
    font-size: 14px;
  }
}