/* ============================================================
   VARIANT B — INSIGHT ACCESS STYLE GUIDE
   Charcoal #1A1A2E | Orange #F7941D
   Plus Jakarta Sans (heading) | Inter (body)
   ============================================================ */

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

:root {
  --charcoal:      #1A1A2E;
  --charcoal-deep: #0F0F1A;
  --charcoal-mid:  #252540;
  --orange:        #F7941D;
  --orange-hover:  #E8820A;
  --orange-light:  rgba(247,148,29,0.08);
  --orange-medium: rgba(247,148,29,0.15);
  --warm-ice:      #FFF3E0;
  --warm-white:    #FFFBF5;
  --warm-border:   #F0E6D3;
  --dark:          #070E1A;
  --white:         #FFFFFF;
  --gray-100:      #F8FAFC;
  --gray-200:      #E2E8F0;
  --gray-300:      #CBD5E1;
  --gray-400:      #94A3B8;
  --gray-500:      #64748B;
  --gray-600:      #475569;
  --gray-700:      #334155;
  --text:          #1E293B;
  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-body:    'Inter', sans-serif;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 20px;
  --shadow-sm: 0 1px 3px rgba(26,26,46,0.08);
  --shadow-md: 0 4px 16px rgba(26,26,46,0.10);
  --shadow-lg: 0 12px 40px rgba(26,26,46,0.14);
  --shadow-xl: 0 24px 64px rgba(26,26,46,0.18);
  --shadow-orange: 0 8px 28px rgba(247,148,29,0.4);
  --max-width: 1200px;
  --nav-height: 72px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── ANNOUNCEMENT BAR ── */
.announcement-bar {
  background: var(--orange);
  color: var(--charcoal-deep);
  text-align: center;
  padding: 10px 24px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.announcement-bar a { color: var(--charcoal-deep); text-decoration: underline; }
.announcement-bar a:hover { color: var(--charcoal); }

/* ── NAVIGATION ── */
.site-nav {
  background: var(--charcoal);
  height: var(--nav-height);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(26,26,46,0.3);
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-logo {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: white;
  text-decoration: none;
  letter-spacing: -0.02em;
  margin-right: 16px;
  white-space: nowrap;
}
.nav-logo span { color: var(--orange); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}

.nav-item {
  position: relative;
}
.nav-item > a, .nav-item > button {
  background: none;
  border: none;
  color: rgba(255,255,255,0.75);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-md);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.nav-item > a:hover, .nav-item > button:hover,
.nav-item.active > button {
  color: white;
  background: rgba(255,255,255,0.06);
}
.nav-item > button::after {
  content: '';
  width: 6px; height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.2s;
}
.nav-item.active > button::after {
  transform: rotate(-135deg) translateY(-2px);
}

/* Mega Dropdown */
.mega-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: 24px;
  display: none;
  min-width: 420px;
  border: 1px solid var(--gray-200);
  animation: dropIn 0.18s ease;
}
.mega-dropdown.wide { min-width: 580px; }
.nav-item.active .mega-dropdown { display: flex; gap: 24px; }

@keyframes dropIn {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.dropdown-col { flex: 1; min-width: 160px; }
.dropdown-header {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--gray-100);
}
.dropdown-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 8px;
  border-radius: var(--radius-md);
  text-decoration: none;
  color: var(--text);
  transition: background 0.15s;
  margin-bottom: 2px;
}
.dropdown-item:hover { background: var(--orange-light); }
.dropdown-item:hover .di-title { color: var(--orange); }
.di-icon {
  width: 32px; height: 32px;
  background: var(--orange-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
  color: var(--orange);
}
.di-title { font-size: 13px; font-weight: 600; color: var(--charcoal); line-height: 1.3; }
.di-desc  { font-size: 12px; color: var(--gray-500); margin-top: 2px; line-height: 1.4; }

/* Nav CTA */
.nav-cta {
  margin-left: auto;
  background: var(--orange);
  color: var(--charcoal-deep) !important;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  padding: 9px 20px;
  border-radius: var(--radius-xl);
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-cta:hover {
  background: var(--orange-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(247,148,29,0.35);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(255,255,255,0.8);
  border-radius: 2px;
  transition: 0.3s;
}

/* ── HERO ── */
.hero {
  background: var(--dark);
  position: relative;
  overflow: hidden;
  padding: 120px 32px 100px;
  min-height: 680px;
  display: flex;
  align-items: center;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(247,148,29,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247,148,29,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
}
.hero::after {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(247,148,29,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center;
  width: 100%;
}
.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700;
  color: white;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.hero h1 em {
  font-style: italic;
  color: var(--orange);
}
.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 40px;
  font-weight: 300;
}
.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-xl);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--orange);
  color: var(--charcoal-deep);
}
.btn-primary:hover {
  background: var(--orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(247,148,29,0.4);
}
.btn-outline-light {
  background: transparent;
  color: rgba(255,255,255,0.8);
  border: 1.5px solid rgba(255,255,255,0.18);
}
.btn-outline-light:hover {
  border-color: rgba(255,255,255,0.4);
  color: white;
  background: rgba(255,255,255,0.04);
}
.btn-arrow::after { content: ' →'; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.hero-stat {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(247,148,29,0.2);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  text-align: center;
}
.hero-stat-num {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat-label {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* Hero Visual */
.hero-visual {
  position: relative;
}
.hero-card {
  background: rgba(26,26,46,0.9);
  border: 1px solid rgba(247,148,29,0.25);
  border-radius: var(--radius-xl);
  padding: 28px;
  backdrop-filter: blur(20px);
}
.hero-card-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}
.platform-pods {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pod-row {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  border: 1px solid rgba(255,255,255,0.06);
}
.pod-num {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--charcoal-deep);
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pod-num.bsc {
  background: var(--orange);
  color: var(--dark);
  font-size: 9px;
}
.pod-info { flex: 1; }
.pod-name { font-size: 12px; font-weight: 600; color: white; }
.pod-desc { font-size: 11px; color: rgba(255,255,255,0.4); }
.pod-status {
  font-size: 10px;
  font-weight: 600;
  color: var(--orange);
  background: rgba(247,148,29,0.1);
  padding: 3px 8px;
  border-radius: 20px;
}

/* ── SECTION SHARED ── */
section { padding: 100px 32px; }
.section-inner { max-width: var(--max-width); margin: 0 auto; }
.section-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}
.section-h2 {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.section-lead {
  font-size: 17px;
  color: var(--gray-600);
  max-width: 580px;
  line-height: 1.7;
  font-weight: 400;
  margin-bottom: 48px;
}
.section-h2.light { color: white; }
.section-lead.light { color: rgba(255,255,255,0.6); }
.section-tag.light { color: var(--orange); }

/* ── PROBLEM STATEMENT ── */
.problem-section { background: var(--warm-white); }
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.problem-copy {}
.problem-blockquote {
  border-left: 3px solid var(--orange);
  padding: 20px 24px;
  background: white;
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  margin-top: 32px;
  box-shadow: var(--shadow-sm);
}
.problem-blockquote p {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.5;
  font-style: italic;
}
.problem-blockquote cite {
  display: block;
  font-size: 12px;
  color: var(--gray-500);
  margin-top: 10px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.problem-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.problem-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
  padding: 28px 22px 26px;
  background: white;
  border-radius: 18px;
  border: 1px solid var(--gray-200);
  box-shadow: 0 4px 14px -4px rgba(15,15,26,0.06);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  position: relative;
  overflow: hidden;
}
.problem-item::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  transition: width 0.4s ease;
}
.problem-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px -16px rgba(15,15,26,0.18);
  border-color: rgba(247,148,29,0.3);
}
.problem-item:hover::before { width: 64px; }
.problem-item:hover .problem-item-icon {
  transform: scale(1.05) translateY(-1px);
  background: linear-gradient(135deg, rgba(247,148,29,0.28) 0%, rgba(247,148,29,0.08) 100%);
  border-color: rgba(247,148,29,0.4);
}
.problem-item-icon {
  width: 52px; height: 52px;
  margin: 0 auto 18px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(247,148,29,0.18) 0%, rgba(247,148,29,0.04) 100%);
  border: 1px solid rgba(247,148,29,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--orange);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), background 0.3s ease, border-color 0.3s ease;
}
.problem-item-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 1.7;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.problem-item-stat {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 6px;
}
.problem-item-stat .pct { font-size: 18px; vertical-align: top; margin-left: 1px; }
.problem-item-title {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 800;
  color: var(--charcoal);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
  line-height: 1.25;
}
.problem-item-text {
  font-size: 12.5px;
  color: var(--gray-500);
  line-height: 1.6;
  max-width: 220px;
  margin: 0 auto;
}
.problem-item-text strong { color: var(--charcoal); font-weight: 700; }

/* ── PLATFORM ── */
.platform-section { background: white; }
.platform-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}
.platform-card {
  border-radius: var(--radius-xl);
  padding: 32px;
  text-decoration: none;
  display: block;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid transparent;
}
.platform-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.platform-card.engine {
  background: var(--charcoal);
  grid-column: span 3;
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-rows: auto;
  column-gap: 40px;
  align-items: center;
}
.platform-card.engine .pc-badge  { grid-column: 1; grid-row: 1; align-self: start; }
.platform-card.engine .pc-number { grid-column: 1; grid-row: 2; }
.platform-card.engine .pc-title  { grid-column: 2; grid-row: 1 / span 2; align-self: center; margin-bottom: 0; }
.platform-card.engine .pc-desc   { grid-column: 3; grid-row: 1 / span 2; align-self: center; max-width: 340px; }
.platform-card.engine .pc-link   { grid-column: 1 / span 3; grid-row: 3; border-top: 1px solid rgba(255,255,255,0.08); padding-top: 20px; margin-top: 8px; }
.platform-card.pod { background: var(--warm-white); border-color: var(--gray-200); }
.pc-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.engine .pc-badge { background: rgba(247,148,29,0.15); color: var(--orange); }
.pod   .pc-badge { background: var(--orange-light); color: var(--orange); }
.pc-number {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 8px;
}
.engine .pc-number { color: rgba(255,255,255,0.4); }
.pod   .pc-number { color: var(--orange); }
.pc-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}
.engine .pc-title { color: white; }
.pod   .pc-title { color: var(--charcoal); }
.pc-desc { font-size: 13px; line-height: 1.6; }
.engine .pc-desc { color: rgba(255,255,255,0.55); }
.pod   .pc-desc { color: var(--gray-600); }
.pc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  margin-top: 20px;
  text-decoration: none;
  transition: gap 0.2s;
}
.engine .pc-link { color: var(--orange); }
.pod   .pc-link { color: var(--orange); }
.platform-card:hover .pc-link { gap: 10px; }

/* ── SOLUTIONS PERSONAS ── */
.solutions-section { background: var(--charcoal); }
.persona-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.persona-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl);
  padding: 32px;
  text-decoration: none;
  display: block;
  transition: background 0.2s, transform 0.2s, border-color 0.2s;
  position: relative;
  overflow: hidden;
}
.persona-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
}
.persona-card.ceo::before { background: var(--orange); }
.persona-card.cfo::before { background: #3B82F6; }
.persona-card.chro::before { background: #A78BFA; }
.persona-card:hover {
  background: rgba(255,255,255,0.07);
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.14);
}
.persona-role {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.persona-card.ceo .persona-role { color: var(--orange); }
.persona-card.cfo .persona-role { color: #60A5FA; }
.persona-card.chro .persona-role { color: #C4B5FD; }
.persona-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: white;
  line-height: 1.25;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.persona-desc { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.65; margin-bottom: 24px; }
.persona-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.persona-tag {
  font-size: 11px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 20px;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.55);
}
.persona-cta {
  font-size: 13px;
  font-weight: 600;
  color: white;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}
.persona-card:hover .persona-cta { gap: 10px; }

/* More personas row */
.persona-more {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 16px;
}
.persona-mini {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.2s;
}
.persona-mini:hover { background: rgba(255,255,255,0.06); }
.persona-mini-label { font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.65); }
.persona-mini-arrow { color: rgba(255,255,255,0.3); font-size: 16px; }

/* ── PARTNERS ── */
.partners-section { background: var(--warm-white); }
.partners-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 64px;
  align-items: start;
}
.partners-intro { margin-bottom: 0; }
.partners-intro .section-h2 {
  font-size: 22px;
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin-bottom: 0;
}
.partners-body {}
.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.partner-group {}
.partner-group-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}
.partner-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.partner-logo-pill {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--charcoal);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}
.partner-logo-pill:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  border-color: var(--orange);
}

/* ── INSIGHTS TEASER ── */
.insights-section { background: white; }
.insights-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
}
.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.insight-card {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  overflow: hidden;
  text-decoration: none;
  display: block;
  transition: box-shadow 0.2s, transform 0.2s;
  background: white;
}
.insight-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.insight-img {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.insight-img svg {
  width: 48px;
  height: 48px;
  stroke: rgba(255,255,255,0.7);
  stroke-width: 1.5;
  fill: none;
  position: relative;
  z-index: 1;
}
.insight-img.img-report {
  background: linear-gradient(135deg, #1A1A2E 0%, #2D1B4E 50%, #F7941D 100%);
}
.insight-img.img-blog {
  background: linear-gradient(135deg, #1A1A2E 0%, #1E3A5F 50%, #0F6B8A 100%);
}
.insight-img.img-case {
  background: linear-gradient(135deg, #1A1A2E 0%, #3D2E1A 50%, #F7941D 100%);
}
.insight-body { padding: 24px; }
.insight-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.insight-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  background: var(--orange-light);
  padding: 4px 10px;
  border-radius: 20px;
}
.insight-date { font-size: 12px; color: var(--gray-400); }
.insight-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.35;
  margin-bottom: 8px;
}
.insight-card:hover .insight-title { color: var(--orange); }
.insight-excerpt { font-size: 13px; color: var(--gray-500); line-height: 1.6; }

/* View all link */
.link-teal {
  font-size: 14px;
  font-weight: 600;
  color: var(--orange);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}
.link-teal:hover { gap: 10px; }

/* ── DEMO CTA ── */
.demo-section {
  background: var(--charcoal);
  padding: 120px 32px;
  position: relative;
  overflow: hidden;
}
.demo-section::before {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(247,148,29,0.07) 0%, transparent 70%);
}
.demo-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.demo-inner .section-h2 { color: white; margin-bottom: 16px; }
.demo-inner p { font-size: 17px; color: rgba(255,255,255,0.6); margin-bottom: 40px; }
.demo-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ── */
footer {
  background: var(--dark);
  padding: 64px 32px 32px;
}
.footer-inner { max-width: var(--max-width); margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 40px;
}
.footer-brand {}
.footer-logo {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: white;
  letter-spacing: -0.02em;
  text-decoration: none;
  display: block;
  margin-bottom: 12px;
}
.footer-logo span { color: var(--orange); }
.footer-tagline { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.6; margin-bottom: 20px; }
.footer-contact { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.8; }
.footer-contact a { color: rgba(255,255,255,0.6); text-decoration: none; }
.footer-contact a:hover { color: var(--orange); }
.footer-nav-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 32px;
}
.footer-col-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 14px;
}
.footer-col a {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  margin-bottom: 8px;
  transition: color 0.15s;
}
.footer-col a:hover { color: white; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.25); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 12px; color: rgba(255,255,255,0.3); text-decoration: none; }
.footer-legal a:hover { color: rgba(255,255,255,0.6); }

/* ── CURSOR POINTER — all clickable elements ── */
.platform-card,
.persona-card,
.persona-mini,
.insight-card,
.partner-logo-pill,
.problem-item,
.btn,
.nav-cta,
.link-teal,
.pc-link,
.dropdown-item,
a[href] {
  cursor: pointer;
}

/* ── BENTO GRID — Feature showcase with product mockups ── */
.bento-section {
  padding: 100px 32px;
}
.bento-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.bento-header {
  margin-bottom: 56px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.bento-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.bento-header p {
  font-size: 16px;
  line-height: 1.7;
  max-width: 620px;
  margin: 0 auto;
}
/* Light theme defaults */
.bento-section { background: white; }
.bento-header h2 { color: var(--charcoal); }
.bento-header p { color: var(--gray-600); }

.bento-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.bento-cell {
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s;
}
.bento-cell:hover {
  box-shadow: var(--shadow-md);
}
.bento-mockup {
  padding: 24px 24px 0;
  min-height: 240px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.bento-text {
  padding: 28px 28px 32px;
}
.bento-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 8px;
}
.bento-title {
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.bento-desc {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.65;
}

/* Bento mockup inner elements */
.bm-card {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  width: 100%;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.bm-card-header {
  padding: 12px 16px;
  border-bottom: 1px solid var(--gray-200);
  font-size: 11px;
  color: var(--gray-400);
}
.bm-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.bm-list-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--gray-100);
  font-size: 13px;
}
.bm-list-item:last-child { border-bottom: none; }
.bm-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.bm-dot.green { background: #22C55E; }
.bm-dot.amber { background: #F59E0B; }
.bm-dot.red { background: #EF4444; }
.bm-dot.gray { background: var(--gray-300); }
.bm-name {
  font-weight: 600;
  color: var(--charcoal);
  flex: 1;
}
.bm-name .sep { color: var(--gray-300); margin: 0 4px; font-weight: 400; }
.bm-name .secondary { color: var(--gray-500); font-weight: 500; }
.bm-meta {
  font-size: 11px;
  color: var(--gray-400);
}
.bm-badge {
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  border: 1px solid var(--gray-200);
  color: var(--gray-500);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}
/* Integration logos mockup */
.bm-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  align-items: center;
  padding: 24px 16px;
  position: relative;
}
.bm-logo-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  font-size: 12px;
  font-weight: 600;
  color: var(--charcoal);
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 1;
}
.bm-logo-pill svg {
  width: 16px;
  height: 16px;
  color: var(--orange);
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}
.bm-logos::before {
  content: '';
  position: absolute;
  inset: 20px;
  background-image: radial-gradient(circle, var(--gray-200) 1px, transparent 1px);
  background-size: 12px 12px;
  opacity: 0.6;
  z-index: 0;
}
/* KPI metrics mockup */
.bm-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--gray-200);
  border-top: 1px solid var(--gray-200);
}
.bm-kpi {
  background: white;
  padding: 16px;
}
.bm-kpi-label {
  font-size: 11px;
  color: var(--gray-400);
  margin-bottom: 6px;
}
.bm-kpi-val {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  color: var(--charcoal);
  letter-spacing: -0.02em;
  line-height: 1;
}
.bm-kpi-val .unit {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-400);
  margin-left: 2px;
}
/* Avatar cluster mockup */
.bm-avatars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 40px;
}
.bm-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 3px solid var(--gray-100);
  margin-left: -16px;
  position: relative;
}
.bm-avatar:first-child { margin-left: 0; }
.bm-avatar.a1 { background: linear-gradient(135deg, #6366F1, #8B5CF6); z-index: 3; }
.bm-avatar.a2 { background: linear-gradient(135deg, var(--orange), #FBB040); z-index: 2; }
.bm-avatar.a3 { background: linear-gradient(135deg, #14B8A6, #22D3EE); z-index: 1; }
.bm-avatar-badge {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--orange);
  border: 2px solid var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}
.bm-avatar-badge svg {
  width: 12px;
  height: 12px;
  stroke: var(--charcoal-deep);
  stroke-width: 3;
  fill: none;
}
/* Tabs bar */
.bm-tabs {
  display: flex;
  gap: 0;
  padding: 0 16px;
  border-bottom: 1px solid var(--gray-200);
}
.bm-tab {
  padding: 12px 14px;
  font-size: 12px;
  font-weight: 500;
  color: var(--gray-400);
  border-bottom: 2px solid transparent;
}
.bm-tab.active {
  color: var(--orange);
  border-bottom-color: var(--orange);
  font-weight: 600;
}

@media (max-width: 768px) {
  .bento-grid { grid-template-columns: 1fr; }
  .bento-mockup { min-height: 200px; }
  .bm-kpis { grid-template-columns: 1fr; }
  .bento-section { padding: 72px 20px; }
}

/* ── SECTION SPACER ── */
.section-spacer {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gray-200), transparent);
  max-width: 800px;
  margin: 0 auto;
}

/* ── PRODUCT VISUAL (Browser Mockup) ── */
.product-visual-wrap {
  padding: 40px 32px 0;
  max-width: var(--max-width);
  margin: 0 auto;
}
.product-visual {
  background: var(--charcoal-deep);
  border-radius: 16px 16px 0 0;
  border: 1px solid rgba(247,148,29,0.12);
  border-bottom: none;
  box-shadow:
    0 24px 80px rgba(26,26,46,0.25),
    0 8px 32px rgba(26,26,46,0.15);
  overflow: hidden;
  transform: perspective(1200px) rotateX(2deg);
  transform-origin: center top;
}
.pv-chrome {
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.pv-dots {
  display: flex;
  gap: 6px;
}
.pv-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.pv-dots span:nth-child(1) { background: #FF5F57; }
.pv-dots span:nth-child(2) { background: #FFBD2E; }
.pv-dots span:nth-child(3) { background: #28C840; }
.pv-title {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.35);
}
.pv-screen {
  padding: 24px;
}
.pv-kpi-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}
.pv-kpi {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: 14px;
}
.pv-kpi-label {
  font-size: 10px;
  font-weight: 600;
  color: rgba(255,255,255,0.3);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}
.pv-kpi-val {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: white;
  line-height: 1;
}
.pv-kpi-val .trend {
  font-size: 11px;
  font-weight: 600;
  margin-left: 6px;
}
.pv-kpi-val .trend.up { color: #22C55E; }
.pv-kpi-val .trend.down { color: #EF4444; }
.pv-panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.pv-panel {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 10px;
  padding: 16px;
}
.pv-panel-title {
  font-size: 10px;
  font-weight: 700;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.pv-bar-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.pv-bar-label {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  width: 80px;
  flex-shrink: 0;
}
.pv-bar {
  flex: 1;
  height: 6px;
  background: rgba(255,255,255,0.06);
  border-radius: 3px;
  overflow: hidden;
}
.pv-bar-fill {
  height: 100%;
  border-radius: 3px;
  background: var(--orange);
}
.pv-bar-val {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  width: 30px;
  text-align: right;
}
.pv-risk-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.pv-risk-row:last-child { border-bottom: none; }
.pv-risk-name {
  flex: 1;
  font-size: 12px;
  color: rgba(255,255,255,0.55);
}
.pv-risk-badge {
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 20px;
}
.pv-risk-badge.high { background: rgba(220,38,38,0.15); color: #EF4444; }
.pv-risk-badge.med  { background: rgba(245,158,11,0.15); color: #F59E0B; }
.pv-risk-badge.low  { background: rgba(22,163,74,0.12); color: #22C55E; }

/* ── LOGO CAROUSEL ── */
.logo-carousel {
  overflow: hidden;
  margin-top: 40px;
  -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}
.logo-track {
  display: flex;
  align-items: center;
  gap: 56px;
  width: max-content;
  animation: scroll-logos 35s linear infinite;
}
.logo-track:hover {
  animation-play-state: paused;
}
.logo-item {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  color: var(--charcoal);
  white-space: nowrap;
  opacity: 0.3;
  transition: opacity 0.3s;
  letter-spacing: -0.01em;
  user-select: none;
}
.logo-item:hover {
  opacity: 0.7;
}
.logo-sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gray-300);
  flex-shrink: 0;
}
@keyframes scroll-logos {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── ICON IMPROVEMENTS ── */
.di-icon {
  width: 34px; height: 34px;
  background: linear-gradient(135deg, var(--orange-light), rgba(247,148,29,0.04));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--orange);
}
.di-icon svg {
  width: 17px;
  height: 17px;
  stroke-width: 1.75;
}
.problem-item-icon {
  background: linear-gradient(135deg, var(--orange-light), var(--warm-ice));
}
.cap-icon-ia {
  background: linear-gradient(135deg, var(--charcoal), var(--charcoal-mid)) !important;
}

/* ── SCROLL ENTRANCE ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}
/* Stagger children */
.stagger > * { transition-delay: calc(var(--i, 0) * 0.1s); }

/* ── PREFERS REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-left, .reveal-right {
    opacity: 1;
    transform: none;
    transition: none;
  }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .platform-grid { grid-template-columns: 1fr 1fr; }
  .platform-card.engine {
    grid-column: span 2;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
  }
  .platform-card.engine .pc-badge  { grid-column: 1; grid-row: 1; }
  .platform-card.engine .pc-number { grid-column: 1; grid-row: 2; }
  .platform-card.engine .pc-title  { grid-column: 2; grid-row: 1 / span 2; }
  .platform-card.engine .pc-desc   { grid-column: 1 / span 2; grid-row: 3; max-width: 100%; }
  .platform-card.engine .pc-link   { grid-column: 1 / span 2; grid-row: 4; }
  .footer-nav-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  :root { --nav-height: 60px; }
  section { padding: 72px 20px; }
  .hero { padding: 72px 20px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .platform-grid { grid-template-columns: 1fr; }
  .platform-card.engine {
    grid-column: span 1;
    grid-template-columns: 1fr;
    grid-template-rows: unset;
  }
  .platform-card.engine .pc-badge,
  .platform-card.engine .pc-number,
  .platform-card.engine .pc-title,
  .platform-card.engine .pc-desc,
  .platform-card.engine .pc-link { grid-column: 1; grid-row: unset; max-width: 100%; }
  .persona-grid { grid-template-columns: 1fr; }
  .persona-more { grid-template-columns: 1fr 1fr; }
  .problem-grid { grid-template-columns: 1fr; gap: 40px; }
  .partners-layout { grid-template-columns: 1fr; gap: 24px; }
  .partners-grid { grid-template-columns: 1fr; }
  .pv-kpi-row { grid-template-columns: repeat(2, 1fr); }
  .pv-panels { grid-template-columns: 1fr; }
  .product-visual { transform: none; }
  .product-visual-wrap { padding: 24px 20px 0; }
  .logo-track { gap: 40px; }
  .insights-header { flex-direction: column; align-items: flex-start; gap: 12px; }
  .insights-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-nav-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
}
