/* ═══════════════════════════════════════════
   Advanov Pharma — Global CSS
   Shared utilities used across all pages.
   Tailwind CDN handles layout / spacing /
   color utilities; this file only adds
   patterns that Tailwind CDN cannot cover.
═══════════════════════════════════════════ */

/* Font rendering */
* { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; box-sizing: border-box; }

/* ── Gradient text ── */
.grad-text {
  background: linear-gradient(135deg, #ffffff 0%, #93c5fd 50%, #8efff1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.grad-text-blue {
  background: linear-gradient(135deg, #27bdbd 0%, #14b8a6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.grad-text-light {
  background: linear-gradient(135deg, #27bdbd 0%, #93c5fd 50%, #2dd4bf 100%);  
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Noise texture overlay ── */
.noise::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  border-radius: inherit;
}

/* ── Glow border card ── */
.glow-border {
  position: relative;
  isolation: isolate;
}
.glow-border::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(29,110,245,0.4), rgba(20,184,166,0.3), transparent 60%);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.glow-border:hover::before { opacity: 1; }

/* ── Shimmer button ── */
.btn-shimmer {
  position: relative;
  overflow: hidden;
}
.btn-shimmer::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transform: skewX(-20deg);
  transition: left 0.5s ease;
}
.btn-shimmer:hover::after { left: 150%; }

/* ── Dot grid background ── */
.dot-grid {
  background-image: radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 28px 28px;
}
.dot-grid-light {
  background-image: radial-gradient(rgba(0,0,0,0.05) 1px, transparent 1px);
  background-size: 28px 28px;
}

/* ── Mesh gradient ── */
.mesh-bg {
  background:
    radial-gradient(ellipse 80% 50% at 20% 20%, rgba(29,110,245,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 70%, rgba(20,184,166,0.08) 0%, transparent 50%),
    radial-gradient(ellipse 40% 60% at 60% 10%, rgba(139,92,246,0.06) 0%, transparent 50%);
}

/* ── Tabular stat numbers ── */
.stat-num {
  font-feature-settings: 'tnum' on, 'lnum' on;
  font-variant-numeric: tabular-nums;
}

/* ── Pill tag ── */
.pill-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ── Gradient divider line ── */
.grad-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(29,110,245,0.4), rgba(20,184,166,0.3), transparent);
}

/* ── Navbar scrolled (light) ── */
#navbar.scrolled {
  background-color: rgba(255,255,255,0.97) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.07);
  box-shadow: 0 4px 24px rgba(0,0,0,0.08), 0 1px 3px rgba(0,0,0,0.04);
}
#navbar.scrolled .nav-link {
  color: rgba(55,65,81,0.8);
}
#navbar.scrolled .nav-link:hover,
#navbar.scrolled .nav-link.text-white {
  color: #111827;
  background-color: rgba(0,0,0,0.05);
}
#navbar.scrolled #mobile-toggle {
  background-color: rgba(0,0,0,0.06);
  color: #374151;
}
#navbar.scrolled #mobile-toggle:hover {
  background-color: rgba(0,0,0,0.10);
}

/* ── Mobile menu ── */
#mobile-menu {
  transition: max-height 0.3s ease, opacity 0.3s ease;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  background-color: #080a0e;
}
#mobile-menu.open { max-height: 600px; opacity: 1; }
#navbar.scrolled #mobile-menu {
  background-color: #ffffff;
  border-top-color: rgba(0,0,0,0.07);
}
#navbar.scrolled .mobile-nav-link {
  color: rgba(55,65,81,0.8);
}
#navbar.scrolled .mobile-nav-link:hover {
  color: #111827;
  background-color: rgba(0,0,0,0.05);
}

/* ── Scroll reveal ── */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity 0.75s cubic-bezier(0.16,1,0.3,1), transform 0.75s cubic-bezier(0.16,1,0.3,1); }
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }

/* ── Slide from left ── */
.reveal-left { opacity: 0; transform: translateX(-52px); transition: opacity 0.75s cubic-bezier(0.16,1,0.3,1), transform 0.75s cubic-bezier(0.16,1,0.3,1); }
.reveal-left.in-view { opacity: 1; transform: translateX(0); }

/* ── Slide from right ── */
.reveal-right { opacity: 0; transform: translateX(52px); transition: opacity 0.75s cubic-bezier(0.16,1,0.3,1), transform 0.75s cubic-bezier(0.16,1,0.3,1); }
.reveal-right.in-view { opacity: 1; transform: translateX(0); }

/* ── Scale + fade entrance (cards) ── */
.reveal-scale { opacity: 0; transform: scale(0.88) translateY(24px); transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1); }
.reveal-scale.in-view { opacity: 1; transform: scale(1) translateY(0); }

/* ── Word/line reveal (JS-injected spans) ── */
.word-wrap { overflow: hidden; display: inline-block; vertical-align: bottom; padding-bottom: 0.06em; margin-bottom: -0.06em; }
.word-inner { display: inline-block; transform: translateY(108%); opacity: 0; transition: transform 0.85s cubic-bezier(0.16,1,0.3,1), opacity 0.4s ease; }
.in-view .word-inner { transform: translateY(0); opacity: 1; }

/* ── Auto stagger for grid children ── */
.stagger > *:nth-child(1)  { transition-delay: 0.05s; }
.stagger > *:nth-child(2)  { transition-delay: 0.11s; }
.stagger > *:nth-child(3)  { transition-delay: 0.17s; }
.stagger > *:nth-child(4)  { transition-delay: 0.23s; }
.stagger > *:nth-child(5)  { transition-delay: 0.29s; }
.stagger > *:nth-child(6)  { transition-delay: 0.35s; }
.stagger > *:nth-child(7)  { transition-delay: 0.41s; }
.stagger > *:nth-child(8)  { transition-delay: 0.47s; }
.stagger > *:nth-child(9)  { transition-delay: 0.53s; }
.stagger > *:nth-child(10) { transition-delay: 0.59s; }
.stagger > *:nth-child(11) { transition-delay: 0.65s; }
.stagger > *:nth-child(12) { transition-delay: 0.71s; }

/* ── Hero line-by-line entrance ── */
@keyframes heroLineUp {
  from { transform: translateY(110%); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
.hero-line-wrap { overflow: hidden; display: block;     margin-top: -10px;}
.hero-line-1 { display: inline-block; animation: heroLineUp 0.95s cubic-bezier(0.16,1,0.3,1) 0.15s both; line-height: 1.2; }
.hero-line-2 { display: inline-block; animation: heroLineUp 0.95s cubic-bezier(0.16,1,0.3,1) 0.30s both; line-height: 1.2; }
.hero-line-3 { display: inline-block; animation: heroLineUp 0.95s cubic-bezier(0.16,1,0.3,1) 0.48s both; line-height: 1.2; }
.hero-sub    { animation: heroLineUp 0.85s cubic-bezier(0.16,1,0.3,1) 0.62s both; }
.hero-btns   { animation: heroLineUp 0.85s cubic-bezier(0.16,1,0.3,1) 0.74s both; }

/* ── Floating blob background orbs ── */
@keyframes blobFloat {
  0%,100% { transform: translate(0,0)   scale(1);    }
  33%     { transform: translate(22px,-18px) scale(1.06); }
  66%     { transform: translate(-16px,14px) scale(0.96); }
}
.blob-orb       { animation: blobFloat  9s ease-in-out infinite; }
.blob-orb-delay { animation: blobFloat 12s ease-in-out infinite; animation-delay: -5s; }

/* ── Card shine effect ── */
.card-shine {
  position: relative;
  overflow: hidden;
}
.card-shine::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.04), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s ease;
  pointer-events: none;
}
.card-shine:hover::before { left: 150%; }

/* ── Page inner hero (dark) ── */
.page-hero-inner {
  position: relative;
  background: #080a0e;
  overflow: hidden;
  padding: 9rem 1.5rem 5rem;
}

/* ── Check list item ── */
.check-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.check-item .check-dot {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background: rgba(20,184,166,0.2);
  border: 1px solid rgba(20,184,166,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

/* ── Timeline ── */
.tl-line {
  position: absolute;
  top: 50%;
  left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(29,110,245,0.3), rgba(20,184,166,0.3), transparent);
  transform: translateY(-50%);
}

/* ── Step flow arrow ── */
.flow-arrow {
  display: flex;
  align-items: center;
  color: rgba(29,110,245,0.4);
  font-size: 1.25rem;
}

/* ── CTA bar ── */
.cta-bar {
  background: linear-gradient(135deg, #0f3fa8 0%, #0d9488 100%);
  position: relative;
  overflow: hidden;
}
.cta-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 30% 50%, rgba(255,255,255,0.06) 0%, transparent 70%);
  pointer-events: none;
}

/* ── Animation delays (floating orbs) ── */
.anim-delay-1 { animation-delay: 1s; }
.anim-delay-2 { animation-delay: 2s; }

/* ── Marquee track ── */
.marquee-track { width: max-content; }

/* ── System font (initials badges) ── */
.font-system { font-family: system-ui; }

/* ── Contact form fields ── */
.cf-field input, .cf-field textarea, .cf-field select {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 12px 16px;
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
  appearance: none;
}
.cf-field input:focus, .cf-field textarea:focus, .cf-field select:focus {
  border-color: rgba(29,110,245,0.5);
  background: rgba(29,110,245,0.06);
}
.cf-field input::placeholder, .cf-field textarea::placeholder { color: rgba(255,255,255,0.3); }
.cf-field select option { background: #080a0e; color: white; }
.cf-select { position: relative; }
.cf-select-arrow { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); pointer-events: none; color: rgba(255,255,255,0.4); }

/* ── Map embed ── */
.map-wrap { height: 240px; }
.map-embed { border: 0; filter: grayscale(20%) brightness(0.85); }

/* ── Journey page – timeline vertical line ── */
.timeline-vline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, transparent, #27bdbd 10%, #27bdbd 90%, transparent);
  transform: translateX(-50%);
}
@media (max-width: 767px) {
  .timeline-vline::before { left: 28px; }
}

/* ── Platform page – section component overrides ── */
.section-header { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.section-header-left-24 { margin-bottom: 36px; }
.section-header-left-20 { margin-bottom: 36px; }

.section-title {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin: 0;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgb(var(--c-brand-900));
}
.section-title::before,
.section-title::after {
  content: '';
  width: 32px;
  height: 1px;
  flex-shrink: 0;
  background: rgb(var(--c-brand-300));
}
.section-title-xs { font-size: 13px; }
.section-title-xs-center { display: flex; justify-content: center; margin: 0 0 28px; font-size: 13px; }

.section-line { width: 100%; max-width: 70px; height: 2px; border-radius: 2px; background: rgb(var(--c-brand-500)); }
.section-line-60 { max-width: 60px; }
.section-line-50 { max-width: 50px; }

@media (max-width: 480px) {
  .section-title { font-size: 11px; gap: 10px; }
  .section-title::before, .section-title::after { width: 16px; }
}

/* ── About/Platform — Platform Hero (intro band with molecule graphic) ── */
.platform-hero {
  position: relative;
  overflow: hidden;
  background: #080a0e;
  padding: 88px 24px;
}
.platform-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgb(var(--c-brand-700) / 0.25), transparent 55%);
  pointer-events: none;
}
.ph-inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 64px;
}
.page-hero-text { flex: 1 1 56%; min-width: 0; }
.page-hero-title { margin: 0 0 14px; font-size: 34px; font-weight: 800; line-height: 1.2; color: #fff; }
.page-hero-accent { margin: 0; font-size: 16px; font-weight: 600; color: rgb(var(--c-brand-300)); }
.page-hero-divider { width: 56px; height: 3px; margin: 20px 0; border-radius: 2px; background: rgb(var(--c-brand-500)); }
.page-hero-body { margin: 0; max-width: 540px; font-size: 14.5px; line-height: 1.7; color: rgb(255 255 255 / 0.55); }

.platform-hero-right { position: relative; z-index: 1; flex: 1 1 44%; min-width: 280px; display: flex; flex-direction: column; align-items: center; gap: 28px; }
.molecule-net { position: relative; width: 300px; height: 280px; flex-shrink: 0; }
.mol-node {
  position: absolute;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgb(var(--c-brand-950) / 0.6);
  border: 1px solid rgb(var(--c-brand-500) / 0.4);
  color: rgb(var(--c-brand-300));
  box-shadow: 0 8px 20px rgb(0 0 0 / 0.35);
}
.mol-node.mn-c {
  width: 68px;
  height: 68px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: rgb(var(--c-brand-600));
  border-color: rgb(var(--c-brand-400) / 0.6);
  color: #fff;
  box-shadow: 0 10px 28px rgb(var(--c-brand-600) / 0.45);
}
.mol-node.mn-t  { left: 48%; top: 6%; }
.mol-node.mn-r  { left: 86%; top: 30%; }
.mol-node.mn-b  { left: 62%; top: 82%; }
.mol-node.mn-bl { left: 10%; top: 68%; }
.mol-line {
  position: absolute;
  left: 50%;
  top: 50%;
  height: 1.5px;
  transform-origin: 0 50%;
  background: linear-gradient(90deg, rgb(var(--c-brand-400) / 0.6), transparent);
}
.mol-line.ml-1 { width: 130px; transform: rotate(-93deg); }
.mol-line.ml-2 { width: 122px; transform: rotate(-27deg); }
.mol-line.ml-3 { width: 98px;  transform: rotate(68deg); }

.binders-stack { display: flex; flex-direction: column; gap: 10px; width: 100%; max-width: 260px; }
.binder {
  padding: 10px 16px;
  border-radius: 10px;
  background: rgb(255 255 255 / 0.05);
  border: 1px solid rgb(255 255 255 / 0.1);
  border-left: 3px solid rgb(var(--c-brand-500));
}
.binder span { font-size: 12.5px; font-weight: 600; color: rgb(255 255 255 / 0.8); }

@media (max-width: 900px) {
  .ph-inner { flex-direction: column; gap: 48px; text-align: center; }
  .page-hero-divider { margin: 20px auto; }
  .page-hero-body { margin: 0 auto; }
}

/* ── About/Platform — Operating Model + Philosophy ── */
.opm-section { padding: 88px 24px;  }
.opm-inner { max-width: 1280px; margin: 0 auto; display: flex; align-items: flex-start; gap: 56px; }
.opm-left { flex: 1 1 66%; min-width: 0; }
.opm-right {
  flex: 1 1 34%;
  min-width: 280px;
  padding-left: 48px;
  border-left: 1px solid rgb(var(--c-brand-100));
}

.opm-flow { display: flex; align-items: stretch; gap: 4px; }
.opm-step {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 14px 18px;
  background: rgb(var(--c-brand-600));
  border: 1px solid rgb(var(--c-brand-600));
  border-radius: 16px;
  transition: background-color 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.opm-step:hover {
  background: #fff;
  border-color: rgb(var(--c-brand-100));
  box-shadow: 0 1px 3px rgb(0 0 0 / .06), 0 4px 16px rgb(0 0 0 / .06);
}
.opm-icon-wrap {
  width: 52px;
  height: 52px;
  margin: 10px 0 14px;
  border-radius: 14px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgb(var(--c-brand-600));
  transition: background-color 0.3s;
}
.opm-step:hover .opm-icon-wrap { background: rgb(var(--c-brand-50)); }
.opm-title { margin: 0 0 6px; font-size: 13px; font-weight: 700; color: #fff; transition: color 0.3s; }
.opm-desc { margin: 0; font-size: 12px; line-height: 1.5; color: rgb(255 255 255 / 0.7); transition: color 0.3s; }
.opm-step:hover .opm-title { color: rgb(17 24 39); }
.opm-step:hover .opm-desc { color: rgb(107 114 128); }
.opm-arrow { flex-shrink: 0; align-self: center; color: rgb(var(--c-brand-300)); }

.phil-cards { display: flex; gap: 16px; }
.phil-card {
  flex: 1 1 0;
  text-align: center;
  padding: 24px 18px;
  background: rgb(var(--c-brand-600));
  border: 1px solid rgb(var(--c-brand-600));
  border-radius: 16px;
  transition: background-color 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.phil-card:hover {
  background: #fff;
  border-color: rgb(var(--c-brand-100));
  box-shadow: 0 1px 3px rgb(0 0 0 / .06), 0 4px 16px rgb(0 0 0 / .06);
}
.phil-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: #fff;
  color: rgb(var(--c-brand-600));
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s;
}
.phil-card:hover .phil-icon { background: rgb(var(--c-brand-50)); }
.phil-title { margin: 0 0 8px; font-size: 14px; font-weight: 800; color: #fff; transition: color 0.3s; }
.phil-desc { margin: 0; font-size: 12.5px; line-height: 1.6; color: rgb(255 255 255 / 0.7); transition: color 0.3s; }
.phil-card:hover .phil-title { color: rgb(17 24 39); }
.phil-card:hover .phil-desc { color: rgb(107 114 128); }

/* ── About/Platform — Vision + Mission band ── */
.vm-band {
  position: relative;
  overflow: hidden;
  padding: 56px 24px;
  background: linear-gradient(120deg, rgb(var(--c-brand-50)) 0%, rgb(238 247 249) 100%);
}
.vm-band::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url(../images/globle.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, transparent 30%, #000 42%, #000 58%, transparent 70%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, transparent 30%, #000 42%, #000 58%, transparent 70%, transparent 100%);
}
.vm-inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.vm-item {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  flex: 1 1 0;
  max-width: 420px;
  padding: 20px;
  background: rgb(255 255 255 / 0.65);
  border: 1px solid rgb(255 255 255 / 0.8);
  border-radius: 16px;
  backdrop-filter: blur(6px);
}
.vm-icon-wrap {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgb(var(--c-brand-600));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgb(var(--c-brand-600) / 0.3);
}
.vm-title { margin: 0 0 6px; font-size: 16px; font-weight: 800; color: rgb(var(--c-brand-900)); }
.vm-desc { margin: 0; font-size: 13.5px; line-height: 1.6; color: rgb(75 85 99); }
.vm-divider { width: 1px; align-self: stretch; background: rgb(var(--c-brand-200)); }
.vm-globe {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 0;
  transform: translate(-50%, -50%);
  width: 130px;
  height: 130px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgb(var(--c-brand-600) / 0.35);
}
.vm-globe-img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.vm-pill-ring { position: absolute; inset: -16px; border-radius: 50%; border: 1px dashed rgb(var(--c-brand-300)); }

/* ── About/Platform — Strategic Outcome ── */
.strat-outcome { padding: 80px 24px; background: #fff; }
.so-inner { max-width: 1280px; margin: 0 auto; display: flex; gap: 48px; align-items: stretch; }
.so-left { flex: 1 1 62%; min-width: 0; }
.so-flow { display: flex; align-items: flex-start; gap: 4px; }
.so-step { flex: 1 1 0; min-width: 0; display: flex; flex-direction: column; align-items: center; text-align: center; }
.so-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 14px;
  border-radius: 50%;
  background: rgb(var(--c-brand-600));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 18px rgb(var(--c-brand-600) / 0.3);
}
.so-title { margin: 0 0 6px; font-size: 14px; font-weight: 800; color: rgb(17 24 39); }
.so-desc { margin: 0 auto; max-width: 190px; font-size: 12.5px; line-height: 1.6; color: rgb(107 114 128); }
.so-arrow { flex-shrink: 0; align-self: flex-start; margin-top: 18px; color: rgb(var(--c-brand-300)); }

.so-quote {
  flex: 1 1 34%;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px;
  background: rgb(var(--c-brand-50));
  border: 1px solid rgb(var(--c-brand-100));
  border-radius: 20px;
}
.soq-mark { margin-bottom: 10px; font-family: Georgia, serif; font-size: 52px; font-weight: 900; line-height: 0.6; color: rgb(var(--c-brand-300)); }
.soq-text { margin: 0; font-size: 17px; font-weight: 600; line-height: 1.5; color: rgb(31 41 55); }
.soq-accent { margin-top: 14px; font-size: 14px; font-weight: 700; color: rgb(var(--c-brand-700)); }

@media (max-width: 1024px) {
  .opm-inner { flex-direction: column; gap: 40px; }
  .opm-right { width: 100%; padding-left: 0; padding-top: 32px; border-left: none; border-top: 1px solid rgb(var(--c-brand-100)); }
  .so-inner { flex-direction: column; }
}
@media (max-width: 768px) {
  .opm-flow, .so-flow { flex-direction: column; gap: 16px; }
  .opm-arrow, .so-arrow { margin: 0; align-self: center; transform: rotate(90deg); }
  .phil-cards { flex-direction: column; }
  .vm-inner { flex-direction: column; gap: 28px; text-align: center; }
  .vm-item { flex-direction: column; align-items: center; max-width: 100%; }
  .vm-globe { position: relative; left: auto; top: auto; order: -1; transform: none; }
  .vm-divider { display: none; }
}

/* ── Decorative ring scale ── */
.ring-scale-115 { transform: scale(1.15); }

/* ── World impact map – animated dots ── */
.map-ping-dot {
  transform-box: fill-box;
  transform-origin: center;
  animation: mapPing 2.8s cubic-bezier(0, 0, 0.2, 1) infinite;
}
.map-ring-1 {
  transform-box: fill-box;
  transform-origin: center;
  animation: mapRingPulse 2.8s ease-in-out infinite;
}
.map-ring-2 {
  transform-box: fill-box;
  transform-origin: center;
  animation: mapRingPulse 2.8s ease-in-out infinite 0.4s;
}
@keyframes mapPing {
  0%   { transform: scale(1); opacity: 0.75; }
  70%  { transform: scale(4); opacity: 0; }
  100% { transform: scale(4); opacity: 0; }
}
@keyframes mapRingPulse {
  0%, 100% { opacity: 0.06; }
  50%       { opacity: 0.22; }
}

/* ═══════════════════════════════════════════
   Brand color system  (replaces Tailwind config)
   To change brand color: update --c-brand-* values
═══════════════════════════════════════════ */

body { font-family: 'Inter', system-ui, sans-serif !important; }

:root {
  --c-brand-50:  239 252 252;
  --c-brand-100: 215 247 247;
  --c-brand-200: 175 236 236;
  --c-brand-300: 126 222 222;
  --c-brand-400: 82 206 206;
  --c-brand-500: 55 196 196;
  --c-brand-600: 39 189 189;
  --c-brand-700: 29 151 151;
  --c-brand-800: 24 120 120;
  --c-brand-900: 19 93 93;
  --c-brand-950: 9 52 52;
}

/* ── Background ── */
.bg-brand-50  { background-color: rgb(var(--c-brand-50)); }
.bg-brand-100 { background-color: rgb(var(--c-brand-100)); }
.bg-brand-400 { background-color: rgb(var(--c-brand-400)); }
.bg-brand-500 { background-color: rgb(var(--c-brand-500)); }
.bg-brand-600 { background-color: rgb(var(--c-brand-600)); }
.bg-brand-950 { background-color: rgb(var(--c-brand-950)); }

.bg-brand-300\/40 { background-color: rgb(var(--c-brand-300) / .40); }
.bg-brand-500\/20 { background-color: rgb(var(--c-brand-500) / .20); }
.bg-brand-600\/8  { background-color: rgb(var(--c-brand-600) / .08); }
.bg-brand-600\/10 { background-color: rgb(var(--c-brand-600) / .10); }
.bg-brand-600\/12 { background-color: rgb(var(--c-brand-600) / .12); }
.bg-brand-600\/15 { background-color: rgb(var(--c-brand-600) / .15); }
.bg-brand-600\/20 { background-color: rgb(var(--c-brand-600) / .20); }
.bg-brand-600\/25 { background-color: rgb(var(--c-brand-600) / .25); }
.bg-brand-600\/30 { background-color: rgb(var(--c-brand-600) / .30); }
.bg-brand-600\/40 { background-color: rgb(var(--c-brand-600) / .40); }
.bg-brand-950\/90 { background-color: rgb(var(--c-brand-950) / .90); }

/* ── Text ── */
.text-brand-100 { color: rgb(var(--c-brand-100)); }
.text-brand-200 { color: rgb(var(--c-brand-200)); }
.text-brand-300 { color: rgb(var(--c-brand-300)); }
.text-brand-400 { color: rgb(var(--c-brand-400)); }
.text-brand-500 { color: rgb(var(--c-brand-500)); }
.text-brand-600 { color: rgb(var(--c-brand-600)); }
.text-brand-700 { color: rgb(var(--c-brand-700)); }
.text-brand-600\/30 { color: rgb(var(--c-brand-600) / .30); }

/* ── Border ── */
.border-brand-100     { border-color: rgb(var(--c-brand-100)); }
.border-brand-500\/15 { border-color: rgb(var(--c-brand-500) / .15); }
.border-brand-500\/20 { border-color: rgb(var(--c-brand-500) / .20); }
.border-brand-500\/25 { border-color: rgb(var(--c-brand-500) / .25); }
.border-brand-500\/30 { border-color: rgb(var(--c-brand-500) / .30); }
.border-brand-500\/40 { border-color: rgb(var(--c-brand-500) / .40); }

/* ── Hover ── */
.hover\:bg-brand-50:hover      { background-color: rgb(var(--c-brand-50)); }
.hover\:bg-brand-600\/12:hover { background-color: rgb(var(--c-brand-600) / .12); }
.hover\:bg-brand-600\/25:hover { background-color: rgb(var(--c-brand-600) / .25); }
.hover\:bg-brand-700:hover     { background-color: rgb(var(--c-brand-700)); }
.hover\:border-brand-100:hover { border-color: rgb(var(--c-brand-100)); }
.hover\:border-brand-200:hover { border-color: rgb(var(--c-brand-200)); }
.hover\:text-brand-200:hover   { color: rgb(var(--c-brand-200)); }
.hover\:text-brand-700:hover   { color: rgb(var(--c-brand-700)); }

/* ── Gradient from ── */
.from-brand-400     { --tw-gradient-from: rgb(var(--c-brand-400));        --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(var(--c-brand-400) / 0)); }
.from-brand-500\/50 { --tw-gradient-from: rgb(var(--c-brand-500) / .50);  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(var(--c-brand-500) / 0)); }
.from-brand-600     { --tw-gradient-from: rgb(var(--c-brand-600));        --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(var(--c-brand-600) / 0)); }
.from-brand-600\/15 { --tw-gradient-from: rgb(var(--c-brand-600) / .15);  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(var(--c-brand-600) / 0)); }
.from-brand-600\/20 { --tw-gradient-from: rgb(var(--c-brand-600) / .20);  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(var(--c-brand-600) / 0)); }
.from-brand-600\/60 { --tw-gradient-from: rgb(var(--c-brand-600) / .60);  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(var(--c-brand-600) / 0)); }
.from-brand-950\/80 { --tw-gradient-from: rgb(var(--c-brand-950) / .80);  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(var(--c-brand-950) / 0)); }

/* ── Gradient to ── */
.to-brand-400 { --tw-gradient-to: rgb(var(--c-brand-400)); }
.to-brand-500 { --tw-gradient-to: rgb(var(--c-brand-500)); }
.to-brand-600 { --tw-gradient-to: rgb(var(--c-brand-600)); }

/* ── Shadows ── */
.shadow-glow-sm    { box-shadow: 0 0 20px rgb(var(--c-brand-600) / .15); }
.shadow-glow       { box-shadow: 0 0 40px rgb(var(--c-brand-600) / .20); }
.shadow-glow-lg    { box-shadow: 0 0 80px rgb(var(--c-brand-600) / .25); }
.shadow-card       { box-shadow: 0 1px 3px rgb(0 0 0/.06), 0 4px 16px rgb(0 0 0/.06); }
.shadow-card-hover { box-shadow: 0 4px 12px rgb(0 0 0/.08), 0 20px 40px rgb(0 0 0/.10); }
.shadow-elevated   { box-shadow: 0 8px 32px rgb(0 0 0/.12), 0 1px 3px rgb(0 0 0/.06); }

.hover\:shadow-glow:hover       { box-shadow: 0 0 40px rgb(var(--c-brand-600) / .20); }
.hover\:shadow-glow-sm:hover    { box-shadow: 0 0 20px rgb(var(--c-brand-600) / .15); }
.hover\:shadow-glow-lg:hover    { box-shadow: 0 0 80px rgb(var(--c-brand-600) / .25); }
.hover\:shadow-card:hover       { box-shadow: 0 1px 3px rgb(0 0 0/.06), 0 4px 16px rgb(0 0 0/.06); }
.hover\:shadow-card-hover:hover { box-shadow: 0 4px 12px rgb(0 0 0/.08), 0 20px 40px rgb(0 0 0/.10); }

/* ── Animations ── */
.animate-pulse-slow { animation: pulse 4s cubic-bezier(.4,0,.6,1) infinite; }
.animate-marquee    { animation: marquee 30s linear infinite; }
.animate-float      { animation: float 6s ease-in-out infinite; }
.animate-fade-up    { animation: fadeUp .6s ease forwards; }
.animate-fade-in    { animation: fadeIn .5s ease forwards; }
.animate-spin-slow  { animation: spin 20s linear infinite; }

@keyframes fadeUp  { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeIn  { from { opacity:0; } to { opacity:1; } }
@keyframes float   { 0%,100% { transform:translateY(0); } 50% { transform:translateY(-12px); } }
@keyframes marquee { from { transform:translateX(0); } to { transform:translateX(-50%); } }

/* ── Custom spacing ── */
.h-18 { height: 4.5rem; }

/* ═══════════════════════════════════════════
   Journey timeline (JS-rendered, see js/journey-timeline.js)
   Hand-written CSS — not dependent on the
   precompiled Tailwind utility set.
   Dark, glowing "milestone" theme — alternating
   glass cards on a gold spine.
═══════════════════════════════════════════ */
.jt-dark-section {
  position: relative;
  background:
    radial-gradient(ellipse 900px 500px at 12% 0%, rgb(39 189 189 / .16), transparent 60%),
    radial-gradient(ellipse 700px 500px at 100% 30%, rgb(124 58 237 / .14), transparent 55%),
    radial-gradient(ellipse 800px 600px at 50% 100%, rgb(240 180 41 / .08), transparent 60%),
    linear-gradient(180deg, #060a16 0%, #080c1c 45%, #05070f 100%);
  overflow: hidden;
}
.jt-dark-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgb(255 255 255 / .06) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: .5;
  pointer-events: none;
}
.jt-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #f0b429;
  margin-bottom: 12px;
}
.jt-kicker::before { content: ""; width: 18px; height: 2px; border-radius: 2px; background: #f0b429; display: inline-block; }

.jt-timeline { position: relative; max-width: 860px; margin: 0 auto; padding: 24px 0; z-index: 1; }

.jt-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -1px;
  width: 2px;
  background: linear-gradient(180deg, rgb(240 180 41 / 0) 0%, rgb(240 180 41 / .75) 6%, rgb(240 180 41 / .75) 94%, rgb(240 180 41 / 0) 100%);
  box-shadow: 0 0 12px rgb(240 180 41 / .45);
  z-index: 0;
}

.jt-block { position: relative; margin-bottom: 22px; }
.jt-block:last-child { margin-bottom: 0; }

.jt-row { position: relative; display: flex; align-items: center; min-height: 40px; }

.jt-dot {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 12px;
  margin-left: -6px;
  margin-top: -6px;
  border-radius: 50%;
  background: #f0b429;
  border: 2px solid #05070f;
  box-shadow: 0 0 0 3px rgb(240 180 41 / .25), 0 0 14px rgb(240 180 41 / .7);
  z-index: 3;
}
.jt-block.is-future .jt-dot { animation: pulse 3s cubic-bezier(.4,0,.6,1) infinite; }

.jt-side { width: 50%; box-sizing: border-box; }
.jt-side.empty { visibility: hidden; }

.jt-card {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgb(255 255 255 / .04);
  border: 1px solid rgb(255 255 255 / .09);
  border-radius: 16px;
  box-shadow: 0 4px 24px rgb(0 0 0 / .35);
  backdrop-filter: blur(8px);
  padding: 14px 16px;  
  transition: transform .3s ease, border-color .3s ease;
      max-width: 90%;    
    width: 100%;

}
.jt-card:hover { transform: translateY(-2px); border-color: rgb(255 255 255 / .18); }

.jt-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
}
.jt-ic { width: 19px; height: 19px; }

.jt-icon-blue    { background: linear-gradient(145deg, #3b82f6, #1d4ed8); box-shadow: 0 0 0 4px rgb(59 130 246 / .12), 0 0 18px rgb(59 130 246 / .55); }
.jt-icon-purple  { background: linear-gradient(145deg, #a855f7, #6d28d9); box-shadow: 0 0 0 4px rgb(168 85 247 / .12), 0 0 18px rgb(168 85 247 / .55); }
.jt-icon-cyan    { background: linear-gradient(145deg, #22d3ee, #0e7490); box-shadow: 0 0 0 4px rgb(34 211 238 / .12), 0 0 18px rgb(34 211 238 / .55); }
.jt-icon-pink    { background: linear-gradient(145deg, #f472b6, #be185d); box-shadow: 0 0 0 4px rgb(244 114 182 / .12), 0 0 18px rgb(244 114 182 / .55); }
.jt-icon-green   { background: linear-gradient(145deg, #4ade80, #15803d); box-shadow: 0 0 0 4px rgb(74 222 128 / .12), 0 0 18px rgb(74 222 128 / .55); }
.jt-icon-orange  { background: linear-gradient(145deg, #fb923c, #c2410c); box-shadow: 0 0 0 4px rgb(251 146 60 / .12), 0 0 18px rgb(251 146 60 / .55); }
.jt-icon-gold    { background: linear-gradient(145deg, #fde68a, #d97706); box-shadow: 0 0 0 4px rgb(240 180 41 / .16), 0 0 22px rgb(240 180 41 / .7); }

.jt-card-body { flex: 1; min-width: 0; }
.jt-year-inline { font-size: 19px; font-weight: 800; line-height: 1.1; margin: 0 0 4px; }
.jt-year-blue   { color: #60a5fa; }
.jt-year-purple { color: #c084fc; }
.jt-year-cyan   { color: #22d3ee; }
.jt-year-pink   { color: #f472b6; }
.jt-year-green  { color: #4ade80; }
.jt-year-orange { color: #fb923c; }
.jt-year-gold   { color: #f0b429; }
.jt-text { font-size: 13.5px; font-weight: 500; color: rgb(255 255 255 / .68); line-height: 1.45; margin: 0; }

.jt-card.is-future {
  max-width: 460px;
  background: linear-gradient(135deg, rgb(240 180 41 / .16), rgb(240 180 41 / .04));
  border: 1px solid rgb(240 180 41 / .4);
  box-shadow: 0 4px 28px rgb(240 180 41 / .18);
}
.jt-card.is-future .jt-text { color: rgb(255 255 255 / .82); font-weight: 600; }

.jt-tail { display: none; }

.jt-row.left .jt-side:first-child { display: flex; justify-content: flex-end; padding-right: 26px; }
.jt-row.right .jt-side:last-child { display: flex; justify-content: flex-start; padding-left: 26px; }

@media (max-width: 767px) {
  .jt-timeline { max-width: 460px; padding-left: 8px; }
  .jt-line { left: 15px; margin-left: 0; }
  .jt-row { padding-left: 30px; }
  .jt-dot { left: 15px; margin-left: 0; top: 22px; margin-top: -6px; }
  .jt-side { width: 100%; }
  .jt-side.empty { display: none; visibility: visible; }
  .jt-row.left .jt-side:first-child,
  .jt-row.right .jt-side:last-child { padding: 0; justify-content: flex-start; display: block; }
  .jt-card, .jt-card.is-future { max-width: 100%; }
}

/* ── Journey "pillars" feature row (5-up, dark) ── */
.jt-features {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 56px auto 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.jt-feature {
  background: rgb(255 255 255 / .04);
  border: 1px solid rgb(255 255 255 / .09);
  border-radius: 16px;
  padding: 20px 16px;
  text-align: center;
  transition: transform .3s ease, border-color .3s ease;
}
.jt-feature:hover { transform: translateY(-3px); border-color: rgb(255 255 255 / .18); }
.jt-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  color: #fff;
}
.jt-feature-icon svg { width: 20px; height: 20px; }
.jt-feature h3 { font-size: 14px; font-weight: 700; color: #fff; margin: 0 0 6px; }
.jt-feature p { font-size: 12.5px; color: rgb(255 255 255 / .55); line-height: 1.4; margin: 0; }
@media (max-width: 900px) {
  .jt-features { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .jt-features { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════
   Horizontal journey timeline — duplicate of the
   vertical .jt- timeline above, rendered sideways
   as a scrollable strip (see js/journey-timeline-horizontal.js)
═══════════════════════════════════════════ */
.ht-wrap { position: relative; }
.ht-wrap::before, .ht-wrap::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 64px; z-index: 5; pointer-events: none;
}
/* .ht-wrap::before { left: 0;  background: linear-gradient(to right, #fafafa, rgba(250,250,250,0)); }
.ht-wrap::after  { right: 0; background: linear-gradient(to left,  #fafafa, rgba(250,250,250,0)); }
 */
.ht-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; scroll-snap-type: x proximity; padding: 14px 0 28px; }
.ht-scroll::-webkit-scrollbar { height: 6px; }
.ht-scroll::-webkit-scrollbar-track { background: #e5e5e5; border-radius: 3px; }
.ht-scroll::-webkit-scrollbar-thumb { background: rgb(var(--c-brand-600)); border-radius: 3px; }

.ht-track { position: relative; display: flex; width: max-content; padding: 0 24px; margin: 0 auto; }

.ht-line {
  position: absolute; left: 0; right: 0; top: 122px; height: 2px;
  background: linear-gradient(to right, transparent, #e5e5e5 4%, #e5e5e5 96%, transparent);
  z-index: 0;
}

.ht-item {
  position: relative; flex: 0 0 170px; padding: 0 4px; margin: 0 -30px; scroll-snap-align: center;
  display: grid; grid-template-rows: 110px 24px 24px 110px; justify-items: center;
}

.ht-card-slot { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; width: 100%; }
.ht-card-slot.top    { justify-content: flex-end; }
.ht-card-slot.bottom { justify-content: flex-start; }
.ht-card-slot.top::after,
.ht-card-slot.bottom::before { content: ""; width: 2px; height: 14px; background: #d4d4d4; }
.ht-card-slot.is-empty::after,
.ht-card-slot.is-empty::before { display: none; }

.ht-axis { position: relative; z-index: 2; display: flex; align-items: center; justify-content: center; }
.ht-dot {
  width: 14px; height: 14px; border-radius: 50%; border: 2px solid #fff;
  box-shadow: 0 1px 3px rgb(0 0 0 / .15);
}
.ht-dot-brand   { background: rgb(var(--c-brand-600)); }
.ht-dot-neutral { background: #a3a3a3; }
.ht-dot-amber   { background: #fbbf24; }
.ht-dot-teal    { background: #14b8a6; }
.ht-dot-future  { background: #14b8a6; box-shadow: 0 0 0 5px rgb(20 184 166 / .18); animation: pulse 4s cubic-bezier(.4,0,.6,1) infinite; }

.ht-year { position: relative; z-index: 2; display: flex; justify-content: center; align-items: flex-start; }
.ht-year span {
  display: inline-flex; align-items: center; gap: 4px; padding: 3px 10px; border-radius: 6px;
  background: rgb(var(--c-brand-600)); color: #fff; font-size: 11px; font-weight: 700;
  white-space: nowrap; box-shadow: 0 1px 3px rgb(0 0 0 / .08);
}
.ht-year.is-future span { background: #14b8a6; }
.ht-arrow-ic { width: 11px; height: 11px; display: inline-block; vertical-align: -1px; }

.ht-card {
  position: relative; display: flex; flex-direction: column; align-items: center; gap: 5px;
  width: 132px; background: #fff; border: 1px solid #e5e5e5; border-radius: 12px; padding: 8px;
  box-shadow: 0 1px 3px rgb(0 0 0 / .06), 0 4px 16px rgb(0 0 0 / .06); text-align: center;
}
.ht-icon { width: 26px; height: 26px; border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ht-icon-brand   { background: rgb(var(--c-brand-600) / .12); }
.ht-icon-brand .ht-ic   { stroke: rgb(var(--c-brand-700)); }
.ht-icon-neutral { background: #f5f5f5; }
.ht-icon-neutral .ht-ic { stroke: #737373; }
.ht-icon-amber   { background: #fffbeb; }
.ht-icon-amber .ht-ic   { stroke: #d97706; fill: #d97706; }
.ht-icon-teal    { background: rgb(20 184 166 / .12); }
.ht-icon-teal .ht-ic    { stroke: #0d9488; }
.ht-ic { width: 16px; height: 16px; }
.ht-card p {
  font-size: 10.5px; font-weight: 500; color: #262626; line-height: 1.3; margin: 0;
  display: -webkit-box; -webkit-line-clamp: 5; line-clamp: 5; -webkit-box-orient: vertical; overflow: hidden;
}
.ht-card.is-future p { color: #0f766e; font-weight: 600; }

.ht-nav {
  position: absolute; top: 50%; transform: translateY(-50%); width: 40px; height: 40px; border-radius: 9999px;
  background: #fff; border: 1px solid #e5e5e5; display: flex; align-items: center; justify-content: center;
  color: #525252; box-shadow: 0 4px 16px rgb(0 0 0 / .08); cursor: pointer; z-index: 6;
  transition: background-color .2s, color .2s, border-color .2s;
}
.ht-nav:hover { background: rgb(var(--c-brand-600)); color: #fff; border-color: transparent; }
.ht-nav svg { width: 18px; height: 18px; }
.ht-nav-prev { left: 12px; }
.ht-nav-next { right: 12px; }

@media (max-width: 640px) {
  .ht-wrap::before, .ht-wrap::after { width: 22px; }
  .ht-item { flex-basis: 128px; grid-template-rows: 96px 22px 22px 96px; }
  .ht-line { top: 107px; }
  .ht-card { width: 112px; padding: 7px; }
  .ht-nav { display: none; }
}

/* ── Neutral-925 (custom shade) ── */
.bg-neutral-925 { background-color: #0c0e12; }
.main-banner-bg { background: url(../images/main-bg.jpg) no-repeat center center; background-size: cover;}
.why-hero-bg { background: url(../images/product-bg.jpg) no-repeat right center; background-size: cover;}
.partnership-hero-bg { background: url(../images/main2.jpg) no-repeat center center; background-size: cover;}
.video-overlay { background-color: #057878ed;}
.about-bg {   
    
    background-image: url(../images/dark-section-bg-image.png);
    background-repeat: no-repeat;
    background-color: #27bdbd;
}

section.relative.pt-32.pb-12.bg-neutral-950.overflow-hidden {
    padding-top: 7rem;
    padding-bottom: 4rem;
}

.hero-image{
    position:absolute;
    top:0;
    right:0;
    width:60%;
    height:100%;
}

.hero-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
}



/* ==========================
   HERO SECTION
========================== */

.about-hero{
    position:relative;
    
    background:#02121e;
    overflow:hidden;
    display:flex;
    align-items:center;
}

 

.hero-grid{
    display:grid;
    grid-template-columns:45% 55%;
    align-items:center; 
}

.hero-content{
    max-width:580px;
    z-index: 1;
    position: relative;
}
 

.hero-image{
    position:absolute;
    right:0;
    top:0;
    width:52%;
    height:100%;
}

.hero-image img{
    width:100%;
    height:100%;
    object-fit:cover;
        clip-path: polygon(12% 0%, 100% 0, 100% 100%, 0% 100%);
}

.hero-overlay{
    position:absolute;
    inset:0;
    z-index:1;
    background:
    linear-gradient(
        90deg,
        rgba(2,18,30,.96) 0%,
        rgba(2,18,30,.90) 40%,
        rgba(2,18,30,.15) 70%,
        rgba(2,18,30,0) 100%
    )
}

.flag-badge{
    margin-top: -30px;
    border: 1px solid rgb(var(--c-brand-700));
}

/* ==========================
   HEADER OVER HERO
========================== */

.site-header{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    z-index:100;
    background:rgba(0,20,35,.15);
    backdrop-filter:blur(10px);
}

.site-header .container{
    max-width:1320px;
}

.site-header-inner{
    height:90px;
    display:flex;
    align-items:center;
    justify-content:space-between;
}
 

header#navbar {
    background: #02121e;
}

 .icon-up {
      position: absolute;
    top: -30px;
    width: 40px;
    height: 40px;
    border-radius: 40px;
 }

    @media(max-width:767px){

    section.relative.pt-32.pb-12.bg-neutral-950.overflow-hidden {
    padding-top: 7rem;
    padding-bottom: 3rem;
}

.leading-tight {
    line-height: 1.25;
}
 .text-lg {
    font-size: 0.725rem;
    line-height: 0.75rem;
}

.text-4xl {
    font-size: 1rem;
    line-height: 1rem;
}

.leading-relaxed {
    line-height: 1.125;
    font-size: 0.8rem;
}

    
}
