/* ===== SYNC1 SYSTEMS — BOLD DESIGN SYSTEM ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  /* Sync1 Brand Blues — from brand board */
  --navy-950: #060a1f;
  --navy-900: #0a0e2a;
  --blue-900: #0D1547;
  --blue-800: #111B5E;
  --blue-700: #1B2A8A;
  --blue-600: #2844B0;
  --blue-500: #3B5FD4;
  --blue-400: #6B8FDB;
  --blue-300: #94B3F0;
  --blue-200: #B8CDF5;
  --blue-100: #E8EEFB;
  --blue-50: #F4F7FE;

  --accent-600: #2844B0;
  --accent-500: #3B5FD4;
  --accent-400: #6B8FDB;
  --accent-100: #E8EEFB;
  --surface-light: #F4F7FE;
  --cream: #F4F7FE;

  --white: #FFFFFF;
  --gray-50: #F8FAFC;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-400: #94A3B8;
  --gray-500: #64748B;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1E293B;
  --gray-900: #0F172A;

  --font-display: 'Helios Extended', 'Archivo', -apple-system, sans-serif;
  --font-body: 'Montserrat', -apple-system, sans-serif;

  --ease-out: cubic-bezier(0.25, 0.4, 0.25, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--gray-800); line-height: 1.6; background: var(--white); }
::selection { background: var(--blue-200); color: var(--blue-900); }
:focus-visible { outline: 2px solid var(--blue-500); outline-offset: 2px; border-radius: 4px; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    animation-delay: 0ms !important;
    transition-duration: 0.01ms !important;
  }
  .hero-anim, .hero-enter, .reveal, .stagger-item, .fold-in, .tile { opacity: 1 !important; transform: none !important; }
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== HEADER — Dark, commanding ===== */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(10, 14, 42, 0.6);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}
.header.scrolled {
  background: rgba(10, 14, 42, 0.95);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1360px; margin: 0 auto; padding: 0 36px; height: 72px;
}
.header-logo {
  display: flex; align-items: center; gap: 14px;
  text-decoration: none; flex-shrink: 0;
}
.header-logo .logo-light { height: 38px; display: block; }
.header-logo .logo-dark { display: none; height: 42px; }
.header-tagline {
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.3px;
  color: rgba(255,255,255,0.5); white-space: nowrap;
  border-left: 1.5px solid rgba(255,255,255,0.15); padding-left: 14px;
  font-family: var(--font-body); font-style: italic;
}
@media (max-width: 1380px) { .header-tagline { display: none; } }
.nav-links { display: flex; gap: 4px; list-style: none; align-items: center; }
.nav-links a {
  text-decoration: none; color: rgba(255,255,255,0.7); font-size: 0.84rem;
  font-weight: 500; transition: color 0.2s var(--ease-out);
}
.nav-links > li > a {
  padding: 7px 14px; border-radius: 8px; display: flex; align-items: center; gap: 4px;
  transition: color 0.2s var(--ease-out), background 0.2s var(--ease-out);
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links > li > a:hover { background: rgba(255,255,255,0.08); }

.btn-get-started {
  padding: 8px 22px;
  background: var(--blue-500);
  color: var(--white); border: none; border-radius: 999px;
  font-size: 0.84rem; font-weight: 600; text-decoration: none;
  font-family: var(--font-body);
  transition: all 0.3s var(--ease-out); flex-shrink: 0;
}
.btn-get-started:hover {
  background: var(--blue-400);
  box-shadow: 0 4px 20px rgba(59,95,212,0.4);
  transform: translateY(-1px);
}
.btn-get-started:active { transform: translateY(0) scale(0.98); }

.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--white); margin: 5px 0; transition: 0.3s var(--ease-out); }
.mobile-menu { display: none; }

/* NAV DROPDOWN */
.nav-links .has-dropdown { position: relative; }
.nav-links .has-dropdown > a::after {
  content: ''; width: 0; height: 0;
  border-left: 3.5px solid transparent; border-right: 3.5px solid transparent;
  border-top: 3.5px solid currentColor; transition: transform 0.3s var(--ease-out); opacity: 0.6;
}
.nav-links .has-dropdown:hover > a::after { transform: rotate(180deg); opacity: 1; }
.nav-links .has-dropdown::before {
  content: ''; position: absolute; top: 100%; left: 0; right: 0; height: 12px;
}
.nav-dropdown {
  position: absolute; top: calc(100% + 8px); left: 50%; transform: translateX(-50%);
  background: rgba(10,14,42,0.95); backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-radius: 14px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3), 0 0 0 1px rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 6px; min-width: 190px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.3s var(--ease-out), transform 0.3s var(--ease-out);
  transform: translateX(-50%) translateY(12px) scale(0.97);
  z-index: 100;
}
.nav-links .has-dropdown:hover .nav-dropdown,
.nav-links .has-dropdown:focus-within .nav-dropdown {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0) scale(1);
}
.nav-links .has-dropdown:focus-within > a::after { transform: rotate(180deg); opacity: 1; }
.nav-dropdown a {
  display: block; padding: 9px 16px; font-size: 0.84rem;
  color: rgba(255,255,255,0.7); text-decoration: none; font-weight: 500;
  border-radius: 8px;
  transition: background 0.2s var(--ease-out), color 0.2s var(--ease-out);
}
.nav-dropdown a:hover { background: rgba(255,255,255,0.1); color: var(--white); }

/* Mobile dropdown */
.mobile-menu .mobile-dropdown-toggle {
  display: flex; justify-content: space-between; align-items: center; cursor: pointer;
}
.mobile-menu .mobile-dropdown-toggle::after {
  content: '+'; font-size: 1.2rem; font-weight: 600; color: rgba(255,255,255,0.4);
  transition: transform 0.35s var(--ease-out);
}
.mobile-menu .mobile-dropdown-toggle.open::after { content: '\2212'; }
.mobile-dropdown-items { display: none; padding-left: 20px; }
.mobile-dropdown-items.open { display: block; }
.mobile-dropdown-items a { font-size: 0.9rem; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }

/* ===== HERO — Centered with logo convergence ===== */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  background: var(--navy-900);
  position: relative; overflow: hidden;
  padding: 100px 0 60px;
}
.hero-centered {
  justify-content: center; text-align: center;
  flex-direction: column;
}
/* Hero background image layer */
.hero-bg-image {
  position: absolute; inset: 0; z-index: 0;
  background: url('site-images/homepagev2.png') center/cover no-repeat;
  opacity: 0.35;
}
.hero-bg-layer {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(60% 50% at 15% 50%, rgba(59,95,212,0.15) 0%, transparent 60%),
    radial-gradient(40% 60% at 80% 30%, rgba(107,143,219,0.1) 0%, transparent 60%),
    radial-gradient(30% 30% at 50% 80%, rgba(27,42,138,0.12) 0%, transparent 50%);
}

/* Inner page hero background images */
.page-hero-bg-geometric {
  position: absolute; inset: 0; z-index: 0;
  background: url('site-images/secondary-hero.jpeg') center/cover no-repeat;
  opacity: 0.3;
}
.page-hero-bg-lendtopia {
  position: absolute; inset: 0;
  background: url('site-images/lendtopia-alt.png') center/cover no-repeat;
  opacity: 0.2;
}

/* Final CTA background image */
.final-cta-bg {
  position: absolute; inset: 0; z-index: 0;
  background: url('site-images/cta.png') center/cover no-repeat;
  opacity: 0.4;
}

/* Solutions UI mockup image */
.sol-ui-mockup {
  width: 100%; max-width: 440px; border-radius: 16px;
  box-shadow: 0 16px 48px rgba(13,21,71,0.12);
  border: 1px solid var(--gray-200);
}

/* Bento grid spans */
.bento-span-1 { }
.bento-span-2 { grid-column: span 2; }
.hero::after {
  content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  opacity: 0.025; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
}
.hero-grid {
  position: relative; z-index: 2;
  max-width: 1360px; margin: 0 auto; padding: 0 36px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.hero-content { max-width: 600px; }
.hero-content-centered {
  max-width: 800px; margin: 0 auto; text-align: center;
  position: relative; z-index: 10;
}
.hero-content-centered .hero-sub { margin-left: auto; margin-right: auto; }

/* ===== LOGO CONVERGENCE ANIMATION ===== */
.logo-stage {
  position: absolute; inset: 0; z-index: 3;
  pointer-events: none;
}
.logo-piece {
  position: absolute; top: 50%; left: 50%;
  width: 50px; height: 50px; object-fit: contain;
  opacity: 0; filter: blur(0px);
  will-change: transform, opacity;
}
.lp-1 { --sx: -350px; --sy: -250px; --sz: 0.6;  animation: pieceIn 2.4s cubic-bezier(0.22, 0.61, 0.36, 1) 0.0s forwards; }
.lp-2 { --sx:  300px; --sy: -200px; --sz: 0.45; animation: pieceIn 2.4s cubic-bezier(0.22, 0.61, 0.36, 1) 0.15s forwards; width: 40px; height: 40px; }
.lp-3 { --sx: -250px; --sy:  180px; --sz: 0.55; animation: pieceIn 2.4s cubic-bezier(0.22, 0.61, 0.36, 1) 0.1s forwards; }
.lp-4 { --sx:  380px; --sy:  150px; --sz: 0.5;  animation: pieceIn 2.4s cubic-bezier(0.22, 0.61, 0.36, 1) 0.2s forwards; width: 35px; height: 35px; }
.lp-5 { --sx:   0px;  --sy: -320px; --sz: 0.65; animation: pieceIn 2.4s cubic-bezier(0.22, 0.61, 0.36, 1) 0.05s forwards; width: 45px; height: 45px; }
.lp-6 { --sx: -400px; --sy:   20px; --sz: 0.4;  animation: pieceIn 2.4s cubic-bezier(0.22, 0.61, 0.36, 1) 0.25s forwards; width: 30px; height: 30px; }
.lp-7 { --sx:  180px; --sy:  280px; --sz: 0.5;  animation: pieceIn 2.4s cubic-bezier(0.22, 0.61, 0.36, 1) 0.12s forwards; width: 38px; height: 38px; }
.lp-8 { --sx: -150px; --sy: -350px; --sz: 0.35; animation: pieceIn 2.4s cubic-bezier(0.22, 0.61, 0.36, 1) 0.3s forwards; width: 28px; height: 28px; }

@keyframes pieceIn {
  0% {
    opacity: 0;
    transform: translate(calc(var(--sx) - 50%), calc(var(--sy) - 50%)) scale(var(--sz));
    filter: blur(4px);
  }
  15% {
    opacity: 0.35;
    filter: blur(1px);
  }
  70% {
    opacity: 0.5;
    transform: translate(calc(var(--sx) * 0.15 - 50%), calc(var(--sy) * 0.15 - 50%)) scale(var(--sz));
    filter: blur(0px);
  }
  90% {
    opacity: 0.3;
    transform: translate(-50%, -50%) scale(0.4);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.2);
  }
}

.logo-center {
  position: absolute; top: 50%; left: 50%;
  width: 120px; height: 120px; object-fit: contain;
  transform: translate(-50%, -50%) scale(0.2);
  opacity: 0;
  animation: logoPop 1s cubic-bezier(0.34, 1.56, 0.64, 1) 2s forwards,
             logoFloat 8s ease-in-out 3.5s infinite;
}
@keyframes logoPop {
  0% { opacity: 0; transform: translate(-50%, -50%) scale(0.2); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.2); }
  75% { transform: translate(-50%, -50%) scale(0.92); }
  100% { opacity: 0.12; transform: translate(-50%, -50%) scale(1); }
}
@keyframes logoFloat {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, calc(-50% - 10px)) scale(1.03); }
}

.logo-ring {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.3);
  border-radius: 50%; opacity: 0;
  border: 1.5px solid rgba(107,143,219,0.3);
}
.logo-ring-1 {
  width: 200px; height: 200px;
  animation: ringPulse 1.2s ease-out 2.2s forwards;
}
.logo-ring-2 {
  width: 340px; height: 340px;
  animation: ringPulse 1.4s ease-out 2.35s forwards;
}
.logo-ring-3 {
  width: 500px; height: 500px;
  animation: ringPulse 1.6s ease-out 2.5s forwards;
}
@keyframes ringPulse {
  0% { opacity: 0; transform: translate(-50%, -50%) scale(0.3); }
  20% { opacity: 0.6; }
  100% { opacity: 0; transform: translate(-50%, -50%) scale(1.2); }
}

/* Hero text enters AFTER logo animation */
.hero-anim {
  opacity: 0; transform: translateY(28px);
  animation: heroFadeIn 0.9s var(--ease-out) forwards;
}
.ha-1 { animation-delay: 2.6s; }
.ha-2 { animation-delay: 2.8s; }
.ha-3 { animation-delay: 3.1s; }
.ha-4 { animation-delay: 3.4s; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 600;
  font-size: 0.78rem; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--blue-300); margin-bottom: 28px;
  padding: 8px 18px; border-radius: 999px;
  background: rgba(59,95,212,0.12); border: 1px solid rgba(59,95,212,0.2);
}
.eyebrow-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--blue-400);
  animation: dotPulse 2s ease-in-out infinite;
}
@keyframes dotPulse {
  0%, 100% { opacity: 0.5; box-shadow: 0 0 0 0 rgba(107,143,219,0.4); }
  50% { opacity: 1; box-shadow: 0 0 0 6px rgba(107,143,219,0); }
}
.hero h1 {
  font-size: clamp(2.8rem, 5.5vw, 4.5rem); font-weight: 900;
  font-family: var(--font-display);
  color: var(--white); line-height: 1.05; margin-bottom: 28px;
  letter-spacing: -0.03em;
}
.hero h1 .gradient-text {
  background: linear-gradient(135deg, var(--blue-300), var(--white) 50%, var(--blue-200));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: clamp(1rem, 1.4vw, 1.15rem); color: rgba(255,255,255,0.78);
  max-width: 520px; line-height: 1.75; font-weight: 400;
  margin-bottom: 40px;
}
.hero-actions { display: flex; gap: 16px; align-items: center; margin-bottom: 48px; flex-wrap: wrap; }
.btn-hero-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 36px; background: var(--blue-500); color: var(--white);
  border: none; border-radius: 12px; font-size: 0.95rem; font-weight: 700;
  text-decoration: none; font-family: var(--font-body);
  transition: all 0.3s var(--ease-out);
  box-shadow: 0 4px 20px rgba(59,95,212,0.3);
}
.btn-hero-primary:hover {
  background: var(--blue-400);
  box-shadow: 0 8px 32px rgba(59,95,212,0.45);
  transform: translateY(-2px);
}
.btn-hero-primary:active { transform: translateY(0) scale(0.98); }
.btn-hero-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 28px; background: transparent;
  color: rgba(255,255,255,0.8); border: 1px solid rgba(255,255,255,0.2);
  border-radius: 12px; font-size: 0.95rem; font-weight: 600;
  text-decoration: none; font-family: var(--font-body);
  transition: all 0.3s var(--ease-out);
}
.btn-hero-secondary:hover {
  background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.35);
  color: var(--white);
}
.hero-proof {
  display: flex; gap: 24px; align-items: center;
}
.proof-item { display: flex; flex-direction: column; }
.proof-item strong {
  font-size: 1.25rem; font-weight: 800; color: var(--white);
  font-family: var(--font-display);
}
.proof-item span { font-size: 0.75rem; color: rgba(255,255,255,0.4); font-weight: 500; letter-spacing: 0.5px; }
.proof-divider { width: 1px; height: 36px; background: rgba(255,255,255,0.12); }

/* ===== FLOATING TILES ===== */
.hero-tiles-wrap {
  position: relative; min-height: 480px;
}
.hero-tiles {
  position: relative; width: 100%; height: 480px;
}
.tile {
  position: absolute; border-radius: 16px; padding: 20px 24px;
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  color: var(--white);
  opacity: 0;
  animation: tileSlideIn 0.8s var(--ease-out) forwards;
}
.tile-1 {
  top: 0; left: 0; width: 280px; z-index: 3;
  animation-delay: 0.6s;
  --float-y: -12px; --float-duration: 6s;
}
.tile-2 {
  top: 40px; right: 0; width: 200px; z-index: 4;
  animation-delay: 0.9s;
  --float-y: -16px; --float-duration: 7s;
}
.tile-3 {
  bottom: 100px; left: 30px; z-index: 5;
  display: flex; align-items: center; gap: 14px;
  animation-delay: 1.2s;
  --float-y: -10px; --float-duration: 5s;
}
.tile-4 {
  bottom: 20px; right: 20px; width: 240px; z-index: 2;
  animation-delay: 1.0s;
  --float-y: -14px; --float-duration: 8s;
}
.tile-5 {
  top: 200px; left: 180px; width: 160px; z-index: 6;
  text-align: center;
  animation-delay: 1.4s;
  --float-y: -18px; --float-duration: 6.5s;
}
.tile.visible {
  animation: tileSlideIn 0.8s var(--ease-out) forwards, tileFloat var(--float-duration, 6s) ease-in-out 1.5s infinite;
}
@keyframes tileSlideIn {
  from { opacity: 0; transform: translateY(40px) scale(0.92); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes tileFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(var(--float-y, -12px)); }
}
.tile-label { font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; color: rgba(255,255,255,0.5); margin-bottom: 8px; }
.tile-amount { font-size: 2rem; font-weight: 800; font-family: var(--font-display); margin-bottom: 12px; }
.tile-score { font-size: 2.5rem; font-weight: 800; font-family: var(--font-display); color: #4ade80; margin-bottom: 8px; }
.tile-big { font-size: 2.2rem; font-weight: 800; font-family: var(--font-display); margin-bottom: 4px; }
.tile-row { display: flex; align-items: center; gap: 10px; }
.tile-tag { font-size: 0.75rem; padding: 3px 10px; border-radius: 6px; background: rgba(255,255,255,0.1); font-weight: 600; }
.tile-status { font-size: 0.78rem; font-weight: 700; }
.tile-status-approved { color: #4ade80; }
.tile-bar { height: 6px; border-radius: 3px; background: rgba(255,255,255,0.1); overflow: hidden; margin-bottom: 6px; }
.tile-bar-fill { height: 100%; width: 78%; border-radius: 3px; background: linear-gradient(90deg, #4ade80, #22c55e); }
.tile-progress { height: 6px; border-radius: 3px; background: rgba(255,255,255,0.1); overflow: hidden; margin-bottom: 8px; }
.tile-progress-fill { height: 100%; width: 75%; border-radius: 3px; background: linear-gradient(90deg, var(--blue-400), var(--blue-300)); animation: progressPulse 2s ease-in-out infinite; }
@keyframes progressPulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.7; } }
.tile-meta { font-size: 0.72rem; color: rgba(255,255,255,0.45); font-weight: 500; }
.tile-bold { font-size: 0.95rem; font-weight: 700; }
.tile-check {
  width: 36px; height: 36px; border-radius: 10px;
  background: rgba(74,222,128,0.15); color: #4ade80;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; font-weight: 700; flex-shrink: 0;
}
.tile-dot { width: 8px; height: 8px; border-radius: 50%; }
.tile-dot-green { background: #4ade80; box-shadow: 0 0 8px rgba(74,222,128,0.4); }

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--gray-50); padding: 28px 0;
  border-bottom: 1px solid var(--gray-100);
  position: relative; z-index: 5;
}
.trust-bar-inner {
  display: flex; justify-content: center; align-items: center; gap: 40px; flex-wrap: wrap;
}
.trust-bar-item { text-align: center; }
.trust-bar-item strong {
  font-size: 1.5rem; font-weight: 800; color: var(--gray-900);
  font-family: var(--font-display); display: block;
}
.trust-bar-item span { font-size: 0.75rem; color: var(--gray-500); font-weight: 500; letter-spacing: 0.5px; }
.trust-bar-divider { width: 1px; height: 40px; background: var(--gray-200); }

/* ===== SECTION HEADINGS (shared) ===== */
.section-eyebrow {
  font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 2.5px; color: var(--blue-600); margin-bottom: 16px;
  text-align: center; display: inline-block;
  padding: 6px 16px; border-radius: 999px;
  background: var(--blue-50); border: 1px solid var(--blue-100);
}
.section-eyebrow-light {
  background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.1);
  color: var(--blue-300);
}
.section-title {
  font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 900;
  font-family: var(--font-display);
  color: var(--gray-900); margin-bottom: 16px;
  text-align: center; letter-spacing: -0.03em;
}
.section-title-light { color: var(--white); }
.section-sub {
  color: var(--gray-500); font-size: 1.05rem;
  max-width: 600px; margin: 0 auto 56px;
  line-height: 1.7; text-align: center;
}
.section-intro { text-align: center; margin-bottom: 48px; }
.section-intro .section-eyebrow { margin: 0 auto 16px; }

/* ===== COMPARISON (Old Way vs Sync1) ===== */
.comparison-section { padding: 120px 0 0; background: var(--navy-900); }
.comparison-section .section-eyebrow { background: rgba(59,95,212,0.12); border-color: rgba(107,143,219,0.2); color: var(--blue-300); }
.comparison-section .section-title { color: var(--white); }
.comparison-section .section-sub { color: rgba(255,255,255,0.5); }
.problem-solution {
  display: grid; grid-template-columns: 1fr 1fr; overflow: hidden;
  border-radius: 20px; max-width: 1100px; margin: 0 auto;
  box-shadow: 0 20px 60px rgba(6,10,31,0.3);
  border: 1px solid rgba(255,255,255,0.06);
}
.ps-left {
  background: rgba(255,255,255,0.03); padding: 64px 48px;
  display: flex; flex-direction: column; justify-content: center;
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
}
.ps-right {
  background: var(--blue-900); padding: 64px 48px;
  display: flex; flex-direction: column; justify-content: center;
  position: relative;
}
.ps-right::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 30%, rgba(107,143,219,0.15), transparent 60%);
}
.ps-label {
  font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 2px; margin-bottom: 20px;
}
.ps-left .ps-label { color: rgba(255,255,255,0.4); }
.ps-right .ps-label { color: rgba(255,255,255,0.6); position: relative; z-index: 1; }
.ps-left h3 { color: var(--white); font-size: 1.6rem; font-weight: 800; margin-bottom: 28px; font-family: var(--font-display); }
.ps-right h3 { color: var(--white); font-size: 1.6rem; font-weight: 800; margin-bottom: 28px; font-family: var(--font-display); position: relative; z-index: 1; }
.ps-list { list-style: none; position: relative; z-index: 1; }
.ps-list li {
  display: flex; align-items: flex-start; gap: 12px;
  margin-bottom: 18px; font-size: 0.95rem; line-height: 1.5;
}
.ps-left .ps-list li { color: rgba(255,255,255,0.65); }
.ps-right .ps-list li { color: rgba(255,255,255,0.85); }
.ps-icon-bad {
  flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%;
  background: rgba(239,68,68,0.1); display: flex; align-items: center; justify-content: center;
  color: #EF4444; font-size: 0.8rem; font-weight: 700; margin-top: 2px;
}
.ps-icon-good {
  flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%;
  background: rgba(74,222,128,0.15); display: flex; align-items: center; justify-content: center;
  color: #4ade80; font-size: 0.8rem; font-weight: 700; margin-top: 2px;
}

/* ===== FEATURES / BENTO ===== */
.features-section {
  background: var(--navy-950); padding: 120px 0;
  position: relative; overflow: hidden;
}
.features-section::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(59,95,212,0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 30%, rgba(107,143,219,0.06) 0%, transparent 50%);
}
.features-section > .container { position: relative; z-index: 2; }
.features-section .section-eyebrow, .features-section .section-title { text-align: center; }
.features-section .section-eyebrow { background: rgba(59,95,212,0.12); border-color: rgba(107,143,219,0.2); color: var(--blue-300); }
.features-section .section-title { margin-bottom: 56px; color: var(--white); }
.features-section .section-sub { color: rgba(255,255,255,0.5); }
.bento-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
}
.bento-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px; overflow: hidden;
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out), border-color 0.4s;
}
.bento-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(6,10,31,0.3), 0 0 40px rgba(59,95,212,0.06);
  border-color: rgba(107,143,219,0.2);
}
.bento-header {
  position: relative; padding: 32px 28px 28px; min-height: 100px;
  display: flex; align-items: flex-start; justify-content: space-between;
  overflow: hidden;
}
.bento-header-gradient-a { background: linear-gradient(135deg, var(--blue-900), var(--blue-700)); }
.bento-header-gradient-b { background: linear-gradient(135deg, #1a1a4e, var(--blue-800)); }
.bento-header-gradient-c { background: linear-gradient(135deg, var(--blue-800), var(--blue-600)); }
.bento-header-gradient-d { background: linear-gradient(135deg, #0f1940, var(--blue-700)); }
.bento-header-icon { width: 40px; height: 40px; fill: rgba(255,255,255,0.8); }
.bento-header-badge {
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1px; padding: 5px 12px; border-radius: 20px;
  background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.15);
}
.bento-body { padding: 28px; }
.bento-title { font-size: 1.15rem; font-weight: 800; color: var(--white); margin-bottom: 10px; font-family: var(--font-display); }
.bento-desc { font-size: 0.9rem; color: rgba(255,255,255,0.55); line-height: 1.65; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; background: var(--blue-700); color: var(--white);
  border: none; border-radius: 12px; font-size: 0.95rem; font-weight: 700;
  text-decoration: none; font-family: var(--font-body);
  transition: all 0.3s var(--ease-out);
}
.btn-primary:hover {
  background: var(--blue-600); box-shadow: 0 8px 24px rgba(27,42,138,0.25);
  transform: translateY(-2px);
}

/* ===== BRAND STATEMENT ===== */
.brand-statement {
  background: var(--blue-900); padding: 120px 24px; text-align: center;
  position: relative; overflow: hidden;
}
.brand-bg-icon {
  position: absolute; width: 500px; height: 500px;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  background: url('White 1 Icon.png') center/contain no-repeat;
  opacity: 0.03; pointer-events: none;
}
.brand-statement::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 60% 40%, rgba(59,95,212,0.12), transparent 60%);
}
.brand-statement-text {
  position: relative; z-index: 2;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900; line-height: 1.1;
  color: var(--white); max-width: 800px; margin: 0 auto 20px;
  letter-spacing: -0.02em;
}
.brand-statement-text span { color: var(--blue-300); }
.brand-statement-sub {
  position: relative; z-index: 2;
  font-size: 1.1rem; color: rgba(255,255,255,0.5);
  max-width: 560px; margin: 0 auto 36px; line-height: 1.7;
}
.btn-brand {
  position: relative; z-index: 2;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2); color: var(--white);
  border-radius: 12px; font-weight: 600; font-size: 0.95rem;
  text-decoration: none; font-family: var(--font-body);
  transition: all 0.3s var(--ease-out);
}
.btn-brand:hover {
  background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.35);
  transform: translateY(-2px);
}

/* ===== PROOF SECTION (Dark — logos + testimonials) ===== */
.proof-section {
  background: var(--navy-950); padding: 120px 0 100px;
  position: relative; overflow: hidden;
}
.proof-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(59,95,212,0.08), transparent 60%);
}
.proof-section .container { position: relative; z-index: 2; text-align: center; }
.proof-section .client-ticker {
  background: transparent; border: none; padding: 48px 0;
}
.proof-section .client-ticker-label { color: rgba(255,255,255,0.3); }
.proof-section .client-ticker::before { background: linear-gradient(90deg, var(--navy-950), transparent); }
.proof-section .client-ticker::after { background: linear-gradient(90deg, transparent, var(--navy-950)); }
.proof-section .client-logo img {
  filter: brightness(0) invert(1); opacity: 0.35;
}
.proof-section .client-logo img:hover { opacity: 0.7; }
.proof-section .testimonial-grid { margin-top: 48px; }
.proof-section .testimonial-card {
  background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.08);
  border-left: 4px solid var(--blue-500);
}
.proof-section .testimonial-card:hover {
  background: rgba(255,255,255,0.07);
  border-left-color: var(--blue-400);
}
.proof-section .t-quote-mark { color: var(--blue-400); }
.proof-section .testimonial-card blockquote { color: rgba(255,255,255,0.8); }
.proof-section .t-source { color: var(--blue-300); }

/* ===== CLIENT LOGO TICKER ===== */
.client-ticker {
  padding: 64px 0; overflow: hidden; position: relative;
  border-top: 1px solid var(--gray-200); border-bottom: 1px solid var(--gray-200);
  background: var(--white);
}
.client-ticker-label {
  text-align: center; font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px;
  color: var(--gray-400); margin-bottom: 28px;
}
.client-ticker::before, .client-ticker::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2;
}
.client-ticker::before { left: 0; background: linear-gradient(90deg, var(--white), transparent); }
.client-ticker::after { right: 0; background: linear-gradient(90deg, transparent, var(--white)); }
.client-track {
  display: flex; gap: 64px; align-items: center; width: max-content;
  animation: clientScroll 50s linear infinite;
}
.client-logo img {
  height: 72px; width: auto; object-fit: contain;
  filter: grayscale(20%); opacity: 0.75;
  transition: filter 0.4s var(--ease-out), opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out);
}
.client-logo img:hover { filter: grayscale(0%); opacity: 1; transform: scale(1.08); }
@keyframes clientScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== TESTIMONIALS ===== */
.testimonials { background: var(--white); padding: 120px 0; }
.testimonial-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.testimonial-card {
  background: var(--blue-50); border-radius: 20px; padding: 36px 32px;
  border-left: 4px solid var(--blue-600); position: relative;
  transition: all 0.4s var(--ease-out);
}
.testimonial-card:hover {
  border-left-color: var(--blue-400);
  box-shadow: 0 8px 32px rgba(27,42,138,0.1);
  transform: translateY(-4px);
}
.t-quote-mark {
  font-size: 3.5rem; font-family: Georgia, serif;
  color: var(--accent-500); line-height: 1; margin-bottom: 12px;
}
.testimonial-card blockquote {
  font-size: 1rem; color: var(--gray-700); line-height: 1.75;
  font-style: italic; margin-bottom: 16px;
}
.t-source { font-size: 0.85rem; font-weight: 700; color: var(--blue-700); }

/* ===== VIDEO ===== */
.video-section { background: var(--surface-light); padding: 120px 0; text-align: center; }
.video-section .section-title { color: var(--gray-900); }
.video-section .section-sub { color: var(--gray-500); }
.video-frame {
  max-width: 900px; margin: 0 auto; position: relative; border-radius: 20px;
  box-shadow: 0 20px 60px rgba(13,21,71,0.12);
  overflow: hidden; border: 1px solid var(--gray-200);
}
.video-frame-inner { padding-bottom: 56.25%; height: 0; position: relative; }
.video-frame-inner iframe {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
}

/* ===== STATS ===== */
.stats-section {
  background: var(--blue-900); padding: 72px 0; text-align: center;
  position: relative; overflow: hidden;
}
.stats-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(255,255,255,0.04), transparent 60%);
}
.stats-section::after {
  content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  opacity: 0.03; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
  position: relative; z-index: 2;
}
.stat-number { font-size: clamp(2.5rem, 4vw, 3.5rem); font-weight: 800; color: var(--white); font-family: var(--font-display); }
.stat-label { font-size: 0.85rem; color: rgba(255,255,255,0.6); margin-top: 4px; }
.stats-section.stats-light { background: var(--navy-900); border-bottom: 1px solid rgba(255,255,255,0.06); }
.stats-section.stats-light::before, .stats-section.stats-light::after { display: none; }
.stats-section.stats-light .stat-number { color: var(--white); }
.stats-section.stats-light .stat-label { color: rgba(255,255,255,0.5); }

/* ===== LENDTOPIA ===== */
.lendtopia-section {
  background: linear-gradient(135deg, var(--blue-900), var(--blue-700));
  padding: 120px 0; text-align: center;
  position: relative; overflow: hidden;
}
.lendtopia-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 60% 40%, rgba(107,143,219,0.08), transparent 60%);
}
.lendtopia-content { position: relative; z-index: 1; }
.lendtopia-label {
  font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 800;
  font-family: var(--font-display);
  background: linear-gradient(90deg, var(--blue-300), var(--white));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; margin-bottom: 16px;
}
.lendtopia-meta { color: rgba(255,255,255,0.7); font-size: 1.1rem; font-weight: 500; margin-bottom: 16px; }
.lendtopia-desc { color: rgba(255,255,255,0.5); font-size: 1rem; max-width: 520px; margin: 0 auto 36px; line-height: 1.7; }
.btn-lendtopia {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; background: var(--white); color: var(--blue-700);
  border-radius: 12px; font-weight: 700; text-decoration: none; font-family: var(--font-body);
  transition: all 0.3s var(--ease-out);
}
.btn-lendtopia:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.2); transform: translateY(-2px); }
.btn-lendtopia:active { transform: translateY(0) scale(0.98); }

/* ===== FINAL CTA ===== */
.final-cta {
  background: var(--navy-900); padding: 120px 0; text-align: center;
  position: relative; overflow: hidden;
}
.final-cta::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 80%, rgba(59,95,212,0.1), transparent 60%);
}
.final-cta-content { position: relative; z-index: 2; }
.final-cta h2 {
  font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 900;
  font-family: var(--font-display);
  color: var(--white); margin-bottom: 16px; letter-spacing: -0.02em;
}
.final-cta-sub { color: rgba(255,255,255,0.5); font-size: 1.05rem; max-width: 560px; margin: 0 auto 48px; line-height: 1.7; }
.cta-form {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px;
  max-width: 520px; margin: 0 auto 24px;
}
.cta-form input {
  padding: 14px 18px; border: 1px solid rgba(255,255,255,0.12); border-radius: 12px;
  background: rgba(255,255,255,0.06); font-size: 0.95rem; font-family: var(--font-body);
  color: var(--white); outline: none; transition: border-color 0.3s var(--ease-out);
}
.cta-form input::placeholder { color: rgba(255,255,255,0.3); }
.cta-form input:focus { border-color: var(--blue-500); box-shadow: 0 0 0 3px rgba(59,95,212,0.2); }
.btn-submit {
  grid-column: 1 / -1; padding: 14px;
  background: var(--blue-500); color: var(--white); border: none; border-radius: 12px;
  font-size: 0.95rem; font-weight: 700; cursor: pointer; font-family: var(--font-body);
  transition: all 0.3s var(--ease-out);
}
.btn-submit:hover {
  background: var(--blue-400); box-shadow: 0 6px 24px rgba(59,95,212,0.35);
  transform: translateY(-1px);
}
.btn-submit:active { transform: translateY(0) scale(0.98); }
.final-contact { color: rgba(255,255,255,0.4); font-size: 0.9rem; margin-top: 16px; }
.final-contact a { color: var(--blue-300); text-decoration: none; font-weight: 600; }

/* Form states — colors adapt to light/dark via currentColor */
.form-success {
  background: rgba(59,95,212,0.12); border: 1px solid rgba(59,95,212,0.35);
  border-radius: 12px; padding: 24px; margin: 0 auto; max-width: 520px;
  color: var(--blue-700); text-align: center;
}
.form-success h3 { color: inherit; font-family: var(--font-display); font-size: 1.2rem; margin-bottom: 8px; }
.form-success p { color: inherit; opacity: 0.85; font-size: 0.95rem; }
.final-cta .form-success, .demo-section .form-success { color: var(--white); border-color: rgba(255,255,255,0.2); }
.final-cta .form-success p, .demo-section .form-success p { opacity: 0.7; }
.form-error { color: #dc2626; font-size: 0.85rem; margin-top: 8px; }
.final-cta .form-error, .demo-section .form-error { color: #f87171; }

/* ===== FOOTER ===== */
.footer {
  background: var(--navy-950); padding: 80px 0 36px; position: relative;
}
.footer::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(107,143,219,0.15), transparent);
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 48px;
  margin-bottom: 48px;
}
.footer-brand img { height: 36px; margin-bottom: 12px; }
.footer-brand .tagline {
  background: linear-gradient(90deg, var(--blue-300), var(--blue-200));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; font-size: 0.85rem; font-weight: 600; margin-bottom: 16px;
}
.footer-brand p { color: rgba(255,255,255,0.35); font-size: 0.8rem; line-height: 1.7; }
.footer h4 {
  color: rgba(255,255,255,0.3); font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 16px;
}
.footer ul { list-style: none; }
.footer li { margin-bottom: 10px; }
.footer a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 0.88rem; transition: color 0.2s var(--ease-out); }
.footer a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05); padding-top: 24px;
  text-align: center; color: rgba(255,255,255,0.25); font-size: 0.8rem;
}

/* ===== ANIMATIONS ===== */
.hero-enter {
  opacity: 0; transform: translateY(32px);
  animation: heroFadeIn 1s var(--ease-out) forwards;
}
.hero-enter-1 { animation-delay: 0.15s; }
.hero-enter-2 { animation-delay: 0.35s; }
.hero-enter-3 { animation-delay: 0.6s; }
.hero-enter-4 { animation-delay: 0.9s; }
@keyframes heroFadeIn { to { opacity: 1; transform: translateY(0); } }

.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.stagger-item {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.stagger-item.visible { opacity: 1; transform: translateY(0); }

/* ===== INNER PAGE HERO ===== */
.page-hero {
  min-height: 50vh; display: flex; align-items: center; justify-content: center;
  background: var(--blue-900); position: relative; overflow: hidden;
  padding: 120px 24px 80px; text-align: center;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 60% 40%, rgba(107,143,219,0.12), transparent 60%);
}
.page-hero::after {
  content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  opacity: 0.025; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
}
.page-hero .hero-content { position: relative; z-index: 5; max-width: 800px; }
.page-hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 4rem); font-weight: 900;
  font-family: var(--font-display);
  background: linear-gradient(135deg, var(--white) 0%, var(--blue-200) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; line-height: 1.08; margin-bottom: 24px;
  letter-spacing: -0.03em;
}
.page-hero .hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.12rem); color: rgba(255,255,255,0.5);
  max-width: 580px; margin: 0 auto 36px; line-height: 1.75; font-weight: 400;
}
.page-hero .page-hero-eyebrow {
  font-family: var(--font-display); font-weight: 700;
  font-size: 0.78rem; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--blue-300); margin-bottom: 20px;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px; border-radius: 999px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
}
.page-hero .btn-get-started {
  display: inline-block; padding: 14px 36px; border-radius: 12px;
  background: var(--blue-500); color: var(--white);
  font-weight: 700; font-size: 0.95rem; text-decoration: none;
  transition: all 0.3s var(--ease-out);
}
.page-hero .btn-get-started:hover {
  transform: translateY(-2px); box-shadow: 0 8px 24px rgba(59,95,212,0.35);
  background: var(--blue-400);
}

/* Legacy hero variants */
.hero-inner {
  min-height: 50vh; display: flex; align-items: center; justify-content: center;
  background: var(--blue-900); position: relative; overflow: hidden;
  padding: 120px 24px 80px; text-align: center;
}
.hero-inner .hero-content { position: relative; z-index: 5; max-width: 800px; }
.hero-inner h1 {
  font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 800;
  font-family: var(--font-display); color: var(--white); line-height: 1.15; margin-bottom: 20px;
}
.hero-inner .hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.15rem); color: rgba(255,255,255,0.7);
  max-width: 600px; margin: 0 auto; line-height: 1.7;
}
.hero-image-bg {
  min-height: 50vh; display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden; padding: 120px 24px 80px; text-align: center;
  background-size: cover; background-position: center;
}
.hero-image-bg::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,14,42,0.8) 0%, rgba(10,14,42,0.9) 100%);
}
.hero-image-bg .hero-content { position: relative; z-index: 5; max-width: 800px; }
.hero-image-bg h1 {
  font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 800;
  font-family: var(--font-display); color: var(--white); line-height: 1.15; margin-bottom: 20px;
}
.hero-image-bg .hero-eyebrow {
  font-size: 0.78rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 2.5px; color: var(--blue-300); margin-bottom: 16px;
}
.hero-image-bg .hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.15rem); color: rgba(255,255,255,0.7);
  max-width: 600px; margin: 0 auto; line-height: 1.7;
}

/* ===== FEATURES (inner pages) ===== */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px; padding: 36px 28px; position: relative; overflow: hidden;
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out), border-color 0.4s, background 0.4s;
}
.feature-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, rgba(107,143,219,0.4), rgba(59,95,212,0.6), rgba(107,143,219,0.4));
  opacity: 0; transition: opacity 0.4s;
}
.feature-card::after {
  content: ''; position: absolute; inset: 0; border-radius: 20px; pointer-events: none;
  background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, transparent 50%);
}
.feature-card:hover::before { opacity: 1; }
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(6,10,31,0.3), 0 0 40px rgba(59,95,212,0.08);
  border-color: rgba(107,143,219,0.2);
  background: rgba(255,255,255,0.06);
}
.card-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: rgba(59,95,212,0.15);
  border: 1px solid rgba(107,143,219,0.2);
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
}
.card-icon svg { width: 26px; height: 26px; fill: var(--blue-300); }
.feature-card h3 { color: var(--white); font-size: 1.08rem; font-weight: 800; margin-bottom: 10px; font-family: var(--font-display); }
.feature-card p { color: rgba(255,255,255,0.55); font-size: 0.88rem; line-height: 1.65; }

/* ===== PARTNERSHIP / TRUST CARDS ===== */
.partnership-section {
  background: var(--navy-950); padding: 120px 0;
  position: relative; overflow: hidden;
}
.partnership-section::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse at 50% 80%, rgba(59,95,212,0.08) 0%, transparent 50%);
}
.partnership-section > .container { position: relative; z-index: 2; }
.partnership-section .section-eyebrow { text-align: center; background: rgba(59,95,212,0.12); border-color: rgba(107,143,219,0.2); color: var(--blue-300); }
.partnership-section .section-title { text-align: center; margin-bottom: 16px; color: var(--white); }
.partnership-section .section-sub { text-align: center; max-width: 600px; margin: 0 auto 56px; color: rgba(255,255,255,0.5); }
.partnership-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.p-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px; padding: 36px 28px;
  border-top: 2px solid rgba(59,95,212,0.4);
  box-shadow: 0 4px 24px rgba(6,10,31,0.2); position: relative;
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  overflow: hidden;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out), border-color 0.4s;
}
.p-card::after {
  content: ''; position: absolute; inset: 0; border-radius: 20px; pointer-events: none;
  background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, transparent 50%);
}
.p-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(6,10,31,0.3), 0 0 40px rgba(59,95,212,0.08);
  border-color: rgba(107,143,219,0.25);
}
.p-card-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: rgba(59,95,212,0.15);
  border: 1px solid rgba(107,143,219,0.2);
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
}
.p-card-icon svg { width: 26px; height: 26px; fill: var(--blue-300); }
.p-card h3 { font-size: 1.1rem; font-weight: 800; color: var(--white); margin-bottom: 10px; font-family: var(--font-display); }
.p-card p { font-size: 0.88rem; color: rgba(255,255,255,0.55); line-height: 1.65; }
/* Legacy p-card side bar removed — replaced by glass shine effect */

/* ===== SECURITY ===== */
.security-section {
  background: var(--navy-950); padding: 80px 0; text-align: center;
  position: relative;
}
.security-section .section-title { color: var(--white); }
.security-section .security-sub { color: rgba(255,255,255,0.5); }
.sec-badges { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
.sec-pill {
  padding: 10px 20px; border-radius: 999px;
  background: rgba(59,95,212,0.1); border: 1px solid rgba(107,143,219,0.2);
  color: var(--blue-300); font-size: 0.82rem; font-weight: 600;
  display: flex; align-items: center; gap: 8px;
  transition: all 0.3s var(--ease-out);
}
.sec-pill svg { fill: var(--blue-300); }
.sec-pill:hover { box-shadow: 0 4px 16px rgba(27,42,138,0.12); border-color: var(--blue-300); transform: translateY(-2px); }
.sec-pill svg { width: 16px; height: 16px; fill: var(--blue-700); }

/* ===== INNER PAGE SECTIONS ===== */

/* Our Story */
.story-section {
  background: var(--navy-950); padding: 120px 0;
  position: relative; overflow: hidden;
}
.story-section::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse at 70% 50%, rgba(59,95,212,0.06) 0%, transparent 50%);
}
.story-section > .container { position: relative; z-index: 2; }
.story-section .section-eyebrow { background: rgba(59,95,212,0.12); border-color: rgba(107,143,219,0.2); color: var(--blue-300); }
.story-section .section-title { color: var(--white); }
.story-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 64px; align-items: center; }
.story-text { font-size: 1rem; color: rgba(255,255,255,0.6); line-height: 1.8; margin-bottom: 32px; }
.story-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.s-stat {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px; padding: 20px; text-align: center;
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
}
.s-stat-number { font-size: 1.5rem; font-weight: 800; color: var(--blue-300); font-family: var(--font-display); }
.s-stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.5); margin-top: 4px; }
.story-image-wrapper { position: relative; border-radius: 20px; overflow: hidden; box-shadow: 0 12px 40px rgba(0,0,0,0.08); }
.story-image-wrapper img { width: 100%; height: 480px; object-fit: cover; display: block; }
.story-image-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(10,14,42,0.85));
  padding: 40px 28px 28px;
}
.story-quote { font-size: 1.05rem; color: var(--white); font-style: italic; line-height: 1.5; opacity: 0.95; }

/* Team */
.team-section {
  background: var(--navy-950); padding: 120px 0;
  position: relative; overflow: hidden;
}
.team-section::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse at 50% 30%, rgba(59,95,212,0.06) 0%, transparent 50%);
}
.team-section > .container { position: relative; z-index: 2; }
.team-section .section-eyebrow { background: rgba(59,95,212,0.12); border-color: rgba(107,143,219,0.2); color: var(--blue-300); }
.team-section .section-title { color: var(--white); }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.team-card {
  text-align: center; padding: 32px 20px; border-radius: 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out), border-color 0.4s;
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(6,10,31,0.3);
  border-color: rgba(107,143,219,0.2);
}
.team-photo { width: 120px; height: 120px; border-radius: 50%; object-fit: cover; margin: 0 auto 16px; display: block; border: 2px solid rgba(107,143,219,0.25); }
.team-placeholder {
  width: 120px; height: 120px; border-radius: 50%;
  background: rgba(59,95,212,0.15); border: 1px solid rgba(107,143,219,0.2);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 16px;
  font-size: 1.8rem; font-weight: 800; color: var(--blue-300); font-family: var(--font-display);
}
.team-card h3 { font-size: 1.05rem; font-weight: 800; color: var(--white); margin-bottom: 4px; font-family: var(--font-display); }
.team-card .team-title { font-size: 0.85rem; font-weight: 600; color: var(--blue-300); margin-bottom: 12px; }
.team-card .team-bio { font-size: 0.85rem; color: rgba(255,255,255,0.5); line-height: 1.6; }

/* Owners */
.owners-section {
  background: var(--navy-950); padding: 120px 0;
  position: relative;
}
.owners-section .section-eyebrow { background: rgba(59,95,212,0.12); border-color: rgba(107,143,219,0.2); color: var(--blue-300); }
.owners-section .section-title { color: var(--white); }
.owners-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.owner-card {
  display: block; color: inherit; text-decoration: none;
  background: rgba(255,255,255,0.04); border-radius: 20px; padding: 32px 20px;
  border: 1px solid rgba(255,255,255,0.08);
  border-top: 2px solid rgba(59,95,212,0.3); text-align: center;
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
  transition: all 0.4s var(--ease-out);
}
.owner-card:hover { border-color: rgba(107,143,219,0.35); box-shadow: 0 16px 48px rgba(6,10,31,0.3); transform: translateY(-4px); }
.owner-card:hover .owner-card-logo { opacity: 1; }
.owner-card-logo { height: 120px; width: auto; max-width: 260px; object-fit: contain; margin: 0 auto 18px; display: block; filter: brightness(0) invert(1); opacity: 0.85; transition: opacity 0.3s var(--ease-out); }
.owner-card-placeholder { height: 120px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.owner-card-placeholder svg { width: 44px; height: 44px; fill: var(--blue-300); }
.owner-card h4 { font-size: 0.9rem; font-weight: 800; color: var(--white); margin-bottom: 2px; font-family: var(--font-display); }
.owner-card .owner-state { font-size: 0.75rem; color: var(--gray-500); font-weight: 500; }

/* Advisory Board */
.advisory-section {
  background: var(--navy-900); padding: 80px 0; text-align: center;
  position: relative;
}
.advisory-section .section-eyebrow { background: rgba(59,95,212,0.12); border-color: rgba(107,143,219,0.2); color: var(--blue-300); }
.advisory-section .section-title { color: var(--white); }
.advisory-content { max-width: 680px; margin: 0 auto; }
.advisory-content p { font-size: 1.05rem; color: rgba(255,255,255,0.6); line-height: 1.7; }

/* Advisory light variant — white background, dark text (contact page, etc.) */
.advisory-section.advisory-light { background: var(--white); }
.advisory-section.advisory-light .section-eyebrow { background: var(--blue-50); border-color: var(--blue-100); color: var(--blue-600); }
.advisory-section.advisory-light .section-title,
.advisory-section.advisory-light h2 { color: var(--gray-900); }
.advisory-section.advisory-light p { color: var(--gray-600); }

/* Solutions deep dives */
.feature-deep { padding: 120px 0; }
.feature-deep:nth-child(even) { background: var(--surface-light); }
.feature-deep:nth-child(odd) { background: var(--white); }
.feature-deep-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.feature-deep:nth-child(even) .feature-deep-grid { direction: rtl; }
.feature-deep:nth-child(even) .feature-deep-grid > * { direction: ltr; }
.feature-deep-icon {
  width: 72px; height: 72px; border-radius: 18px;
  background: linear-gradient(135deg, var(--blue-100), var(--blue-50));
  display: flex; align-items: center; justify-content: center; margin-bottom: 24px;
}
.feature-deep-icon svg { width: 36px; height: 36px; fill: var(--blue-700); }
.feature-deep h2 { font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 800; font-family: var(--font-display); color: var(--gray-900); margin-bottom: 16px; }
.feature-deep .feature-desc { font-size: 1rem; color: var(--gray-600); line-height: 1.8; margin-bottom: 24px; }
.feature-deep .feature-bullets { list-style: none; padding: 0; }
.feature-deep .feature-bullets li {
  display: flex; align-items: flex-start; gap: 10px;
  margin-bottom: 12px; font-size: 0.95rem; color: var(--gray-700);
}
.feature-deep .feature-bullets li::before {
  content: ''; flex-shrink: 0; width: 20px; height: 20px;
  background: var(--accent-500); border-radius: 50%; margin-top: 3px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='white' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
  background-size: 12px; background-repeat: no-repeat; background-position: center;
}
.feature-deep-visual { display: flex; align-items: center; justify-content: center; }
.feature-visual-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: 16px; padding: 32px; width: 100%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(13,21,71,0.06);
}
.feature-visual-card > svg { width: auto; height: auto; max-width: 100%; fill: none; }

/* CU logo grid */
.client-logo-grid-section {
  background: var(--navy-900); padding: 120px 0;
  position: relative;
}
.client-logo-grid-section .section-eyebrow { background: rgba(59,95,212,0.12); border-color: rgba(107,143,219,0.2); color: var(--blue-300); }
.client-logo-grid-section .section-title { color: var(--white); }
.client-logo-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; max-width: 1280px; margin: 0 auto; }
.client-logo-grid-card {
  background: rgba(255,255,255,0.05); border-radius: 16px; padding: 28px 20px;
  border: 1px solid rgba(255,255,255,0.06);
  border: 1px solid var(--gray-200);
  display: flex; align-items: center; justify-content: center; min-height: 160px;
  transition: all 0.4s var(--ease-out);
}
.client-logo-grid-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(13,21,71,0.08); }
.client-logo-grid-card img { height: 110px; width: auto; max-width: 220px; object-fit: contain; }

/* Pillars */
.pillars-section { background: var(--blue-900); padding: 100px 0; text-align: center; }
.pillars-section .section-eyebrow { color: var(--blue-300); background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.1); }
.pillars-section .section-title { color: var(--white); margin-bottom: 48px; }
.pillars-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.pillar-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px; padding: 32px 16px; text-align: center;
  transition: all 0.4s var(--ease-out);
}
.pillar-card:hover { background: rgba(255,255,255,0.08); transform: translateY(-6px); }
.pillar-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: linear-gradient(135deg, var(--accent-500), var(--accent-400));
  display: flex; align-items: center; justify-content: center; margin: 0 auto 16px;
}
.pillar-icon svg { width: 24px; height: 24px; fill: var(--white); }
.pillar-card h3 { font-size: 0.92rem; font-weight: 800; color: var(--white); font-family: var(--font-display); }

/* Partners */
.partner-ticker { background: var(--gray-50); padding: 56px 0; overflow: hidden; position: relative; }
.partner-ticker::before, .partner-ticker::after { content: ''; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2; }
.partner-ticker::before { left: 0; background: linear-gradient(90deg, var(--gray-50), transparent); }
.partner-ticker::after { right: 0; background: linear-gradient(90deg, transparent, var(--gray-50)); }
.partner-track { display: flex; gap: 56px; align-items: center; width: max-content; animation: partnerScrollReverse 40s linear infinite; }
.partner-logo img { height: 76px; width: auto; object-fit: contain; filter: grayscale(15%); opacity: 0.8; transition: all 0.4s var(--ease-out); }
.partner-logo img:hover { filter: grayscale(0%); opacity: 1; }
@keyframes partnerScrollReverse { 0% { transform: translateX(-50%); } 100% { transform: translateX(0); } }

.partner-tier { padding: 80px 0; }
.partner-tier:nth-child(odd) { background: var(--white); }
.partner-tier:nth-child(even) { background: var(--gray-50); }
.partner-tier h2 { color: var(--gray-900); text-align: center; margin-bottom: 16px; font-size: clamp(1.6rem, 2.5vw, 2rem); font-weight: 800; font-family: var(--font-display); }
.partner-tier .section-title { color: var(--gray-900); }
.partner-tier .section-sub { color: var(--gray-500); }
.partner-tier-label { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 12px; text-align: center; }
.partner-tier-label.preferred { color: var(--accent-600); }
.partner-tier-label.standard { color: var(--blue-600); }
.partner-logos-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 24px; max-width: 1000px; margin: 0 auto; }
.partner-logo-card {
  background: var(--white); border-radius: 16px; padding: 24px 16px;
  border: 1px solid var(--gray-200);
  box-shadow: 0 2px 8px rgba(13,21,71,0.05);
  display: flex; align-items: center; justify-content: center; min-height: 80px;
  transition: all 0.4s var(--ease-out);
}
.partner-logo-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.06); }
.partner-logo-card.preferred-card { border-top: 3px solid var(--accent-500); background: var(--accent-100); }
.partner-logo-card img { max-height: 48px; max-width: 100%; object-fit: contain; }

.marketplace-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.marketplace-card {
  background: var(--white); border-radius: 20px; padding: 32px 24px;
  border: 1px solid var(--gray-200);
  box-shadow: 0 4px 16px rgba(13,21,71,0.06);
  transition: all 0.4s var(--ease-out);
}
.marketplace-card:hover { transform: translateY(-6px); box-shadow: 0 8px 32px rgba(13,21,71,0.1); border-color: var(--blue-200); }
.marketplace-card.preferred-tier { border-top: 4px solid var(--accent-500); }
.marketplace-card.standard-tier { border-top: 4px solid var(--blue-500); }
.marketplace-card h3 { font-size: 1.12rem; font-weight: 800; font-family: var(--font-display); color: var(--gray-900); margin-bottom: 8px; }
.marketplace-card .tier-badge {
  display: inline-block; font-size: 0.68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  padding: 4px 12px; border-radius: 20px; margin-bottom: 12px;
}
.marketplace-card .tier-badge.preferred { background: var(--accent-100); color: var(--accent-600); }
.marketplace-card .tier-badge.standard { background: var(--blue-50); color: var(--blue-600); }
.marketplace-card p { font-size: 0.88rem; color: var(--gray-600); line-height: 1.65; }

.become-partner { background: var(--navy-950); padding: 120px 0; text-align: center; }
.become-partner .section-eyebrow { background: rgba(59,95,212,0.12); border-color: rgba(107,143,219,0.2); color: var(--blue-300); }
.become-partner .section-title { color: var(--white); }
.become-partner .section-sub { color: rgba(255,255,255,0.5); }

/* Blog */
.blog-section { background: var(--navy-950); padding: 120px 0; border-top: 1px solid rgba(255,255,255,0.06); }
.blog-section .section-eyebrow { background: rgba(59,95,212,0.12); border-color: rgba(107,143,219,0.2); color: var(--blue-300); }
.blog-section .section-title { color: var(--white); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card {
  background: rgba(255,255,255,0.04); border-radius: 20px; padding: 28px 24px;
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--gray-200); box-shadow: 0 2px 12px rgba(13,21,71,0.04);
  display: flex; flex-direction: column;
  transition: all 0.4s var(--ease-out);
}
.blog-card:hover { border-color: var(--blue-300); box-shadow: 0 8px 32px rgba(27,42,138,0.1); transform: translateY(-4px); }
.blog-card:hover h3 { color: var(--blue-700); }
.blog-card-meta { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--gray-500); margin-bottom: 12px; }
.blog-card h3 { font-size: 1.12rem; font-weight: 800; font-family: var(--font-display); color: var(--gray-900); line-height: 1.35; margin-bottom: 12px; transition: color 0.3s var(--ease-out); }
.blog-card p { font-size: 0.88rem; color: var(--gray-600); line-height: 1.65; flex-grow: 1; margin-bottom: 16px; }
.blog-card a.blog-read-more { font-size: 0.88rem; font-weight: 700; color: var(--blue-700); text-decoration: none; align-self: flex-start; }

/* Events Calendar */
.events-calendar { padding: 80px 0; background: var(--navy-950); }
.events-calendar .section-eyebrow { background: rgba(59,95,212,0.12); border-color: rgba(107,143,219,0.2); color: var(--blue-300); }
.events-calendar .section-title { color: var(--white); }
.calendar-wrapper { max-width: 720px; margin: 0 auto; background: rgba(255,255,255,0.04); border-radius: 20px; border: 1px solid rgba(255,255,255,0.08); box-shadow: 0 4px 20px rgba(6,10,31,0.2); overflow: hidden; backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); }
.calendar-nav { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; background: linear-gradient(135deg, var(--blue-900), var(--blue-700)); }
.calendar-month-label { font-size: 1.2rem; font-weight: 800; color: var(--white); font-family: var(--font-display); margin: 0; }
.calendar-arrow { background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.2); color: var(--white); width: 36px; height: 36px; border-radius: 8px; font-size: 1.1rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.2s; }
.calendar-arrow:hover { background: rgba(255,255,255,0.25); }
.calendar-grid { display: grid; grid-template-columns: repeat(7, 1fr); }
.calendar-day-header { padding: 12px 4px; text-align: center; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--gray-400); background: var(--gray-50); border-bottom: 1px solid var(--gray-200); }
.calendar-cell { padding: 10px 4px; text-align: center; min-height: 52px; font-size: 0.88rem; color: var(--gray-600); border-bottom: 1px solid var(--gray-100); border-right: 1px solid var(--gray-100); position: relative; transition: background 0.15s; }
.calendar-cell:nth-child(7n) { border-right: none; }
.calendar-cell.empty { background: var(--gray-50); color: transparent; }
.calendar-cell.today { font-weight: 800; color: var(--blue-700); }
.calendar-cell.has-event { cursor: pointer; font-weight: 800; color: var(--blue-700); }
.calendar-cell.has-event::after { content: ''; position: absolute; bottom: 6px; left: 50%; transform: translateX(-50%); width: 6px; height: 6px; border-radius: 50%; }
.calendar-cell.has-event.webinar-dot::after { background: var(--blue-500); }
.calendar-cell.has-event.conference-dot::after { background: var(--accent-500); }
.calendar-cell.has-event:hover { background: var(--blue-50); }
.calendar-cell.has-event.active-day { background: var(--blue-50); }
.calendar-event-detail { padding: 24px; border-top: 1px solid var(--gray-200); background: var(--gray-50); animation: calDetailFade 0.25s ease; }
.calendar-event-detail h4 { font-size: 1.05rem; font-weight: 800; font-family: var(--font-display); color: var(--gray-900); margin-bottom: 4px; }
.calendar-event-detail .cal-event-meta { font-size: 0.8rem; color: var(--gray-500); margin-bottom: 8px; }
.calendar-event-detail p { font-size: 0.9rem; color: var(--gray-600); line-height: 1.6; }
@keyframes calDetailFade { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }

.events-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.event-card {
  background: rgba(255,255,255,0.04); border-radius: 20px; padding: 28px 24px;
  border: 1px solid rgba(255,255,255,0.08);
  border: 1px solid var(--gray-200); box-shadow: 0 2px 12px rgba(13,21,71,0.04);
  display: flex; gap: 20px; transition: all 0.4s var(--ease-out);
}
.event-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.06); }
.event-date-badge {
  flex-shrink: 0; width: 64px; height: 64px; border-radius: 12px;
  background: var(--blue-900);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: var(--white); text-align: center;
}
.event-date-badge .event-month { font-size: 0.62rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.event-date-badge .event-day { font-size: 1.5rem; font-weight: 800; line-height: 1; font-family: var(--font-display); }
.event-info h3 { font-size: 1.02rem; font-weight: 800; color: var(--gray-900); font-family: var(--font-display); margin-bottom: 4px; }
.event-info .event-meta { font-size: 0.78rem; color: var(--gray-500); margin-bottom: 8px; }
.event-info p { font-size: 0.88rem; color: var(--gray-600); line-height: 1.6; }
.event-type-badge { display: inline-block; font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; padding: 3px 10px; border-radius: 20px; margin-bottom: 8px; }

/* Testimonial scroller (credit-unions page) */
.testimonial-scroller {
  position: relative; overflow: hidden; padding: 96px 0;
  background: var(--navy-950);
}
.testimonial-scroller .section-eyebrow { background: rgba(59,95,212,0.12); border-color: rgba(107,143,219,0.2); color: var(--blue-300); }
.testimonial-scroller .section-title { color: var(--white); }
.testimonial-scroll-track { display: flex; gap: 32px; width: max-content; animation: testimonialScroll 40s linear infinite; }
.testimonial-scroll-track:hover { animation-play-state: paused; }
@keyframes testimonialScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .hero-enter { opacity: 1; transform: none; }
  .stagger-item { opacity: 1; transform: none; }
  .reveal { opacity: 1; transform: none; }
  .tile { opacity: 1; transform: none; }
  .logo-piece { display: none; }
  .logo-ring { display: none; }
  .logo-center { opacity: 0.12; transform: translate(-50%, -50%) scale(1); }
  .hero-anim { opacity: 1; transform: none; }
  /* p-card glass shine — no media override needed */
}

/* ===== SOLUTIONS PAGE — Bold, distinctive cards ===== */
.sol-types {
  padding: 120px 0; background: var(--navy-950);
  position: relative; overflow: hidden;
}
.sol-types::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse at 30% 60%, rgba(59,95,212,0.06) 0%, transparent 50%);
}
.sol-types > .container { position: relative; z-index: 2; }
.sol-types .section-eyebrow { background: rgba(59,95,212,0.12); border-color: rgba(107,143,219,0.2); color: var(--blue-300); }
.sol-types .section-title { color: var(--white); }
.sol-types .section-sub { color: rgba(255,255,255,0.5); }
.sol-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
  max-width: 1000px; margin: 0 auto;
}
.sol-card {
  position: relative; padding: 36px 32px 36px 100px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px; overflow: hidden;
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  transition: all 0.4s var(--ease-out);
}
.sol-card::after {
  content: ''; position: absolute; inset: 0; border-radius: 20px; pointer-events: none;
  background: linear-gradient(135deg, rgba(255,255,255,0.04) 0%, transparent 50%);
}
.sol-card:hover {
  border-color: rgba(107,143,219,0.25);
  box-shadow: 0 16px 48px rgba(6,10,31,0.3), 0 0 30px rgba(59,95,212,0.06);
  transform: translateY(-4px);
  background: rgba(255,255,255,0.05);
}
.sol-card-number {
  position: absolute; top: 28px; left: 28px;
  font-family: var(--font-display); font-weight: 900; font-size: 2.2rem;
  color: rgba(107,143,219,0.15); line-height: 1; letter-spacing: -0.03em;
  user-select: none;
}
.sol-card:hover .sol-card-number { color: rgba(107,143,219,0.25); }
.sol-card-content h3 {
  font-family: var(--font-display); font-weight: 800; font-size: 1.15rem;
  color: var(--white); margin-bottom: 8px;
}
.sol-card-content p { font-size: 0.88rem; color: rgba(255,255,255,0.55); line-height: 1.65; }
.sol-card-tag {
  position: absolute; top: 16px; right: 16px;
  font-size: 0.65rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.5px; padding: 4px 12px; border-radius: 20px;
  background: var(--blue-500); color: var(--white);
}
.sol-card-lg { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1fr; padding: 48px 40px 48px 120px; }
.sol-card-lg .sol-card-number { font-size: 3rem; top: 40px; left: 40px; }
.sol-card-lg .sol-card-content h3 { font-size: 1.4rem; }
.sol-card-lg .sol-card-content p { font-size: 0.95rem; }
.sol-card-accent {
  background: rgba(59,95,212,0.08);
  border-color: rgba(59,95,212,0.2);
}
.sol-card-accent .sol-card-number { color: rgba(59,95,212,0.2); }
.sol-card-accent:hover .sol-card-number { color: rgba(59,95,212,0.3); }
.sol-card-accent .sol-card-content h3 { color: var(--white); }
.sol-card-accent .sol-card-content p { color: rgba(255,255,255,0.6); }
.sol-card-accent:hover { border-color: rgba(59,95,212,0.35); box-shadow: 0 16px 48px rgba(6,10,31,0.3), 0 0 30px rgba(59,95,212,0.1); }

/* Solutions deep dive sections */
.sol-deep-section { background: var(--navy-900); }
.sol-deep-section > .container { text-align: center; padding-top: 120px; padding-bottom: 48px; }
.sol-deep-section .section-eyebrow { background: rgba(59,95,212,0.12); border-color: rgba(107,143,219,0.2); color: var(--blue-300); }
.sol-deep-section .section-title { color: var(--white); }
.sol-deep { padding: 100px 0; background: var(--navy-900); }
.sol-deep h2 { color: var(--white); }
.sol-deep p { color: rgba(255,255,255,0.6); }
.sol-deep-list li { color: rgba(255,255,255,0.6); }
.sol-deep-label { color: var(--blue-300); }
.sol-deep-dark { background: var(--navy-950); }
.sol-deep-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.sol-deep-grid-reverse { direction: rtl; }
.sol-deep-grid-reverse > * { direction: ltr; }
.sol-deep-text { }
.sol-deep-label {
  font-family: var(--font-display); font-weight: 700; font-size: 0.78rem;
  letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 16px;
  color: var(--blue-500);
}
.sol-deep-dark .sol-deep-label { color: var(--blue-300); }
.sol-deep h2 {
  font-family: var(--font-display); font-weight: 900; font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  color: var(--white); margin-bottom: 16px; letter-spacing: -0.02em;
}
.sol-deep-dark h2 { color: var(--white); }
.sol-deep p { font-size: 1rem; color: rgba(255,255,255,0.6); line-height: 1.8; margin-bottom: 28px; }
.sol-deep-list { list-style: none; padding: 0; }
.sol-deep-list li {
  display: flex; align-items: flex-start; gap: 12px;
  margin-bottom: 12px; font-size: 0.92rem; color: var(--gray-700);
}
.sol-deep-dark .sol-deep-list li { color: rgba(255,255,255,0.75); }
.sol-deep-list li::before {
  content: ''; flex-shrink: 0; width: 20px; height: 20px;
  background: var(--blue-500); border-radius: 50%; margin-top: 3px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='white' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
  background-size: 12px; background-repeat: no-repeat; background-position: center;
}

/* Deep dive visuals — unique per section */
.sol-deep-visual { display: flex; align-items: center; justify-content: center; }

/* Application mockup — looks like a form UI */
.sol-deep-mockup {
  width: 100%; max-width: 400px; border-radius: 16px; overflow: hidden;
  background: var(--white); border: 1px solid var(--gray-200);
  box-shadow: 0 16px 48px rgba(13,21,71,0.08);
}
.mockup-bar {
  display: flex; gap: 6px; padding: 14px 16px;
  background: var(--gray-50); border-bottom: 1px solid var(--gray-200);
}
.mockup-bar span {
  width: 10px; height: 10px; border-radius: 50%; background: var(--gray-200);
}
.mockup-bar span:first-child { background: #f87171; }
.mockup-bar span:nth-child(2) { background: #fbbf24; }
.mockup-bar span:nth-child(3) { background: #4ade80; }
.mockup-row { display: flex; gap: 12px; padding: 0 20px; margin: 16px 0; }
.mockup-field {
  height: 40px; border-radius: 8px; background: var(--gray-100);
  border: 1px solid var(--gray-200);
}
.mockup-btn {
  width: 140px; height: 40px; border-radius: 8px;
  background: var(--blue-500); margin: 8px 0 20px;
}

/* Decision tree mockup */
.sol-deep-decision {
  width: 100%; max-width: 380px; text-align: center;
}
.decision-node {
  display: inline-block; padding: 12px 24px; border-radius: 12px;
  font-family: var(--font-display); font-weight: 700; font-size: 0.85rem;
}
.decision-root {
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  color: var(--white); margin-bottom: 20px;
}
.decision-branch { position: relative; }
.decision-line {
  width: 2px; height: 24px; background: rgba(255,255,255,0.15);
  margin: 0 auto 12px;
}
.decision-split { display: flex; gap: 12px; justify-content: center; }
.decision-yes {
  background: rgba(74,222,128,0.15); border: 1px solid rgba(74,222,128,0.3);
  color: #4ade80;
}
.decision-yes small { display: block; font-weight: 500; margin-top: 4px; opacity: 0.8; font-size: 0.72rem; }
.decision-maybe {
  background: rgba(251,191,36,0.15); border: 1px solid rgba(251,191,36,0.3);
  color: #fbbf24;
}
.decision-maybe small { display: block; font-weight: 500; margin-top: 4px; opacity: 0.8; font-size: 0.72rem; }
.decision-no {
  background: rgba(248,113,113,0.15); border: 1px solid rgba(248,113,113,0.3);
  color: #f87171;
}
.decision-no small { display: block; font-weight: 500; margin-top: 4px; opacity: 0.8; font-size: 0.72rem; }

/* Integration hub visual */
.sol-deep-integrations {
  position: relative; width: 300px; height: 300px;
}
.integ-hub {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--blue-500); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800; font-size: 0.85rem;
  box-shadow: 0 4px 20px rgba(59,95,212,0.3);
  z-index: 2;
}
.integ-ring {
  position: absolute; inset: 0;
  border: 1px dashed var(--gray-200); border-radius: 50%;
  animation: integ-spin 40s linear infinite;
}
.integ-dot {
  position: absolute; top: 50%; left: 50%;
  transform: rotate(var(--angle)) translateX(130px) rotate(calc(-1 * var(--angle)));
  font-size: 0.72rem; font-weight: 700; color: var(--gray-700);
  background: var(--white); border: 1px solid var(--gray-200);
  padding: 6px 12px; border-radius: 20px; white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
@keyframes integ-spin { to { transform: rotate(360deg); } }

/* Shield / compliance visual */
.sol-deep-shield {
  text-align: center; color: rgba(255,255,255,0.3);
}
.sol-deep-shield svg { margin-bottom: 20px; }
.shield-badges { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.shield-badges span {
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.5px; padding: 6px 14px; border-radius: 20px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.6);
}

/* Workflow section */
.sol-workflow {
  background: var(--blue-900); padding: 120px 0; text-align: center;
  position: relative; overflow: hidden;
}
.sol-workflow::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(59,95,212,0.1), transparent 60%);
}
.workflow-steps {
  display: flex; align-items: flex-start; justify-content: center; gap: 0;
  margin-top: 56px; position: relative; z-index: 2;
}
.workflow-step {
  text-align: center; max-width: 280px; padding: 0 20px;
}
.workflow-num {
  width: 64px; height: 64px; border-radius: 16px;
  background: var(--blue-500); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 900; font-size: 1.5rem;
  margin: 0 auto 20px;
  box-shadow: 0 4px 20px rgba(59,95,212,0.3);
}
.workflow-step h3 {
  font-family: var(--font-display); font-weight: 800; font-size: 1.15rem;
  color: var(--white); margin-bottom: 8px;
}
.workflow-step p { color: rgba(255,255,255,0.5); font-size: 0.88rem; line-height: 1.65; }
.workflow-connector {
  width: 60px; height: 2px; background: rgba(255,255,255,0.15);
  flex-shrink: 0; margin-top: 32px;
}

@media (max-width: 1024px) {
  .sol-grid { grid-template-columns: 1fr; }
  .sol-card-lg { grid-column: auto; grid-template-columns: 1fr; padding: 36px 32px 36px 100px; }
  .sol-deep-grid, .sol-deep-grid-reverse { grid-template-columns: 1fr; gap: 48px; direction: ltr; }
}
@media (max-width: 768px) {
  .sol-card { padding: 32px 24px 32px 80px; }
  .sol-card-number { font-size: 1.8rem; left: 20px; }
  .sol-card-lg .sol-card-number { font-size: 2.2rem; left: 20px; }
  .sol-card-lg { padding: 32px 24px 32px 80px; }
  .workflow-steps { flex-direction: column; align-items: center; gap: 24px; }
  .workflow-connector { width: 2px; height: 40px; margin: 0; }
  .sol-deep-integrations { width: 240px; height: 240px; }
  .integ-dot { transform: rotate(var(--angle)) translateX(100px) rotate(calc(-1 * var(--angle))); font-size: 0.65rem; padding: 4px 8px; }
}

/* ===== FOLD ANIMATION (used across many pages) ===== */
.fold-parent { perspective: 1200px; }
.fold-in {
  opacity: 0; transform: rotateX(-8deg) translateY(20px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.fold-in.visible { opacity: 1; transform: rotateX(0) translateY(0); }

/* ===== LENDTOPIA PAGE ===== */
.lendtopia-hero {
  min-height: 60vh; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--navy-900), var(--blue-800));
  position: relative; overflow: hidden;
  padding: 120px 24px 80px; text-align: center;
}
.lendtopia-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 40%, rgba(107,143,219,0.12), transparent 60%);
}
.lendtopia-hero::after {
  content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  opacity: 0.025; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
}
.lendtopia-hero .hero-content { position: relative; z-index: 5; max-width: 800px; }
.lendtopia-hero h1 {
  font-size: clamp(3rem, 7vw, 5rem); font-weight: 900;
  font-family: var(--font-display);
  background: linear-gradient(90deg, var(--blue-300), var(--white));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; line-height: 1.05; margin-bottom: 24px;
  letter-spacing: 0.05em;
}
.lendtopia-hero .hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.15rem); color: rgba(255,255,255,0.55);
  max-width: 600px; margin: 0 auto 24px; line-height: 1.75; font-weight: 400;
}
.lendtopia-hero .btn-lendtopia { position: relative; z-index: 5; }

.lendtopia-details {
  background: var(--navy-950); padding: 120px 0;
  position: relative;
}
.lendtopia-details .section-eyebrow { background: rgba(59,95,212,0.12); border-color: rgba(107,143,219,0.2); color: var(--blue-300); }
.lendtopia-details .section-title { color: var(--white); }
.lendtopia-info-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.lendtopia-info-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px; padding: 36px 28px;
  text-align: center; border-top: 2px solid rgba(59,95,212,0.4);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}
.lendtopia-info-card::after {
  content: ''; position: absolute; inset: 0; border-radius: 20px; pointer-events: none;
  background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, transparent 50%);
}
.lendtopia-info-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(6,10,31,0.3); }
.lendtopia-info-card h3 {
  font-size: 1.15rem; font-weight: 800; color: var(--white);
  font-family: var(--font-display); margin-bottom: 8px;
}
.lendtopia-info-card p { font-size: 0.9rem; color: rgba(255,255,255,0.55); line-height: 1.65; }
.info-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: rgba(59,95,212,0.15);
  border: 1px solid rgba(107,143,219,0.2);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.info-icon svg { width: 28px; height: 28px; fill: var(--blue-300); }

.lendtopia-speakers {
  background: var(--navy-950); padding: 120px 0;
  position: relative;
}
.lendtopia-speakers .section-eyebrow { background: rgba(59,95,212,0.12); border-color: rgba(107,143,219,0.2); color: var(--blue-300); }
.lendtopia-speakers .section-title { color: var(--white); }
.speakers-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.speaker-card {
  text-align: center; padding: 32px 20px; border-radius: 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}
.speaker-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(6,10,31,0.3); }
.speaker-card h3 {
  font-size: 1.05rem; font-weight: 800; color: var(--white);
  font-family: var(--font-display); margin-bottom: 4px;
}
.speaker-title { font-size: 0.85rem; font-weight: 500; color: rgba(255,255,255,0.5); }
.speaker-placeholder {
  width: 100px; height: 100px; border-radius: 50%; background: rgba(59,95,212,0.2); border: 1px solid rgba(107,143,219,0.2);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; font-size: 1.6rem; font-weight: 800;
  color: var(--white); font-family: var(--font-display);
}

/* ===== CONTACT PAGE ===== */
.contact-routing { padding: 80px 0; background: var(--white); }
.contact-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 32px; }
.contact-route-card {
  background: rgba(255,255,255,0.04) !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  border-radius: 20px !important; padding: 40px 32px; text-align: center; cursor: pointer;
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  transition: all 0.4s var(--ease-out);
}
.contact-route-card::after {
  content: ''; position: absolute; inset: 0; border-radius: 20px; pointer-events: none;
  background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, transparent 50%);
}
.contact-route-card:hover {
  border-color: rgba(107,143,219,0.25) !important; transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(6,10,31,0.3);
  background: rgba(255,255,255,0.06) !important;
}
.contact-route-card.selected {
  border-color: rgba(59,95,212,0.4) !important;
  background: rgba(59,95,212,0.08) !important;
  box-shadow: 0 4px 24px rgba(59,95,212,0.15);
}
.contact-route-card h3 { color: var(--white) !important; }
.contact-route-card p { color: rgba(255,255,255,0.5) !important; }
.route-icon { margin-bottom: 20px; }

/* Final CTA light variant (contact page uses light bg) */
.final-cta-light { background: var(--surface-light) !important; }
.final-cta-light::before { display: none; }
.final-cta-light h2 { color: var(--gray-900); }
.final-cta-light .section-eyebrow { background: var(--blue-50); border-color: var(--blue-100); color: var(--blue-600); }
.final-cta-light .final-cta-sub { color: var(--gray-500); }
.final-cta-light .cta-form input,
.final-cta-light .cta-form textarea {
  background: var(--white); border-color: var(--gray-200); color: var(--gray-900);
}
.final-cta-light .cta-form input::placeholder,
.final-cta-light .cta-form textarea::placeholder { color: var(--gray-400); }
.final-cta-light .cta-form input:focus,
.final-cta-light .cta-form textarea:focus { border-color: var(--blue-500); box-shadow: 0 0 0 3px rgba(59,95,212,0.1); }
.final-cta-light .final-contact { color: var(--gray-500); }

/* ===== PRESS PAGE ===== */
.press-section { background: var(--navy-950); padding: 80px 0; }
.press-section .section-eyebrow { background: rgba(59,95,212,0.12); border-color: rgba(107,143,219,0.2); color: var(--blue-300); }
.press-section .section-title { color: var(--white); }
.press-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.press-card {
  background: rgba(255,255,255,0.04); border-radius: 20px; padding: 32px 28px;
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--gray-200); box-shadow: 0 2px 12px rgba(13,21,71,0.04);
  transition: all 0.4s var(--ease-out);
}
.press-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(13,21,71,0.08); border-color: var(--blue-200); }
.press-date {
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1px; color: var(--gray-400); margin-bottom: 10px; display: block;
}
.press-card h3 {
  font-size: 1.1rem; font-weight: 800; color: var(--white);
  font-family: var(--font-display); margin-bottom: 10px; line-height: 1.35;
}
.press-card p { font-size: 0.9rem; color: rgba(255,255,255,0.55); line-height: 1.65; margin-bottom: 16px; }
.press-link {
  font-size: 0.88rem; font-weight: 700; color: var(--blue-300);
  text-decoration: none; transition: color 0.2s var(--ease-out);
}
.press-link:hover { color: var(--white); }

/* ===== GATED DOWNLOADS ===== */
.gated-downloads { background: var(--navy-900); padding: 80px 0; }
.gated-downloads .section-eyebrow { background: rgba(59,95,212,0.12); border-color: rgba(107,143,219,0.2); color: var(--blue-300); }
.gated-downloads .section-title { color: var(--white); }
.downloads-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.download-card {
  background: rgba(255,255,255,0.04); border-radius: 20px; padding: 28px 24px;
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--gray-200);
  transition: all 0.4s var(--ease-out);
}
.download-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(13,21,71,0.08); }
.gated-download-overlay {
  position: fixed; inset: 0; background: rgba(10,14,42,0.7);
  z-index: 2000; display: none; align-items: center; justify-content: center;
}
.gated-download-overlay.active { display: flex; }
.gated-download-modal {
  background: var(--white); border-radius: 20px; padding: 48px 40px;
  max-width: 480px; width: 90%; position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.close-modal {
  position: absolute; top: 16px; right: 16px;
  background: none; border: none; font-size: 1.5rem; cursor: pointer;
  color: var(--gray-400); transition: color 0.2s;
}
.close-modal:hover { color: var(--gray-900); }

/* ===== SCHEDULE DEMO PAGE ===== */
.demo-section { background: var(--navy-950); padding: 80px 0; }
.demo-section .section-title { color: var(--white); }
.demo-section p { color: rgba(255,255,255,0.5); }
.demo-section .cta-form { text-align: left; }
.demo-section .cta-form input,
.demo-section .cta-form textarea {
  width: 100%; padding: 14px 18px; border: 1px solid var(--gray-200);
  border-radius: 12px; background: var(--white); font-size: 0.95rem;
  font-family: var(--font-body); color: var(--gray-900); outline: none;
  transition: border-color 0.3s var(--ease-out);
}
.demo-section .cta-form input::placeholder,
.demo-section .cta-form textarea::placeholder { color: var(--gray-400); }
.demo-section .cta-form input:focus,
.demo-section .cta-form textarea:focus { border-color: var(--blue-500); box-shadow: 0 0 0 3px rgba(59,95,212,0.1); }
.demo-section .cta-form textarea { resize: vertical; min-height: 100px; }
.demo-section .cta-form { display: flex; flex-direction: column; gap: 16px; }
.why-demo { background: var(--navy-900); padding: 80px 0; }
.why-demo .section-title { color: var(--white); }
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; }

/* ===== CREDIT UNIONS PAGE EXTRAS ===== */
.stat-item { text-align: center; }
.partnership-header { text-align: center; margin-bottom: 48px; }
.security-sub { color: var(--gray-500); font-size: 1rem; margin-bottom: 40px; max-width: 700px; margin-left: auto; margin-right: auto; }
.testimonial-author { font-size: 0.85rem; font-weight: 700; color: var(--blue-300); }
.testimonial-scroll-card {
  flex-shrink: 0; width: 400px;
  background: rgba(255,255,255,0.04); border-radius: 20px; padding: 36px 32px;
  border: 1px solid rgba(255,255,255,0.08);
  border-left: 2px solid rgba(59,95,212,0.4);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
}
.testimonial-scroll-card .t-quote-mark {
  font-size: 3rem; font-family: Georgia, serif;
  color: rgba(59,95,212,0.5); line-height: 1; margin-bottom: 12px;
}
.testimonial-scroll-card blockquote {
  font-size: 1rem; color: rgba(255,255,255,0.7); line-height: 1.75;
  font-style: italic; margin-bottom: 16px;
}
.testimonial-scroll-card .t-source,
.testimonial-scroll-card .testimonial-author { font-size: 0.85rem; font-weight: 700; color: var(--blue-300); }

/* ===== FOOTER SOCIAL ===== */
.footer-social {
  display: flex; gap: 12px; margin-top: 16px;
}
.footer-social a {
  color: rgba(255,255,255,0.4); transition: color 0.2s var(--ease-out);
}
.footer-social a:hover { color: var(--white); }

/* ===== RECORDING REQUEST (events page) ===== */
.recording-request { background: var(--navy-900); padding: 80px 0; text-align: center; }
.recording-request .section-eyebrow { background: rgba(59,95,212,0.12); border-color: rgba(107,143,219,0.2); color: var(--blue-300); }
.recording-request .section-title { color: var(--white); }
.recording-request p { color: rgba(255,255,255,0.5); }
.recording-request .cta-form input {
  background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.1); color: var(--white);
}
.recording-request .cta-form input::placeholder { color: var(--gray-400); }

/* ===== TEXTAREA (global) ===== */
textarea {
  width: 100%; padding: 14px 18px; border: 1px solid var(--gray-200);
  border-radius: 12px; background: var(--white); font-size: 0.95rem;
  font-family: var(--font-body); color: var(--gray-900); outline: none;
  resize: vertical; transition: border-color 0.3s var(--ease-out);
}
textarea::placeholder { color: var(--gray-400); }
textarea:focus { border-color: var(--blue-500); box-shadow: 0 0 0 3px rgba(59,95,212,0.1); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .hero-content { max-width: 100%; margin: 0 auto; }
  .hero h1 { font-size: clamp(2.4rem, 5vw, 3.5rem); }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-proof { justify-content: center; }
  .hero-tiles-wrap { min-height: 360px; }
  .hero-tiles { height: 360px; max-width: 440px; margin: 0 auto; }
  .tile-1 { width: 220px; }
  .tile-2 { width: 170px; }
  .tile-4 { width: 200px; }
  .tile-5 { width: 140px; left: 140px; }
  .bento-grid { grid-template-columns: 1fr; }
  .bento-span-2 { grid-column: span 1; }
  .problem-solution { grid-template-columns: 1fr; }
  .ps-left, .ps-right { padding: 48px 36px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .partnership-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .owners-grid { grid-template-columns: repeat(3, 1fr); }
  .pillars-grid { grid-template-columns: repeat(3, 1fr); }
  .feature-deep-grid { grid-template-columns: 1fr; }
  .feature-deep:nth-child(even) .feature-deep-grid { direction: ltr; }
  .story-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .client-logo-grid { grid-template-columns: repeat(4, 1fr); }
  .marketplace-grid { grid-template-columns: repeat(2, 1fr); }
  .partner-logos-grid { grid-template-columns: repeat(4, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .btn-get-started { display: none; }
  .hamburger { display: block; }
  .mobile-menu {
    position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
    background: rgba(10,14,42,0.98); backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 32px 24px; z-index: 999;
    opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity 0.3s var(--ease-out);
    overflow-y: auto;
  }
  .mobile-menu.active { display: block; opacity: 1; visibility: visible; pointer-events: auto; }
  .mobile-menu a {
    display: block; padding: 14px 0; color: rgba(255,255,255,0.8);
    font-size: 1.05rem; font-weight: 600; text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .mobile-menu a:hover { color: var(--white); }
  .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .hamburger.active span:nth-child(2) { opacity: 0; }
  .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

  .hero { padding: 100px 0 60px; min-height: auto; }
  .hero-grid { padding: 0 24px; }
  .hero-tiles-wrap { display: none; }
  .hero h1 { font-size: 2.2rem; }
  .logo-center { width: 80px; height: 80px; }
  .logo-piece { width: 30px !important; height: 30px !important; }
  .lp-1 { --sx: -150px; --sy: -120px; } .lp-2 { --sx: 140px; --sy: -100px; }
  .lp-3 { --sx: -120px; --sy: 100px; } .lp-4 { --sx: 160px; --sy: 80px; }
  .lp-5 { --sx: 0px; --sy: -160px; } .lp-6 { --sx: -180px; --sy: 10px; }
  .lp-7 { --sx: 80px; --sy: 140px; } .lp-8 { --sx: -60px; --sy: -170px; }
  .hero-proof { flex-wrap: wrap; gap: 16px; }
  .proof-divider { display: none; }
  .trust-bar-inner { gap: 24px; }
  .trust-bar-divider { display: none; }
  .trust-bar-item strong { font-size: 1.2rem; }
  .section-title { font-size: 1.8rem; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .owners-grid { grid-template-columns: repeat(2, 1fr); }
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .events-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .cta-form { grid-template-columns: 1fr; }
  .client-logo-grid { grid-template-columns: repeat(3, 1fr); }
  .partner-logos-grid { grid-template-columns: repeat(3, 1fr); }
  .marketplace-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .brand-statement { padding: 80px 24px; }
  .brand-statement-text { font-size: 1.8rem; }
  .lendtopia-info-grid { grid-template-columns: 1fr; }
  .speakers-grid { grid-template-columns: repeat(2, 1fr); }
  .press-grid { grid-template-columns: 1fr; }
  .downloads-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.8rem; }
  .hero-proof { flex-direction: column; align-items: flex-start; gap: 12px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn-hero-primary, .btn-hero-secondary { text-align: center; justify-content: center; }
  .trust-bar-inner { flex-direction: column; gap: 16px; }
  .team-grid { grid-template-columns: 1fr; }
  .owners-grid { grid-template-columns: 1fr; }
  .pillars-grid { grid-template-columns: 1fr; }
  .client-logo-grid { grid-template-columns: repeat(2, 1fr); }
  .partner-logos-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===== SITE IMAGES — Background layers ===== */

/* Interior page heroes — secondary */
.page-hero-bg-secondary {
  position: absolute; inset: 0; z-index: 0;
  background-image: url('site-images/secondary-hero.jpeg');
  background-size: cover;
  background-position: center;
  opacity: 0.3;
  pointer-events: none;
}

/* Interior page heroes — geometric (solutions, about, partners) */
.page-hero-bg-geometric {
  position: absolute; inset: 0; z-index: 0;
  background-image: url('site-images/homepagev3.jpeg');
  background-size: cover;
  background-position: center;
  opacity: 0.35;
  pointer-events: none;
}

/* Lendtopia hero — conference photo */
.page-hero-bg-lendtopia {
  position: absolute; inset: 0; z-index: 2;
  background-image: url('site-images/lentopia.png');
  background-size: cover;
  background-position: center top;
  opacity: 0.3;
  pointer-events: none;
}

/* Events hero — conference networking */
.page-hero-bg-events {
  position: absolute; inset: 0; z-index: 0;
  background-image: url('site-images/lendtopia-alt.png');
  background-size: cover;
  background-position: center;
  opacity: 0.25;
  pointer-events: none;
}

/* 404 page background */
.hero-bg-404 {
  position: absolute; inset: 0; z-index: 0;
  background-image: url('site-images/404.jpeg');
  background-size: cover;
  background-position: center;
  opacity: 0.4;
  pointer-events: none;
}

/* Trust badge image block */
.trust-badge-img {
  display: block;
  max-width: 800px;
  margin: 32px auto 0;
  border-radius: 16px;
}

/* Solutions UI mockup */
.sol-ui-mockup {
  display: block;
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}

/* Lendtopia inline conference photo */
.lendtopia-photo {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.2);
}

/* =========================================================
   V2 AESTHETIC UPGRADE — appended 2026-04-14
   Overrides applied last so they win on the cascade.
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;700;900&display=swap');

:root {
  /* Burnt orange accent system (v2) */
  --v2-accent-700: #C86A3F;
  --v2-accent-600: #D97642;
  --v2-accent-500: #E68B5C;
  --v2-accent-400: #F2A576;
  --v2-accent-300: #F7BF9F;
  --v2-accent-200: #FBD9C8;
  --v2-accent-100: #FDF4EF;

  /* Shadow tiers */
  --v2-shadow-subtle: 0 2px 8px rgba(13,21,71,0.06);
  --v2-shadow-standard: 0 4px 16px rgba(13,21,71,0.08), 0 1px 3px rgba(13,21,71,0.12);
  --v2-shadow-elevated: 0 12px 40px rgba(13,21,71,0.12), 0 4px 12px rgba(13,21,71,0.08), 0 1px 3px rgba(13,21,71,0.16);
}

/* === Typography — Space Grotesk for display === */
h1, .hero h1, .section-title, .hero-headline, .display-1 {
  font-family: 'Space Grotesk', 'Archivo', sans-serif;
  font-weight: 900;
  letter-spacing: -0.03em;
}
h2, .subsection-headline {
  font-family: 'Space Grotesk', 'Archivo', sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
}
h3 {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
}

/* === Orange accent application === */
.section-eyebrow, .hero-eyebrow, .eyebrow {
  color: var(--v2-accent-600) !important;
}
.hero-eyebrow .eyebrow-dot {
  background: var(--v2-accent-600) !important;
}

/* Stat numbers → orange */
.stat-number, .metric-value, .stat-value, .bento-stat-value,
.stat h3, .stat-num, .big-stat, .stat-card .num {
  color: var(--v2-accent-600) !important;
  font-family: 'Space Grotesk','Archivo',sans-serif;
  font-weight: 900;
}

/* Secondary CTAs → orange outline */
.btn-hero-secondary,
.btn-secondary,
a.btn-secondary {
  color: var(--v2-accent-600) !important;
  border: 2px solid var(--v2-accent-600) !important;
  background: transparent !important;
  transition: background-color .2s ease-out, color .2s ease-out, transform .2s ease-out;
}
.btn-hero-secondary:hover,
.btn-secondary:hover {
  background: var(--v2-accent-600) !important;
  color: #fff !important;
  transform: translateY(-2px);
}

/* Link hover accent (scoped — avoid header/footer/nav chrome) */
.container a:not(.btn-hero-primary):not(.btn-hero-secondary):not(.btn-get-started):not(.btn-primary):not(.btn-secondary):not(.nav-link):hover,
.section-intro a:hover,
article a:hover {
  color: var(--v2-accent-600);
}

/* Focus ring — orange */
*:focus-visible {
  outline: 3px solid var(--v2-accent-600) !important;
  outline-offset: 2px;
}

/* === Hero asymmetric split (homepage only) === */
.hero.hero-v2-split {
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
}
.hero.hero-v2-split::before {
  content:'';
  position:absolute; inset:0;
  background:
    radial-gradient(circle at 20% 30%, rgba(59,95,212,0.18) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(217,118,66,0.12) 0%, transparent 50%);
  pointer-events:none; z-index:1;
}
.hero-v2-split .hero-v2-container {
  position: relative; z-index: 3;
  width: 100%; max-width: 1360px; margin: 0 auto;
  padding: 8rem 2rem 6rem;
}
.hero-v2-split .hero-v2-grid {
  display: grid; grid-template-columns: 1.5fr 1fr;
  gap: 4rem; align-items: center;
}
.hero-v2-split .hero-v2-content { text-align: left; }
.hero-v2-split .hero-v2-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Archivo', sans-serif;
  font-weight: 600; font-size: .875rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--v2-accent-600);
  margin-bottom: 1.25rem;
  opacity: 0; transform: translateY(32px);
  animation: v2FadeInUp .8s cubic-bezier(.16,1,.3,1) .1s forwards;
}
.hero-v2-split .hero-v2-eyebrow::before {
  content:''; width: 24px; height: 2px; background: var(--v2-accent-600);
}
.hero-v2-split h1 {
  color: #fff;
  font-size: clamp(2.75rem, 5.5vw, 4.75rem);
  line-height: 1.05; margin: 0 0 1.25rem;
  opacity: 0; transform: translateY(32px);
  animation: v2FadeInUp .8s cubic-bezier(.16,1,.3,1) .25s forwards;
}
.hero-v2-split h1 .accent { color: var(--v2-accent-500); }
.hero-v2-split .hero-v2-sub {
  font-size: 1.25rem; line-height: 1.6;
  color: rgba(255,255,255,0.88);
  max-width: 580px; margin: 0 0 2rem;
  opacity: 0; transform: translateY(32px);
  animation: v2FadeInUp .8s cubic-bezier(.16,1,.3,1) .4s forwards;
}
.hero-v2-split .hero-v2-ctas {
  display: flex; gap: 1rem; flex-wrap: wrap;
  margin-bottom: 2.75rem;
  opacity: 0; transform: translateY(32px);
  animation: v2FadeInUp .8s cubic-bezier(.16,1,.3,1) .55s forwards;
}
.hero-v2-split .hero-v2-ctas .btn-hero-primary {
  background: var(--v2-accent-600);
  box-shadow: 0 8px 24px rgba(217,118,66,0.35);
}
.hero-v2-split .hero-v2-ctas .btn-hero-primary:hover {
  background: var(--v2-accent-700);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(217,118,66,0.45);
}
.hero-v2-split .hero-v2-ctas .btn-hero-secondary {
  color: #fff !important;
  border-color: rgba(255,255,255,0.4) !important;
}
.hero-v2-split .hero-v2-ctas .btn-hero-secondary:hover {
  background: rgba(255,255,255,0.1) !important;
  border-color: #fff !important;
}
.hero-v2-split .hero-v2-trustbar {
  opacity: 0;
  animation: v2FadeIn 1s ease-out .9s forwards;
}
.hero-v2-split .hero-v2-trustbar-label {
  font-size: .8rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: .9rem;
}
.hero-v2-split .hero-v2-trustbar-logos {
  display: flex; gap: 2rem; align-items: center; flex-wrap: wrap;
}
.hero-v2-split .hero-v2-trustbar-logos img {
  height: 28px; width: auto;
  opacity: 0.55;
  filter: grayscale(100%) brightness(2);
  transition: opacity .2s, filter .2s;
}
.hero-v2-split .hero-v2-trustbar-logos img:hover {
  opacity: 1;
  filter: grayscale(0%) brightness(1);
}

/* Stat card */
.hero-v2-split .hero-v2-visual {
  display: flex; justify-content: center; align-items: center;
}
.hero-v2-split .hero-v2-stat-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 20px;
  padding: 2.75rem 2rem;
  text-align: center;
  min-width: 300px;
  box-shadow: 0 12px 48px rgba(0,0,0,0.35);
  opacity: 0; transform: scale(.92);
  animation: v2ScaleIn .8s cubic-bezier(.16,1,.3,1) .7s forwards;
}
.hero-v2-split .hero-v2-stat-card .v2-stat-number {
  display: block;
  font-family: 'Space Grotesk','Archivo',sans-serif;
  font-weight: 900;
  font-size: clamp(3.5rem, 6vw, 5rem);
  line-height: 1;
  color: var(--v2-accent-500);
  letter-spacing: -0.04em;
}
.hero-v2-split .hero-v2-stat-card .v2-stat-label {
  display: block;
  font-weight: 600; color: #fff;
  margin-top: .75rem;
  font-size: 1.0625rem;
}
.hero-v2-split .hero-v2-stat-card .v2-stat-sub {
  color: rgba(255,255,255,0.65);
  font-size: .9rem; margin-top: .35rem;
}
.hero-v2-split .hero-v2-stat-card .v2-stat-divider {
  height: 1px; background: rgba(255,255,255,0.15);
  margin: 1.5rem 0;
}
.hero-v2-split .hero-v2-stat-card .v2-stat-mini {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
  text-align: center;
}
.hero-v2-split .hero-v2-stat-card .v2-stat-mini > div > strong {
  display: block;
  font-family: 'Space Grotesk','Archivo',sans-serif;
  font-weight: 800;
  color: #fff; font-size: 1.5rem;
}
.hero-v2-split .hero-v2-stat-card .v2-stat-mini > div > span {
  display: block;
  color: rgba(255,255,255,0.6);
  font-size: .78rem; letter-spacing: 0.05em;
  text-transform: uppercase; margin-top: 4px;
}

@media (max-width: 968px) {
  .hero-v2-split .hero-v2-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero-v2-split .hero-v2-content { text-align: center; }
  .hero-v2-split .hero-v2-eyebrow { justify-content: center; }
  .hero-v2-split .hero-v2-ctas { justify-content: center; }
  .hero-v2-split .hero-v2-stat-card { max-width: 340px; margin: 0 auto; }
}
@media (max-width: 640px) {
  .hero-v2-split .hero-v2-container { padding: 6rem 1.25rem 4rem; }
  .hero-v2-split .hero-v2-ctas { flex-direction: column; width: 100%; }
  .hero-v2-split .hero-v2-ctas a { width: 100%; text-align: center; }
}

@keyframes v2FadeInUp { to { opacity: 1; transform: translateY(0); } }
@keyframes v2FadeIn   { to { opacity: 1; } }
@keyframes v2ScaleIn  { to { opacity: 1; transform: scale(1); } }

/* === Diagonal section dividers (opt-in) === */
.section-angled {
  position: relative;
  padding: 8rem 2rem;
}
.section-angled::before {
  content:''; position:absolute; top:-48px; left:0; right:0; height:64px;
  background: inherit;
  transform: skewY(-1.5deg);
  transform-origin: top left;
  z-index: 1;
}
.section-angled.angle-right::before {
  transform: skewY(1.5deg);
  transform-origin: top right;
}
.section-angled > * { position: relative; z-index: 2; }

/* === Overlapping capability cards (opt-in) === */
.capability-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem 2rem;
  max-width: 1200px; margin: 0 auto;
}
.capability-card {
  background: #fff; padding: 2.5rem;
  border-radius: 16px;
  box-shadow: var(--v2-shadow-standard);
  transition: transform .3s ease-out, box-shadow .3s ease-out;
}
.capability-card:nth-child(even) { transform: translateY(2rem); }
.capability-card:hover { transform: translateY(-8px); box-shadow: var(--v2-shadow-elevated); }
.capability-card:nth-child(even):hover { transform: translateY(calc(2rem - 8px)); }
.capability-card .capability-icon {
  width: 48px; height: 48px; margin-bottom: 1.25rem;
  color: var(--v2-accent-600);
}
@media (max-width: 768px) {
  .capability-card:nth-child(even) { transform: translateY(0); }
  .capability-card:hover { transform: translateY(-4px); }
}

/* === Logo wall IO-driven === */
.logo-item {
  opacity: 0; transform: scale(0.95);
  transition: opacity .6s ease-out, transform .6s ease-out;
}
.logo-item.visible { opacity: 0.7; transform: scale(1); }
.logo-item:hover { opacity: 1; transform: scale(1.05); }
.logo-item img { filter: grayscale(100%); transition: filter .3s; }
.logo-item:hover img { filter: grayscale(0%); }
.logo-item:nth-child(6n+1).visible { transition-delay: .05s; }
.logo-item:nth-child(6n+2).visible { transition-delay: .10s; }
.logo-item:nth-child(6n+3).visible { transition-delay: .15s; }
.logo-item:nth-child(6n+4).visible { transition-delay: .20s; }
.logo-item:nth-child(6n+5).visible { transition-delay: .25s; }
.logo-item:nth-child(6n+6).visible { transition-delay: .30s; }

/* === Background utilities === */
.section-technical {
  background-color: #F4F7FE;
  background-image: radial-gradient(circle, rgba(59,95,212,0.08) 1px, transparent 1px);
  background-size: 32px 32px;
}
.section-gradient-mesh {
  background:
    radial-gradient(circle at 20% 30%, rgba(59,95,212,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(217,118,66,0.06) 0%, transparent 50%),
    linear-gradient(180deg, #F4F7FE 0%, #FFFFFF 100%);
}

/* === Version ribbon === */
.v2-ribbon {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 2000;
  background: var(--v2-accent-600);
  color: #fff;
  font-family: 'Archivo', sans-serif;
  font-weight: 600; font-size: .78rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  text-align: center;
  padding: 6px 12px;
  display: flex; align-items: center; justify-content: center; gap: 1rem;
  flex-wrap: wrap;
}
.v2-ribbon a {
  color: #fff; text-decoration: underline;
  text-underline-offset: 3px;
}
.v2-ribbon a:hover { color: #fff; text-decoration: none; }
body { padding-top: 32px; }
.header { top: 32px !important; }
@media (max-width: 640px) {
  .v2-ribbon { font-size: .68rem; padding: 5px 10px; }
  body { padding-top: 44px; }
  .header { top: 44px !important; }
}
