/* ============================================================
   Kentures Theme v5 — Cinematic Industrial Redesign
   Preserves all audience sidebar functionality
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,300;0,400;0,600;0,700;0,900;1,300;1,700&family=Instrument+Sans:ital,wght@0,400;0,500;0,600;1,400&display=swap');

/* ─── TOKENS ─────────────────────────────────────────────── */
:root {
  /* Brand */
  --c-navy:        #0F162B;
  --c-navy2:       #131b35;
  --c-blue:        #161BA9;
  --c-sky:         #5AC1F2;
  --c-white:       #ffffff;
  --c-chalk:       #E8EDF8;
  
  /* Derived */
  --c-navy-soft:   #1a2340;
  --c-blue-10:     rgba(22,27,169,0.08);
  --c-blue-20:     rgba(22,27,169,0.18);
  --c-sky-15:      rgba(90,193,242,0.15);
  --c-sky-30:      rgba(90,193,242,0.30);
  --c-muted:       rgba(232,237,248,0.55);
  --c-muted-light: rgba(232,237,248,0.35);
  --c-border:      rgba(255,255,255,0.06);
  --c-bg-soft:     rgba(19,27,53,0.8);
  --c-sky-glow:    rgba(90,193,242,0.18);
  --c-surface:     rgba(255,255,255,0.05);
  --c-body:        var(--c-white);

  /* Typography */
  --f-display: 'Barlow Condensed', sans-serif;
  --f-body:    'Instrument Sans', system-ui, -apple-system, sans-serif;

  /* Scale */
  --text-xs:   0.8rem;
  --text-sm:   0.9rem;
  --text-base: 1.05rem;
  --text-lg:   1.2rem;
  --text-xl:   1.45rem;
  --text-2xl:  1.8rem;
  --text-3xl:  2.2rem;
  --text-4xl:  2.8rem;
  --text-5xl:  3.5rem;
  --text-6xl:  4.5rem;

  /* Spacing */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Layout */
  --container-max: 1280px;
  --container-pad: clamp(1.5rem, 5vw, 3.5rem);
  --h-utility:     40px;
  --h-header:      64px;
  --h-nav-total:   calc(var(--h-utility) + var(--h-header));

  /* Radius */
  --radius-sm:   2px;
  --radius-md:   4px;
  --radius-lg:   6px;
  --radius-xl:   8px;
  --radius-full: 9999px;

  /* Shadow */
  --shadow-sm:  0 1px 3px rgba(0,0,0,0.3);
  --shadow-md:  0 4px 16px rgba(0,0,0,0.4);
  --shadow-lg:  0 12px 40px rgba(0,0,0,0.5);
  --shadow-xl:  0 24px 64px rgba(0,0,0,0.6);

  /* Easing */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --dur-fast: 150ms;
  --dur-base: 240ms;
  --dur-slow: 380ms;
}

/* ─── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--f-body);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--c-white);
  background: var(--c-navy);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  cursor: none;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button, input, textarea, select { font: inherit; background: none; border: none; }
button { cursor: pointer; }

/* ─── CUSTOM CURSOR ─────────────────────────────────────── */
.cursor {
  position: fixed;
  width: 10px;
  height: 10px;
  background: var(--c-sky);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.08s, width 0.3s var(--ease-out), height 0.3s var(--ease-out), background 0.3s;
  mix-blend-mode: screen;
}
.cursor-ring {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(90, 193, 242, 0.4);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.18s var(--ease-out), width 0.4s var(--ease-out), height 0.4s var(--ease-out), opacity 0.3s;
}
.cursor.is-hovering { width: 6px; height: 6px; background: var(--c-white); }
.cursor-ring.is-hovering { width: 56px; height: 56px; opacity: 0.6; }

/* ─── TYPOGRAPHY ─────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--f-display);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--c-white);
}
h1 { font-size: clamp(3rem, 12vw, 8rem); }
h2 { font-size: clamp(2.2rem, 6vw, 5rem); }
h3 { font-size: clamp(1.8rem, 4vw, 3rem); }
h4 { font-size: var(--text-xl); font-family: var(--f-body); font-weight: 600; letter-spacing: -0.01em; text-transform: none; }
h5 { font-size: var(--text-lg); font-family: var(--f-body); font-weight: 600; }
h6 { font-size: var(--text-base); font-family: var(--f-body); font-weight: 600; }

p { line-height: 1.72; color: var(--c-muted); }
p + p { margin-top: var(--space-4); }
strong { font-weight: 600; color: var(--c-white); }

.lead {
  font-size: clamp(var(--text-lg), 2.2vw, var(--text-xl));
  color: var(--c-muted);
  line-height: 1.65;
  font-weight: 400;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-sky);
  margin-bottom: var(--space-3);
}
.eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--c-sky);
  flex-shrink: 0;
}
.eyebrow--dark::before { background: var(--c-blue); }
.eyebrow--muted { color: var(--c-muted); }
.eyebrow--muted::before { background: var(--c-muted); }

/* ─── LAYOUT ─────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}
.container--narrow { max-width: 760px; }
.container--wide   { max-width: 1400px; }

.section {
  padding-block: clamp(var(--space-16), 8vw, var(--space-24));
}
.section--sm  { padding-block: clamp(var(--space-10), 5vw, var(--space-16)); }
.section--xs  { padding-block: clamp(var(--space-6),  3vw, var(--space-10)); }
.section--dark { background: var(--c-navy2); }
.section--soft { background: var(--c-bg-soft); backdrop-filter: blur(10px); }
.section--blue { background: var(--c-blue); }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-8); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-6); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-6); }

@media (max-width: 960px) {
  .grid-3 { grid-template-columns: 1fr; gap: var(--space-8); }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 700px) {
  .grid-2 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
}

.text-center { text-align: center; }
.section-head { margin-bottom: clamp(var(--space-10), 5vw, var(--space-16)); }
.section-head.text-center { max-width: 700px; margin-inline: auto; }
.section-head__sub { margin-top: var(--space-4); color: var(--c-muted); font-size: var(--text-lg); line-height: 1.65; }
.section--dark .section-head__sub { color: rgba(255,255,255,0.55); }

/* ─── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 0.85rem 1.8rem;
  font-family: var(--f-body);
  font-size: var(--text-base);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: all var(--dur-base) var(--ease-out);
  position: relative;
  overflow: hidden;
  border-radius: 3px;
}
.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(90,193,242,0.15), transparent);
  transition: left 0.5s var(--ease-out);
}
.btn:hover::before { left: 100%; }

.btn--primary {
  background: var(--c-blue);
  color: var(--c-white);
  border: 1px solid transparent;
}
.btn--primary:hover {
  background: #1d23c4;
  box-shadow: 0 0 30px rgba(22,27,169,0.5);
  transform: translateY(-1px);
}

.btn--sky {
  background: var(--c-sky);
  color: var(--c-navy);
  border: 1px solid transparent;
}
.btn--sky:hover {
  background: #72ccf5;
  box-shadow: 0 0 30px rgba(90,193,242,0.4);
  transform: translateY(-1px);
}

.btn--outline {
  background: transparent;
  color: var(--c-white);
  border: 1px solid rgba(255,255,255,0.15);
}
.btn--outline:hover {
  border-color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.04);
}

.btn--outline-white {
  background: transparent;
  color: var(--c-white);
  border: 1px solid rgba(255,255,255,0.2);
}
.btn--outline-white:hover {
  border-color: var(--c-white);
  background: rgba(255,255,255,0.05);
}

.btn--ghost {
  background: transparent;
  color: var(--c-sky);
  border: none;
  padding-inline: var(--space-1);
}
.btn--ghost:hover { text-decoration: underline; }

.btn--lg { padding: 1rem 2.25rem; font-size: 1.05rem; }
.btn--sm { padding: 0.55rem 1.2rem; font-size: var(--text-sm); }

.btn-group { display: flex; flex-wrap: wrap; gap: var(--space-3); align-items: center; }

.btn svg { transition: transform 0.2s var(--ease-out); }
.btn:hover svg { transform: translateX(4px); }

/* ─── UTILITY BAR (Top Screen) ──────────────────────────── */
.utility-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--h-utility);
  background: var(--c-navy);
  z-index: 501;
  border-bottom: 1px solid var(--c-border);
}
.utility-bar__inner {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: 100%;
  gap: var(--space-6); /* Creates space between the label and the tabs */
}

/* Intro & Info Popover */
.utility-bar__intro {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}
.utility-bar__label {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--c-muted-light);
}
.utility-bar__info-wrap {
  position: relative;
  display: flex;
  align-items: center;
  cursor: help;
}
.utility-bar__info-icon {
  width: 14px;
  height: 14px;
  color: var(--c-sky);
  opacity: 0.7;
  transition: opacity var(--dur-fast);
}
.utility-bar__info-wrap:hover .utility-bar__info-icon {
  opacity: 1;
}
.utility-bar__info-popover {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  width: 300px;
  white-space: normal;
  background: rgba(19, 27, 53, 0.97);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(90, 193, 242, 0.3);
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-md);
  font-size: 0.75rem;
  color: var(--c-muted);
  line-height: 1.6;
  text-transform: none;
  letter-spacing: normal;
  opacity: 0;
  pointer-events: none;
  transition: all var(--dur-fast) var(--ease-out);
  box-shadow: var(--shadow-md);
  z-index: 600;
}
.utility-bar__info-wrap:hover .utility-bar__info-popover {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Tabs */
.utility-bar__tabs {
  display: flex;
  height: 100%;
}
.utility-tab {
  position: relative;
  font-size: 0.68rem;
  font-weight: 600;
  color: rgba(255,255,255,0.45);
  padding: 0 var(--space-4);
  display: flex;
  align-items: center;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all var(--dur-fast);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.utility-tab:hover { color: var(--c-white); background: rgba(255,255,255,0.03); }
.utility-tab.is-active {
  color: var(--c-sky);
  border-bottom-color: var(--c-sky);
  background: var(--c-sky-15);
}

/* Tab Tooltips */
.utility-tooltip {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: var(--c-navy2);
  border: 1px solid var(--c-border);
  padding: 6px 10px;
  border-radius: 4px;
  font-size: 0.65rem;
  color: var(--c-muted);
  white-space: nowrap;
  text-transform: none;
  letter-spacing: normal;
  opacity: 0;
  pointer-events: none;
  transition: all var(--dur-fast) var(--ease-out);
  z-index: 600;
  box-shadow: var(--shadow-sm);
}
/* Little arrow for tooltip */
.utility-tooltip::before {
  content: '';
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 4px;
  border-style: solid;
  border-color: transparent transparent var(--c-border) transparent;
}
.utility-tab.has-tooltip:hover .utility-tooltip {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

@media (max-width: 800px) {
  .utility-bar__intro { display: none; } /* Hide label on mobile to save space */
  .utility-bar__inner { justify-content: center; }
  .utility-tab { padding: 0 var(--space-3); font-size: 0.6rem; }
  .utility-tooltip { display: none; } /* Hide tooltips on touch devices */
}

/* ─── HEADER (sticky nav) ───────────────────────────────── */
.site-header {
  position: fixed;
  top: var(--h-utility);
  left: 0;
  right: 0;
  z-index: 500;
  height: var(--h-header);
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(20px) saturate(1.2);
  border-bottom: 1px solid rgba(15,22,43,0.08);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding-inline: var(--container-pad);
  gap: var(--space-8);
}
.site-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-shrink: 0;
}
.site-logo__wordmark {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-white);
}
.site-logo__wordmark span { color: var(--c-sky); }

.site-nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  margin-left: auto;
}
.site-nav a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(15,22,43,0.5);
  transition: color 0.2s;
}
.site-nav a:hover,
.site-nav a.current-menu-item { color: var(--c-navy); }

.site-header__actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-shrink: 0;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
}
.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--c-navy);
  border-radius: 2px;
  transition: all var(--dur-base) var(--ease-out);
}
.menu-toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── AUDIENCE BLOCKS (preserved) ───────────────────────── */
.audience-block { display: none; }
.audience-block.is-visible { display: block; }

/* ─── HERO (cinematic full-bleed) ───────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: brightness(0.35) saturate(0.7);
  transform: scale(1.04);
  animation: heroZoom 18s ease-out forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.08); }
  to { transform: scale(1.0); }
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15,22,43,0.5) 0%, transparent 30%, transparent 55%, rgba(15,22,43,0.95) 100%),
    linear-gradient(90deg, rgba(15,22,43,0.7) 0%, transparent 60%),
    radial-gradient(ellipse 70% 60% at 75% 40%, rgba(22,27,169,0.35) 0%, transparent 65%),
    radial-gradient(ellipse 40% 50% at 80% 20%, rgba(90,193,242,0.12) 0%, transparent 60%);
}
.hero__light {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--c-sky-glow) 0%, transparent 70%);
  top: -100px;
  right: 10%;
  pointer-events: none;
  z-index: 1;
  animation: lightPulse 6s ease-in-out infinite;
}
@keyframes lightPulse {
  0%,100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}
.hero__scan {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: repeating-linear-gradient(180deg, transparent, transparent 3px, rgba(0,0,0,0.04) 3px, rgba(0,0,0,0.04) 4px);
  pointer-events: none;
}
.hero__inner {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 var(--container-pad) clamp(3rem, 6vh, 5rem);
  padding-top: var(--h-nav-total);
  min-height: 100vh;
}
.hero__coord {
  position: absolute;
  top: calc(var(--h-nav-total) + 2rem);
  left: var(--container-pad);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 1.2s forwards;
}
.hero__coord-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--c-sky);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse { 0%,100%{opacity:1}50%{opacity:0.4} }

.hero__headline-wrap {
  overflow: hidden;
  margin-bottom: clamp(1rem, 2vh, 1.5rem);
}
.hero__headline {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(4rem, 12vw, 12rem);
  line-height: 0.88;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--c-white);
  display: block;
  opacity: 0;
  transform: translateY(60px);
  animation: slideUp 1s var(--ease-out) 0.3s forwards;
}
.hero__headline--sky { color: var(--c-sky); }
.hero__headline--outline {
  -webkit-text-stroke: 2px rgba(255,255,255,0.25);
  color: transparent;
  animation-delay: 0.5s;
}
.hero__headline--mid { animation-delay: 0.15s; }
@keyframes slideUp {
  to { opacity: 1; transform: translateY(0); }
}
.hero__bottom {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  align-items: end;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-out) 0.9s forwards;
}
.hero__desc {
  font-size: clamp(0.95rem, 1.3vw, 1.1rem);
  color: var(--c-muted);
  line-height: 1.72;
  max-width: 360px;
}
.hero__trust-badges {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  justify-content: flex-start;
}
.hero__trust-badge {
  height: 120px;
  width: auto;
  object-fit: contain;
}
.hero__stat { text-align: center; }
.hero__stat-val {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 2.2rem;
  color: var(--c-white);
  line-height: 1;
  display: block;
}
.hero__stat-label {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-top: 0.35rem;
}
.hero__actions {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  align-items: flex-end;
}
.hero__charge-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255,255,255,0.06);
  z-index: 2;
}
.hero__charge-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, transparent, var(--c-sky), rgba(90,193,242,0.3));
  animation: chargeLine 3s var(--ease-out) 1s forwards;
}
@keyframes chargeLine {
  to { width: 100%; }
}

@media (max-width: 860px) {
  .hero__bottom { grid-template-columns: 1fr; gap: 1.5rem; }
  .hero__trust-badges { justify-content: flex-start; }
  .hero__actions { align-items: flex-start; }
}

/* ─── MARQUEE / CRED BAR ────────────────────────────────── */
.marquee {
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
  background: rgba(22,27,169,0.15);
  padding: 0.9rem 0;
}
.marquee__track {
  display: flex;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 0 2.5rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.marquee__sep { color: var(--c-sky); font-size: 0.55rem; }

/* ─── PATH PANELS (cinematic cards in grid) ──────────────── */
.paths {
  padding: clamp(4rem, 8vw, 8rem) 0;
}
.paths__header {
  padding-inline: var(--container-pad);
  margin-bottom: 3.5rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.paths__headline {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  max-width: 500px;
}
.paths__headline em {
  font-style: italic;
  font-weight: 300;
  color: var(--c-sky);
}
.paths__sub {
  font-size: 0.95rem;
  color: var(--c-muted);
  max-width: 300px;
  line-height: 1.65;
  text-align: right;
}

.journey-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--c-border);
  border-radius: 8px;
  overflow: hidden;
}
@media (max-width: 960px) {
  .journey-cards { grid-template-columns: 1fr; gap: 1rem; background: transparent; }
}
.journey-card {
  background: var(--c-navy);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: all var(--dur-base) var(--ease-out);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.journey-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: transparent;
  transition: background 0.4s;
  z-index: 1;
}
.journey-card:hover {
  background: var(--c-navy2);
}
.journey-card:hover::before {
  background: linear-gradient(90deg, var(--c-sky), var(--c-blue), transparent);
}
.journey-card.is-active {
  background: var(--c-navy2);
  border-left: 2px solid var(--c-sky);
}
@media (min-width: 961px) {
  .journey-card.is-active { border-left: none; }
  .journey-card.is-active::before { background: var(--c-sky); }
}
.journey-card.is-dimmed {
  opacity: 0.5;
  filter: grayscale(0.2);
}
.journey-card.is-dimmed:hover {
  opacity: 0.85;
  filter: grayscale(0.05);
}
.journey-card__type {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-sky);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.journey-card__type::before {
  content: '';
  width: 16px;
  height: 1px;
  background: var(--c-sky);
}
.journey-card h3 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin: 0;
}
.journey-card p {
  font-size: var(--text-sm);
  color: var(--c-muted);
  line-height: 1.65;
}

/* ─── CARD ───────────────────────────────────────────────── */
.card {
  background: var(--c-navy2);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--dur-base) var(--ease-out);
}
.card:hover {
  border-color: rgba(90,193,242,0.3);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.card--highlight { border-color: var(--c-sky); }
.card--soft { background: rgba(255,255,255,0.03); border-color: transparent; }
.card__body { padding: var(--space-8); }
.card__title { font-size: var(--text-xl); margin-bottom: var(--space-3); }
.card__text { font-size: var(--text-sm); color: var(--c-muted); line-height: 1.65; }
.card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  margin-top: var(--space-5);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--c-sky);
  transition: gap var(--dur-fast);
}
.card__link:hover { gap: var(--space-3); }
.card--image .card__img { aspect-ratio: 16/9; overflow: hidden; }
.card--image .card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-out);
}
.card--image:hover .card__img img { transform: scale(1.03); }

/* ─── SPLIT LAYOUT (Why Kentures) ───────────────────────── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
}
@media (max-width: 1000px) {
  .split { grid-template-columns: 1fr; }
}
.split__visual {
  position: relative;
  overflow: hidden;
}
.split__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6) saturate(0.7);
  transition: transform 8s ease;
}
.split__visual:hover img { transform: scale(1.03); }
.split__visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 60%, var(--c-navy2) 100%),
              linear-gradient(180deg, transparent 60%, rgba(15,22,43,0.6) 100%);
}
@media (max-width: 1000px) {
  .split__visual-overlay { background: linear-gradient(180deg, transparent 50%, var(--c-navy2) 100%); }
}
.split__content {
  background: var(--c-navy2);
  padding: clamp(3rem, 7vw, 6rem) clamp(2rem, 5vw, 5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.split__data-card {
  position: absolute;
  bottom: 2.5rem;
  left: 2.5rem;
  background: rgba(15,22,43,0.85);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(90,193,242,0.18);
  border-radius: 8px;
  padding: 1.5rem 1.75rem;
  min-width: 220px;
  z-index: 2;
}
.split__data-card-label {
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-sky);
  margin-bottom: 1rem;
}
.split__data-row {
  display: flex;
  justify-content: space-between;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 0.8rem;
}
.split__data-row:last-child { border-bottom: none; }
.split__data-key { color: rgba(255,255,255,0.45); }
.split__data-val { font-weight: 600; color: var(--c-white); }
.split__data-val.sky { color: var(--c-sky); }

.checklist { display: flex; flex-direction: column; gap: var(--space-4); }
.checklist__item {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
}
.checklist__icon {
  width: 22px;
  height: 22px;
  background: rgba(90,193,242,0.15);
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.checklist__icon svg { width: 12px; height: 12px; color: var(--c-sky); }
.checklist__title { font-weight: 600; font-size: var(--text-base); margin-bottom: 2px; color: var(--c-white); }
.checklist__text { font-size: var(--text-sm); color: var(--c-muted); line-height: 1.6; }

/* ─── STEPS (process) ───────────────────────────────────── */
.process {
  padding: clamp(5rem, 9vw, 9rem) var(--container-pad);
  position: relative;
  overflow: hidden;
  background: var(--c-navy);
}
.process::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(22,27,169,0.18) 0%, transparent 65%);
  pointer-events: none;
}
.process__inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.process__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 4rem;
  gap: 2rem;
  flex-wrap: wrap;
}
.process__headline {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(2.2rem, 5vw, 4rem);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 0.93;
  margin-top: 1rem;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  position: relative;
}
.steps::before {
  content: none;
}
@media (max-width: 860px) {
  .steps { grid-template-columns: 1fr; gap: 3rem; }
  .steps::before { display: none; }
}
/* Short connector segments — sit only in the gaps between circles, not behind them */
.step:not(:last-child) {
  position: relative;
}
.step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 24px;
  /* Start after the 48px circle + 1rem gap, stop before the next step's circle */
  left: calc(48px + 1rem);
  right: calc(-2.5rem + 48px + 1rem);
  height: 1px;
  background: linear-gradient(90deg, var(--c-sky), var(--c-blue));
  opacity: 0.3;
}
@media (max-width: 860px) {
  .step:not(:last-child)::after { display: none; }
}
.step { padding-right: 2.5rem; }
.step:last-child { padding-right: 0; }
.step__head {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}
.step__num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(90,193,242,0.08);
  border: 1px solid rgba(90,193,242,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--c-sky);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.step__title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--c-white);
  line-height: 1.3;
}
.step__text {
  font-size: var(--text-base);
  color: rgba(255,255,255,0.65);
  line-height: 1.72;
}

/* ─── MEDIA GRID ────────────────────────────────────────── */
.media-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 300px 300px;
  gap: 1px;
  background: var(--c-border);
}
@media (max-width: 960px) {
  .media-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; background: transparent; gap: 1rem; }
}
@media (max-width: 680px) {
  .media-grid { grid-template-columns: 1fr; }
}
.media-cell {
  position: relative;
  overflow: hidden;
}
.media-cell--tall { grid-row: span 2; }
@media (max-width: 960px) {
  .media-cell--tall { grid-row: span 1; }
}
.media-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out), filter 0.5s;
  filter: brightness(0.55) saturate(0.65);
}
.media-cell:hover img {
  transform: scale(1.06);
  filter: brightness(0.7) saturate(0.9);
}
.media-cell__label {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  background: rgba(15,22,43,0.75);
  backdrop-filter: blur(8px);
  padding: 0.3rem 0.7rem;
  border-radius: 3px;
  z-index: 2;
}
.media-cell::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(15,22,43,0.5) 100%);
  pointer-events: none;
}

/* ─── CTA STRIP ─────────────────────────────────────────── */
.cta-strip {
  padding: clamp(5rem, 9vw, 9rem) var(--container-pad);
  position: relative;
  overflow: hidden;
  background: var(--c-navy2);
  text-align: center;
}
.cta-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 50% 50%, rgba(22,27,169,0.35) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 80% 20%, rgba(90,193,242,0.1) 0%, transparent 60%);
}
.cta-strip::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(180deg, transparent, transparent 5px, rgba(255,255,255,0.01) 5px, rgba(255,255,255,0.01) 6px);
  pointer-events: none;
}
.cta-strip__inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}
.cta-strip__eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-sky);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}
.cta-strip__eyebrow::before,
.cta-strip__eyebrow::after {
  content: '';
  flex: 1;
  max-width: 60px;
  height: 1px;
  background: rgba(90,193,242,0.4);
}
.cta-strip h2 {
  font-size: clamp(4rem, 10vw, 7rem);
  line-height: 0.88;
  margin-bottom: 1.5rem;
}
.cta-strip h2 span { color: var(--c-sky); }
.cta-strip p {
  font-size: 1rem;
  max-width: 480px;
  margin: 0 auto 3rem;
}
.cta-strip__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── FORMS ─────────────────────────────────────────────── */
.form-wrap {
  background: var(--c-navy2);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: clamp(var(--space-8), 5vw, var(--space-12));
}
.form-wrap__title { font-size: var(--text-2xl); margin-bottom: var(--space-2); color: var(--c-white); }
.form-wrap__sub { color: var(--c-muted); margin-bottom: var(--space-8); font-size: var(--text-base); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-5); }
.form-grid .field--full { grid-column: 1/-1; }
@media (max-width: 600px) { .form-grid { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: var(--space-2); }
.field label { font-size: var(--text-sm); font-weight: 600; color: var(--c-white); }
.field input, .field select, .field textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 0.7rem 0.9rem;
  font-size: var(--text-base);
  color: var(--c-white);
  transition: all var(--dur-fast);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--c-sky);
  background: rgba(90,193,242,0.05);
}
.field textarea { resize: vertical; min-height: 110px; }
.field input::placeholder, .field textarea::placeholder { color: var(--c-muted-light); }
.form-note { font-size: var(--text-xs); color: var(--c-muted); margin-top: var(--space-4); }
.form-success {
  display: none;
  background: rgba(90,193,242,0.1);
  border: 1px solid var(--c-sky);
  border-radius: var(--radius-md);
  padding: var(--space-4) var(--space-6);
  color: var(--c-sky);
  font-weight: 500;
  margin-top: var(--space-6);
}

/* ─── PAGE HERO (inner pages) ───────────────────────────── */
.page-hero {
  padding: clamp(8rem, 12vw, 10rem) 0 clamp(4rem, 6vw, 6rem);
  background: linear-gradient(180deg, var(--c-navy) 0%, var(--c-navy2) 100%);
  border-bottom: 1px solid var(--c-border);
  margin-top: var(--h-nav-total); /* Replaced 64px */
}
.page-hero h1 { margin-bottom: var(--space-4); }
.page-hero .lead { margin-top: var(--space-3); }

/* ─── BREADCRUMB ────────────────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: var(--c-muted);
  margin-bottom: var(--space-4);
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--c-sky); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb__sep { color: var(--c-border); }

/* ─── CONTENT LAYOUT ────────────────────────────────────── */
.content-cols {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: var(--space-12);
  align-items: start;
}
@media (max-width: 1024px) { .content-cols { grid-template-columns: 1fr; } }
.sticky-card {
  background: var(--c-navy2);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  position: sticky;
  top: calc(var(--h-nav-total) + 24px); /* Replaced 88px */
}

/* ─── BENEFIT ROW (partners) ────────────────────────────── */
.benefit-row {
  display: flex;
  align-items: center;
  gap: var(--space-5);
  padding: var(--space-5) var(--space-6);
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
}
.benefit-row__num {
  font-family: var(--f-display);
  font-size: var(--text-4xl);
  color: var(--c-sky);
  line-height: 1;
  min-width: 3rem;
}
.benefit-row strong {
  display: block;
  font-size: var(--text-lg);
  color: var(--c-white);
  margin-bottom: 2px;
}
.benefit-row span { font-size: var(--text-sm); color: var(--c-muted); }

/* ─── NOTICE ────────────────────────────────────────────── */
.notice {
  display: flex;
  gap: var(--space-4);
  padding: var(--space-5) var(--space-6);
  border-radius: var(--radius-md);
  font-size: var(--text-base);
  line-height: 1.7;
}
.notice--info {
  background: rgba(90,193,242,0.08);
  border: 1px solid rgba(90,193,242,0.3);
  color: var(--c-white);
}
.notice--info svg { color: var(--c-sky); }

/* ─── FOOTER ────────────────────────────────────────────── */
.site-footer {
  background: rgba(10,14,24,0.98);
  border-top: 1px solid var(--c-border);
  padding: clamp(3rem, 5vw, 5rem) 0 2rem;
}
.site-footer__main {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}
@media (max-width: 960px) { .site-footer__main { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .site-footer__main { grid-template-columns: 1fr; } }
.footer-brand__tag {
  margin-top: var(--space-4);
  font-size: var(--text-sm);
  line-height: 1.65;
  max-width: 280px;
  color: var(--c-muted);
}
.footer-brand__badges {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
  align-items: center;
  margin-top: var(--space-5);
}
.footer-trust-badge {
  height: 120px;
  width: auto;
  object-fit: contain;
}
.footer-col h4 {
  font-family: var(--f-body);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.3);
  margin-bottom: var(--space-5);
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.footer-col ul a {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.4);
  transition: color var(--dur-fast);
}
.footer-col ul a:hover { color: var(--c-sky); }
.site-footer__bottom {
  border-top: 1px solid var(--c-border);
  padding-top: var(--space-5);
  display: flex;
  justify-content: space-between;
  gap: var(--space-4);
  flex-wrap: wrap;
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.2);
}
.site-footer__legal { display: flex; gap: var(--space-5); flex-wrap: wrap; }
.site-footer__legal a { color: rgba(255,255,255,0.2); transition: color var(--dur-fast); }
.site-footer__legal a:hover { color: rgba(255,255,255,0.6); }

/* ─── ENTRY CONTENT ─────────────────────────────────────── */
.entry-content h2, .entry-content h3, .entry-content h4 { margin-top: var(--space-8); margin-bottom: var(--space-3); }
.entry-content p, .entry-content ul, .entry-content ol { margin-bottom: var(--space-4); }
.entry-content ul, .entry-content ol { padding-left: var(--space-6); }
.entry-content ul { list-style: disc; }
.entry-content ol { list-style: decimal; }
.entry-content img { border-radius: var(--radius-md); margin-block: var(--space-6); }
.entry-content a { color: var(--c-sky); text-decoration: underline; }

/* ─── UTILITIES ─────────────────────────────────────────── */
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.text-center { text-align: center; }
.mt-4 { margin-top: var(--space-4); }
.mt-6 { margin-top: var(--space-6); }
.mt-8 { margin-top: var(--space-8); }
.mb-4 { margin-bottom: var(--space-4); }
.mb-6 { margin-bottom: var(--space-6); }
.mb-8 { margin-bottom: var(--space-8); }

/* ─── RESPONSIVE OVERRIDES ──────────────────────────────── */
@media (max-width: 960px) {
  .menu-toggle { display: flex; }
  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--c-navy2);
    flex-direction: column;
    align-items: stretch;
    padding: var(--space-4) var(--container-pad) var(--space-6);
    border-bottom: 1px solid var(--c-border);
    gap: 0;
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: var(--space-3); }
  .site-header__actions .btn--outline { display: none; }
}

@media print {
  .site-header, .site-footer, .audience-sidebar, .audience-mobile-pill, .cursor, .cursor-ring { display: none; }
  body { color: #000; background: #fff; cursor: auto; }
}

/* ─── AUDIENCE MISMATCH BANNER ─────────────────────────── */
.audience-mismatch-banner {
  background: var(--c-navy2);
  border-bottom: 1px solid var(--c-border);
  padding-block: var(--space-4);
  display: none;
}
.audience-mismatch-banner__inner {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}
.audience-mismatch-banner__icon svg { width: 20px; height: 20px; color: var(--c-sky); }
.audience-mismatch-banner__content { flex: 1; display: flex; flex-direction: column; gap: var(--space-1); }
.audience-mismatch-banner__content strong { color: var(--c-white); font-size: var(--text-sm); font-weight: 600; }
.audience-mismatch-banner__content span { color: var(--c-muted); font-size: var(--text-sm); }
.audience-mismatch-banner__dismiss {
  width: 28px; height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.08);
  cursor: pointer;
  color: rgba(255,255,255,0.5);
}
.audience-mismatch-banner__dismiss:hover { background: rgba(255,255,255,0.15); }
.audience-mismatch-banner__dismiss svg { width: 12px; height: 12px; }

/* ─── CONDITIONAL STATE ADDITIONS ───────────────────────── */
.is-hidden-selected { display: none !important; }
.is-hidden-unselected { display: none !important; }
.audience-block--any-selected { display: none; }
.audience-block--any-selected.is-visible { display: block; }
/* ─── FOOTER (Rich White Version) ───────────────────────── */
.site-footer {
    background: #FFFFFF;
    border-top: 1px solid #E2E8F0;
    padding: clamp(3rem, 6vw, 5rem) 0 2rem;
    color: #334155;
}

.site-footer__main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (max-width: 1100px) {
    .site-footer__main {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 700px) {
    .site-footer__main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Brand Column */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.footer-logo__img {
    height: 40px;
    width: auto;
}

.footer-brand__tagline {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #4a5568;
    max-width: 240px;
}

.footer-brand__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.footer-social__link {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F1F5F9;
    color: #334155;
    transition: all 0.2s ease;
    border: none;
}

.footer-social__link:hover {
    background: #161BA9;
    color: #FFFFFF;
    transform: translateY(-2px);
}

/* Footer Columns */
.footer-col h4 {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #161BA9;
    margin-bottom: 1.25rem;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-col ul a {
    font-size: 0.85rem;
    color: #4a5568;
    transition: color 0.2s ease;
    text-decoration: none;
}

.footer-col ul a:hover {
    color: #161BA9;
    text-decoration: underline;
}

/* Contact Bar */
.footer-contact-bar {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    padding: 1.5rem 0;
    margin-bottom: 1.5rem;
    border-top: 1px solid #E2E8F0;
    border-bottom: 1px solid #E2E8F0;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #4a5568;
}

.footer-contact-item i {
    color: #161BA9;
    font-size: 1rem;
    width: 20px;
}

.footer-contact-item a {
    color: #4a5568;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-contact-item a:hover {
    color: #161BA9;
    text-decoration: underline;
}

/* Bottom Bar */
.site-footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 1.5rem;
    font-size: 0.75rem;
    color: #64748B;
}

.footer-copyright p {
    color: #64748B;
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.footer-legal a {
    color: #64748B;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-legal a:hover {
    color: #161BA9;
    text-decoration: underline;
}

.legal-sep {
    color: #CBD5E0;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-contact-bar {
        flex-direction: column;
        gap: 0.75rem;
        align-items: flex-start;
    }
    
    .site-footer__bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-legal {
        justify-content: center;
    }
}
/* ─── SELECT / DROPDOWN FIX ─────────────────────────────── */
.field select {
  appearance: none;
  -webkit-appearance: none;
  background-color: rgba(255,255,255,0.05);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235AC1F2' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  padding-right: 2.5rem;
}
.field select option {
  background-color: #131b35;
  color: #ffffff;
}
/* ============================================================
   Kentures Theme v7 — CRO Entry-Point CSS
   Append this entire block to the END of main.css
   (before the // ---- FILE: page-customer-service.php marker)

   Features:
     1 — Utility Bar Offer Ticker
     2 — Cards Hover Slide-Down Offer Panel
     3 — Hero Offer Badge
     4 — Journey Card Offer Tag
     5 — Sticky Mobile Offer Bar (mobile only)
   ============================================================ */

/* ─── FEATURE 1: Utility Bar Offer Ticker ────────────────
   Sits on the right side of the utility bar. Uses the same
   font scale, colour tokens, and border language as the
   existing utility tabs — feels native, not bolted on.     */

.utility-bar__inner {
  justify-content: flex-start;
  gap: 0;
  padding-inline: 1rem;
}

.utility-bar__intro {
  flex-shrink: 0;
  white-space: nowrap;
  padding-right: var(--space-3);
}

.utility-bar__tabs {
  flex-shrink: 0;
}

.utility-bar__offer {
  margin-left: auto;
}

.utility-bar__offer {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding-left: var(--space-6);
  border-left: 1px solid var(--c-border);
  height: 100%;
  flex-shrink: 0;
  max-width: 480px;
  overflow: hidden;
}

.utility-bar__offer-icon {
  color: var(--c-sky);
  font-size: 0.7rem;
  flex-shrink: 0;
  width: 14px;
  text-align: center;
}

.utility-bar__offer-text {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--c-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.utility-bar__offer-cta {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-sky);
  white-space: nowrap;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  transition: color var(--dur-fast);
  border: 1px solid rgba(90,193,242,0.3);
  border-radius: var(--radius-full);
  padding: 0.2rem 0.65rem;
}
.utility-bar__offer-cta:hover {
  color: var(--c-white);
  border-color: rgba(90,193,242,0.7);
  background: rgba(90,193,242,0.08);
}
.utility-bar__offer-cta i {
  font-size: 0.5rem;
  transition: transform var(--dur-fast);
}
.utility-bar__offer-cta:hover i { transform: translateX(2px); }

/* Hide ticker text on narrow screens — keep icon + CTA */
@media (max-width: 1100px) {
  .utility-bar__offer-text { display: none; }
}
/* Hide the whole ticker below 800px (tabs already centred at that point) */
@media (max-width: 800px) {
  .utility-bar__offer { display: none; }
}

/* ─── FEATURE 2: Cards Hover Offer Panel ─────────────────
   Slides down from the bottom of the .journey-cards grid.
   Full width of the grid. Triggered by .cards-hovered on
   the wrapper — set by JS on any card mouseenter.
   Styled to match the existing .notice--info / dark card
   language already in the theme.                           */

.paths__cards-wrap {
  position: relative;
}

/* Remove overflow:hidden from the cards grid so the panel
   can slide out below it without being clipped */
.journey-cards {
  overflow: visible;
}

.cards-offer-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.42s var(--ease-out), opacity 0.35s var(--ease-out);
  opacity: 0;
  /* Inherit the border/background language of the grid */
  background: var(--c-navy2);
  border: 1px solid var(--c-border);
  border-top: 2px solid var(--c-sky);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.paths__cards-wrap.cards-hovered .cards-offer-panel {
  max-height: 160px; /* Tall enough for all content; CSS animates to this */
  opacity: 1;
}

.cards-offer-panel__inner {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  padding: var(--space-6) var(--space-8);
  flex-wrap: wrap;
}

.cards-offer-panel__icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(90,193,242,0.1);
  border: 1px solid rgba(90,193,242,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cards-offer-panel__icon {
  color: var(--c-sky);
  font-size: 1rem;
}

.cards-offer-panel__content {
  flex: 1;
  min-width: 0;
}

.cards-offer-panel__headline {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--c-white) !important; /* override p { color: var(--c-muted) } */
  line-height: 1.4;
  margin-bottom: var(--space-1);
}

.cards-offer-panel__sub {
  font-size: var(--text-xs);
  color: var(--c-muted) !important;
  line-height: 1.6;
}

.cards-offer-panel__cta {
  flex-shrink: 0;
  white-space: nowrap;
}

@media (max-width: 960px) {
  /* Panel hidden on mobile — cards stack vertically and
     hover doesn't apply on touch devices */
  .cards-offer-panel { display: none; }
}

/* ─── FEATURE 3: Hero Offer Badge ────────────────────────
   Pill above the CTA. Matches the existing .eyebrow token
   language (sky colour, uppercase micro-text, icon prefix) */

.hero__offer-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(90,193,242,0.08);
  border: 1px solid rgba(90,193,242,0.25);
  border-radius: var(--radius-full);
  padding: 0.32rem 0.75rem 0.32rem 0.55rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-sky);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  transition: opacity 0.18s;
  /* Subtle living pulse so the eye notices it */
  animation: badgePulse 4s ease-in-out infinite;
}
@keyframes badgePulse {
  0%,100% { border-color: rgba(90,193,242,0.25); }
  50%     { border-color: rgba(90,193,242,0.55); box-shadow: 0 0 10px rgba(90,193,242,0.15); }
}

.hero__offer-badge__icon {
  font-size: 0.6rem;
  flex-shrink: 0;
  width: 12px;
  text-align: center;
}

@media (max-width: 860px) {
  .hero__offer-badge { font-size: 0.6rem; }
}

/* ─── FEATURE 4: Journey Card Offer Tag ──────────────────
   Small pill in the top-right of each card. Aligned with
   .eyebrow styling — sky, uppercase, tight tracking.      */

.journey-card {
  position: relative; /* required for absolute tag */
}

.journey-card__offer-tag {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  z-index: 2;
  background: rgba(90,193,242,0.1);
  border: 1px solid rgba(90,193,242,0.22);
  border-radius: var(--radius-full);
  padding: 0.22rem 0.6rem;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--c-sky);
  white-space: nowrap;
  pointer-events: none; /* don't interfere with card click */
  transition: background var(--dur-fast), border-color var(--dur-fast);
}

.journey-card__offer-tag i {
  font-size: 0.55rem;
  flex-shrink: 0;
}

.journey-card:hover .journey-card__offer-tag,
.journey-card.is-active .journey-card__offer-tag {
  background: rgba(90,193,242,0.18);
  border-color: rgba(90,193,242,0.45);
}

/* ─── FEATURE 5: Sticky Mobile Offer Bar ─────────────────
   Hard CSS guard: never rendered on desktop regardless of
   JS state. Styled to match the site-footer dark language
   (white bg, navy text) rather than the dark hero palette,
   so it reads cleanly over any page content.              */

@media (min-width: 769px) {
  .sticky-offer-bar { display: none !important; }
}

.sticky-offer-bar {
  display: none; /* JS sets to block via .is-visible */
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 599;
  transform: translateY(100%);
  transition: transform 0.38s var(--ease-out), opacity 0.38s var(--ease-out);
  opacity: 0;
}

.sticky-offer-bar.is-visible {
  display: block;
  transform: translateY(0);
  opacity: 1;
}

.sticky-offer-bar__inner {
  background: var(--c-navy2);
  border-top: 2px solid var(--c-sky);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-5);
  box-shadow: 0 -6px 24px rgba(0,0,0,0.45);
}

.sticky-offer-bar__icon {
  color: var(--c-sky);
  font-size: 0.85rem;
  flex-shrink: 0;
  width: 16px;
  text-align: center;
}

.sticky-offer-bar__text {
  flex: 1;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--c-muted);
  line-height: 1.4;
}

.sticky-offer-bar__cta {
  flex-shrink: 0;
  white-space: nowrap;
  font-size: 0.68rem !important;
  padding: 0.45rem 0.9rem !important;
  letter-spacing: 0.06em !important;
}
/* ================================================================
   PORTAL CSS OVERRIDES — Force correct styling against theme
   These selectors have higher specificity to override theme's white text
================================================================ */

/* Force dark text on light backgrounds in portal */
.kcrm-portal *,
.kcrm-portal,
.kcrm-detail-drawer,
.kcrm-detail-drawer *,
.kcrm-modal,
.kcrm-modal *,
.kcrm-table,
.kcrm-table *,
.kcrm-card,
.kcrm-card *,
.kcrm-stat-card,
.kcrm-stat-card *,
.kcrm-filters,
.kcrm-filters *,
.kcrm-wrap,
.kcrm-wrap * {
    color: inherit;
}

/* Specific text colour fixes */
.kcrm-portal .kcrm-detail-drawer .drawer-header h2,
.kcrm-portal .kcrm-detail-drawer .drawer-header .drawer-title,
#kcrm-lead-drawer .drawer-header h2,
#kcrm-client-drawer .drawer-header h2 {
    color: #ffffff !important;
}

/* Hero panel text - navy background with white text */
.drawer-hero-panel,
.drawer-hero-panel *,
#drawer-hero-panel,
#drawer-hero-panel * {
    color: #ffffff !important;
}

.drawer-hero-panel .lead-meta,
#drawer-hero-panel .lead-meta {
    color: rgba(255, 255, 255, 0.7) !important;
}

.drawer-hero-panel .drawer-action-bar .kcrm-btn,
#drawer-hero-panel .drawer-action-bar .kcrm-btn {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.12) !important;
}

/* Info strip - light background with dark text */
.drawer-info-strip,
.drawer-info-strip *,
#drawer-info-strip,
#drawer-info-strip * {
    color: #1a2540 !important;
}

.drawer-info-strip .kcrm-value,
#drawer-info-strip .kcrm-value {
    color: #1a2540 !important;
}

.drawer-info-strip .kcrm-detail-field label,
#drawer-info-strip .kcrm-detail-field label {
    color: #64748b !important;
}

/* Clusters section */
.drawer-clusters,
.drawer-clusters *,
#drawer-clusters,
#drawer-clusters * {
    color: #1a2540 !important;
}

.drawer-clusters .kcrm-detail-section-label,
#drawer-clusters .kcrm-detail-section-label {
    color: #64748b !important;
}

/* Client drawer specific */
.kcrm-client-drawer .drawer-hero-panel,
.kcrm-client-drawer .drawer-hero-panel * {
    color: #ffffff !important;
}

.kcrm-client-drawer .drawer-info-strip,
.kcrm-client-drawer .drawer-info-strip * {
    color: #1a2540 !important;
}

/* Table rows - ensure text is visible */
.kcrm-table td,
.kcrm-table th,
.kcrm-table tbody tr td {
    color: #1a2540 !important;
}

.kcrm-table tbody tr.is-active td {
    background: #eff6ff !important;
    color: #1a2540 !important;
}

/* Lead/client rows - ensure company names are visible */
.kcrm-client-row td,
.kcrm-lead-row td,
.kcrm-client-row td strong,
.kcrm-lead-row td strong {
    color: #1a2540 !important;
}

.kcrm-client-row td .kcrm-value,
.kcrm-lead-row td .kcrm-value {
    color: #1a2540 !important;
}

/* Modal content */
.kcrm-modal .kcrm-modal-body,
.kcrm-modal .kcrm-modal-body * {
    color: #1a2540 !important;
}

.kcrm-modal .kcrm-modal-header h2 {
    color: #ffffff !important;
}

/* Form inputs - ensure readable */
.kcrm-input,
.kcrm-select,
.kcrm-textarea,
.kcrm-portal .kcrm-input,
.kcrm-portal .kcrm-select,
.kcrm-portal .kcrm-textarea {
    color: #1a2540 !important;
    background: #ffffff !important;
}

.kcrm-input::placeholder,
.kcrm-textarea::placeholder {
    color: #94a3b8 !important;
}

/* Badges - preserve their colours */
.kcrm-badge,
.kcrm-badge--green,
.kcrm-badge--yellow,
.kcrm-badge-new,
.kcrm-badge-contacted,
.kcrm-badge-qualified,
.kcrm-badge-lost {
    color: inherit !important;
}

/* Workflow stepper */
.kcrm-workflow-stepper .kcrm-stepper-header h4 {
    color: #64748b !important;
}

.kcrm-workflow-stepper .kcrm-step.complete,
.kcrm-workflow-stepper .kcrm-step.active {
    color: #ffffff !important;
}

/* Pagination */
.kcrm-page-btn {
    color: #1a2540 !important;
    background: #ffffff !important;
}

.kcrm-page-btn.is-active {
    color: #ffffff !important;
    background: #0f162b !important;
}

/* Loading and empty states */
.kcrm-loading p,
.kcrm-empty p {
    color: #64748b !important;
}

/* Tabs */
.drawer-tab {
    color: #64748b !important;
}

.drawer-tab.is-active {
    color: #0f162b !important;
    border-bottom-color: #0f162b !important;
}

/* Filter chips */
.kcrm-filter-chip {
    color: #64748b !important;
    background: #ffffff !important;
}

.kcrm-filter-chip.is-active,
.kcrm-filter-chip:hover {
    color: #ffffff !important;
    background: #0f162b !important;
}

/* Action buttons in rows */
.kcrm-row-actions .kcrm-btn {
    color: #ffffff !important;
}

.kcrm-row-actions .kcrm-btn-outline {
    color: #0f162b !important;
    background: transparent !important;
}

.kcrm-row-actions .kcrm-btn-outline:hover {
    color: #ffffff !important;
    background: #0f162b !important;
}

/* Correspondence items */
.correspondence-item strong {
    color: #1a2540 !important;
}

/* Portal specific body style - prevent theme from forcing white text everywhere */
body.kcrm-portal,
body.kcrm-portal .kcrm-layout,
body.kcrm-portal .kcrm-main,
body.kcrm-portal .kcrm-wrap {
    color: #1a2540;
}

/* Ensure sidebar text is visible on dark background */
.kcrm-sidebar,
.kcrm-sidebar * {
    color: #0f162b !important;
}

.kcrm-sidebar .kcrm-nav-item {
    color: #0f162b !important;
}

.kcrm-sidebar .kcrm-nav-item.is-active,
.kcrm-sidebar .kcrm-nav-item:hover {
    color: #161ba9 !important;
}

.kcrm-sidebar__user-name,
.kcrm-sidebar__user-role {
    color: #0f162b !important;
}

/* Drawer header nav bar */
.drawer-header {
    background: #0f162b;
}

.drawer-header h2,
.drawer-header .kcrm-drawer-title {
    color: #ffffff !important;
}

.drawer-close {
    color: rgba(255, 255, 255, 0.7) !important;
}

.drawer-close:hover {
    color: #ffffff !important;
}

/* Stage buttons */
.kcrm-stage-pip {
    color: inherit !important;
}

/* Notes section - ensure text is visible */
.drawer-notes .kcrm-value,
#drawer-notes .kcrm-value {
    color: #1a2540 !important;
}

.drawer-notes .kcrm-detail-field label,
#drawer-notes .kcrm-detail-field label {
    color: #64748b !important;
}

/* Attachments section */
.drawer-attachments .kcrm-value,
#drawer-attachments .kcrm-value,
.drawer-attachments a,
#drawer-attachments a {
    color: #1a2540 !important;
}

.drawer-attachments .kcrm-empty,
#drawer-attachments .kcrm-empty {
    color: #64748b !important;
}

/* Selected/assigned dropdown */
.drawer-assigned .kcrm-select,
#drawer-assigned .kcrm-select {
    color: #1a2540 !important;
    background: #ffffff !important;
}

/* Portal block in client drawer */
.drawer-portal-block,
.drawer-portal-block * {
    color: #0f162b !important;
}

.drawer-portal-url-row input {
    color: #0f162b !important;
    background: #ffffff !important;
}

/* Client list table */
#kcrm-clients-list .kcrm-table td,
#kcrm-clients-list .kcrm-table td strong {
    color: #1a2540 !important;
}

/* Leads list table */
#kcrm-leads-list .kcrm-table td,
#kcrm-leads-list .kcrm-table td strong {
    color: #1a2540 !important;
}

/* Ensure links are visible */
.kcrm-portal a:not(.kcrm-btn):not(.drawer-close) {
    color: #161ba9 !important;
}

.kcrm-portal a:not(.kcrm-btn):not(.drawer-close):hover {
    color: #5ac1f2 !important;
}

/* Fix for the hero panel action buttons */
.drawer-hero-panel .drawer-action-bar .kcrm-btn-outline {
    background: rgba(255, 255, 255, 0.12) !important;
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
}

.drawer-hero-panel .drawer-action-bar .kcrm-btn-outline:hover {
    background: #5ac1f2 !important;
    color: #0f162b !important;
    border-color: #5ac1f2 !important;
}

.drawer-hero-panel .drawer-action-bar .kcrm-btn-danger {
    background: rgba(239, 68, 68, 0.15) !important;
    border-color: rgba(239, 68, 68, 0.4) !important;
}

.drawer-hero-panel .drawer-action-bar .kcrm-btn-danger:hover {
    background: #ef4444 !important;
    color: #ffffff !important;
}

/* Fix for the client hero panel buttons */
.kcrm-client-drawer .drawer-action-bar .kcrm-btn-outline {
    background: rgba(255, 255, 255, 0.12) !important;
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
}

.kcrm-client-drawer .drawer-action-bar .kcrm-btn-outline:hover {
    background: #5ac1f2 !important;
    color: #0f162b !important;
}

.kcrm-client-drawer .drawer-action-bar .kcrm-btn-danger {
    background: rgba(239, 68, 68, 0.15) !important;
}

.kcrm-client-drawer .drawer-action-bar .kcrm-btn-danger:hover {
    background: #ef4444 !important;
    color: #ffffff !important;
}