/* ============================================================
   VOYO — Premium Design System
   Brand: Deep Indigo #23248B | Purple #A88CF6 | Blue #2CB7F5
   Direction: Apple × Stripe × Linear × McKinsey Digital
   ============================================================ */

/* ── GOOGLE FONTS ── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #ffffff;
  color: #0d0d1a;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
ul, ol { list-style: none; }

/* ── DESIGN TOKENS ── */
:root {
  /* Brand */
  --indigo:      #23248B;
  --indigo-dark: #1a1b6e;
  --indigo-dim:  rgba(35, 36, 139, 0.08);
  --purple:      #A88CF6;
  --purple-dim:  rgba(168, 140, 246, 0.12);
  --blue:        #2CB7F5;
  --blue-dim:    rgba(44, 183, 245, 0.12);
  --white:       #FFFFFF;

  /* Neutrals */
  --gray-25:  #FAFAFA;
  --gray-50:  #F5F5F7;
  --gray-100: #E8E8F0;
  --gray-200: #D0D0E0;
  --gray-300: #ABABC4;
  --gray-500: #6E6E8A;
  --gray-700: #3A3A52;
  --gray-900: #0d0d1a;

  /* Dark mode surface */
  --surface-dark: #0d0e1f;
  --surface-dark-2: #13142a;
  --surface-dark-card: rgba(255,255,255,0.04);
  --surface-dark-border: rgba(255,255,255,0.07);

  /* Gradients */
  --grad-brand: linear-gradient(135deg, #23248B 0%, #A88CF6 55%, #2CB7F5 100%);
  --grad-hero:  linear-gradient(135deg, #0a0b1e 0%, #1a1b4b 40%, #23248B 100%);
  --grad-glow:  radial-gradient(ellipse at 60% 40%, rgba(168,140,246,0.25) 0%, transparent 60%),
                radial-gradient(ellipse at 20% 80%, rgba(44,183,245,0.15) 0%, transparent 50%);

  /* Typography */
  --display:  clamp(3.25rem, 7vw, 6.5rem);
  --h1:       clamp(2.5rem, 5.5vw, 5rem);
  --h2:       clamp(2rem, 4vw, 3.75rem);
  --h3:       clamp(1.375rem, 2.5vw, 1.875rem);
  --h4:       1.25rem;
  --body-lg:  1.125rem;
  --body:     1rem;
  --body-sm:  0.9375rem;
  --caption:  0.8125rem;

  /* Spacing */
  --section:  clamp(5rem, 10vw, 9rem);
  --gutter:   2rem;
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius:    16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  /* Shadows */
  --shadow-sm:  0 1px 4px rgba(13,13,26,0.06), 0 2px 8px rgba(13,13,26,0.04);
  --shadow-md:  0 4px 16px rgba(13,13,26,0.08), 0 8px 32px rgba(13,13,26,0.06);
  --shadow-lg:  0 8px 32px rgba(13,13,26,0.12), 0 24px 64px rgba(13,13,26,0.10);
  --shadow-xl:  0 20px 60px rgba(13,13,26,0.20), 0 40px 80px rgba(13,13,26,0.12);
  --shadow-brand: 0 8px 32px rgba(35,36,139,0.30);
  --shadow-glow:  0 0 60px rgba(168,140,246,0.20);

  /* Transitions */
  --ease:   cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --t-fast: 0.15s;
  --t:      0.25s;
  --t-slow: 0.45s;
}

/* ── LAYOUT ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 var(--gutter); }
.container-wide { max-width: 1440px; margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: var(--section) 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* ── TYPOGRAPHY ── */
.display      { font-size: var(--display); font-weight: 800; line-height: 1.05; letter-spacing: -0.03em; }
.heading-1    { font-size: var(--h1);      font-weight: 800; line-height: 1.08; letter-spacing: -0.025em; }
.heading-2    { font-size: var(--h2);      font-weight: 700; line-height: 1.10; letter-spacing: -0.02em; }
.heading-3    { font-size: var(--h3);      font-weight: 700; line-height: 1.20; letter-spacing: -0.015em; }
.heading-4    { font-size: var(--h4);      font-weight: 600; line-height: 1.30; }
.body-lg      { font-size: var(--body-lg); line-height: 1.75; }
.body-sm      { font-size: var(--body-sm); line-height: 1.65; }
.caption      { font-size: var(--caption); letter-spacing: 0.06em; text-transform: uppercase; font-weight: 600; }
.text-white   { color: var(--white); }
.text-muted   { color: var(--gray-500); }
.text-indigo  { color: var(--indigo); }
.text-blue    { color: var(--blue); }
.text-purple  { color: var(--purple); }
.text-center  { text-align: center; }
.text-balance { text-wrap: balance; }
.gradient-text {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── EYEBROW ── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: var(--caption); letter-spacing: 0.1em;
  font-weight: 700; text-transform: uppercase;
  color: var(--blue); margin-bottom: 1rem;
}
.eyebrow-dark {
  color: rgba(255,255,255,0.5);
}
.eyebrow-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: currentColor; flex-shrink: 0;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-family: inherit; font-size: var(--body-sm); font-weight: 600;
  letter-spacing: -0.01em; line-height: 1;
  padding: 0.875rem 1.75rem; border-radius: 100px;
  border: none; cursor: pointer; transition: all var(--t) var(--ease);
  white-space: nowrap; text-decoration: none;
}
.btn-primary {
  background: var(--white); color: var(--indigo);
  box-shadow: var(--shadow-md);
}
.btn-primary:hover {
  background: var(--gray-50); transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.btn-brand {
  background: var(--grad-brand); color: var(--white);
  box-shadow: var(--shadow-brand);
}
.btn-brand:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(35,36,139,0.40); opacity: 0.95; }
.btn-outline-white {
  background: transparent; color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.30);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.60); }
.btn-outline-dark {
  background: transparent; color: var(--indigo);
  border: 1.5px solid var(--gray-200);
}
.btn-outline-dark:hover { border-color: var(--indigo); background: var(--indigo-dim); }
.btn-lg { padding: 1.125rem 2.25rem; font-size: 1rem; }
.btn-sm { padding: 0.625rem 1.25rem; font-size: var(--caption); }
.btn svg, .btn .arrow { transition: transform var(--t) var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

/* ── NAVBAR ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  transition: all var(--t-slow) var(--ease);
  padding: 1.5rem 0;
}
.navbar::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(13, 14, 31, 0);
  backdrop-filter: blur(0px);
  transition: all var(--t-slow) var(--ease);
}
.navbar.scrolled::before {
  background: rgba(13, 14, 31, 0.85);
  backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.navbar.scrolled { padding: 1rem 0; }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  position: relative; z-index: 1;
}
.nav-logo img { height: 32px; transition: var(--t); }
.nav-links {
  display: flex; align-items: center; gap: 2.5rem;
}
.nav-link {
  font-size: var(--body-sm); font-weight: 500;
  color: rgba(255,255,255,0.75);
  transition: color var(--t) var(--ease);
  position: relative;
}
.nav-link::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px; background: var(--blue);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--t) var(--ease);
}
.nav-link:hover { color: var(--white); }
.nav-link:hover::after { transform: scaleX(1); }
.nav-link.active { color: var(--white); }
.nav-cta-wrap { display: flex; align-items: center; gap: 1rem; }

/* Mobile nav */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 6px; z-index: 1001;
}
.hamburger span {
  display: block; width: 22px; height: 1.5px;
  background: rgba(255,255,255,0.85); border-radius: 2px;
  transition: all var(--t) var(--ease);
}
.hamburger.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.mobile-menu {
  position: fixed; inset: 0; z-index: 900;
  background: var(--surface-dark);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2rem;
  transform: translateX(100%);
  transition: transform var(--t-slow) var(--ease);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu .nav-link { font-size: 2rem; font-weight: 700; color: var(--white); }

/* ── HERO ── */
.hero {
  position: relative; overflow: hidden;
  min-height: 100svh;
  background: #080814;
  display: flex; align-items: center;
  padding: 8rem 0 6rem;
}
/* Hero photo — full-screen background image */
.hero-photo-bg {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0.55;
  pointer-events: none; user-select: none;
}
/* Dark dim layer over photo for text legibility */
.hero-photo-dim {
  position: absolute; inset: 0; z-index: 1;
  background: rgba(8, 8, 20, 0.52);
  pointer-events: none;
}
/* Animated grain / noise texture */
.hero-noise {
  position: absolute; inset: 0; z-index: 1; opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 180px;
}
/* Gradient mesh orbs */
.hero-orb {
  position: absolute; z-index: 2; border-radius: 50%; filter: blur(80px);
  animation: orbFloat 12s ease-in-out infinite;
}
.hero-orb-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(35,36,139,0.30) 0%, transparent 70%);
  top: -250px; right: -150px;
}
.hero-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(35,36,139,0.20) 0%, transparent 70%);
  bottom: -100px; left: 10%;
  animation-delay: -4s;
}
.hero-orb-3 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(35,36,139,0.25) 0%, transparent 70%);
  top: 35%; left: -120px;
  animation-delay: -8s;
}
@keyframes orbFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  33% { transform: translateY(-30px) scale(1.05); }
  66% { transform: translateY(20px) scale(0.97); }
}

.hero-content { position: relative; z-index: 2; }
.hero-grid {
  display: grid; grid-template-columns: 1.25fr 0.75fr;
  gap: 4rem; align-items: center;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: rgba(44,183,245,0.1);
  border: 1px solid rgba(44,183,245,0.2);
  padding: 0.4rem 0.9rem; border-radius: 100px;
  color: var(--blue); font-size: var(--caption);
  font-weight: 600; letter-spacing: 0.05em;
  margin-bottom: 2rem;
}
.hero-tag-dot { width: 6px; height: 6px; background: var(--blue); border-radius: 50%; animation: blink 2s ease infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }

.hero-headline {
  font-size: clamp(2rem, 3.4vw, 3.2rem); font-weight: 800;
  line-height: 1.1; letter-spacing: -0.03em;
  color: var(--white); margin-bottom: 1.75rem;
}
.hero-headline .accent {
  background: linear-gradient(120deg, #A88CF6, #2CB7F5);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 1.1875rem; color: rgba(255,255,255,0.62);
  line-height: 1.75; max-width: 500px;
  margin-bottom: 2.75rem; font-weight: 400;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.875rem; align-items: center; }
.hero-trust {
  margin-top: 3.5rem; display: flex; align-items: center; gap: 1.5rem;
  padding-top: 2.5rem; border-top: 1px solid rgba(255,255,255,0.07);
}
.hero-trust-label { font-size: var(--caption); color: rgba(255,255,255,0.35); }
.hero-trust-items { display: flex; gap: 1.5rem; }
.hero-trust-item { font-size: var(--caption); color: rgba(255,255,255,0.55); font-weight: 500; }

/* ── HERO DATA VISUAL ── */
.hero-visual-wrap { position: relative; }
.hero-panel {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  backdrop-filter: blur(20px);
  box-shadow: 0 32px 80px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.08);
}
.panel-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1.5rem;
}
.panel-title { font-size: 0.8125rem; font-weight: 600; color: rgba(255,255,255,0.6); }
.panel-live {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.75rem; font-weight: 700; color: #4ade80;
}
.panel-live-dot {
  width: 6px; height: 6px; background: #4ade80; border-radius: 50%;
  animation: blink 1.5s ease infinite;
}
.chart-container { height: 140px; position: relative; margin-bottom: 1.5rem; }
.chart-svg { width: 100%; height: 100%; overflow: visible; }

/* Animated chart lines */
.line-1, .line-2 {
  fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
  stroke-dasharray: 1200; stroke-dashoffset: 1200;
  animation: drawLine 1.8s var(--ease-out) 0.5s forwards;
}
.line-1 { stroke: #2CB7F5; }
.line-2 { stroke: #A88CF6; animation-delay: 0.8s; }
.area-1 { fill: url(#areaGrad1); opacity: 0; animation: fadeIn 1s ease 0.8s forwards; }
.area-2 { fill: url(#areaGrad2); opacity: 0; animation: fadeIn 1s ease 1.1s forwards; }
@keyframes drawLine { to { stroke-dashoffset: 0; } }
@keyframes fadeIn { to { opacity: 1; } }

.chart-dot { animation: pulseDot 2s ease infinite; }
@keyframes pulseDot {
  0%,100% { r: 3.5; opacity: 1; }
  50% { r: 5.5; opacity: 0.7; }
}
.chart-dot-ring {
  fill: none; stroke-width: 1.5; opacity: 0;
  animation: ringPulse 2s ease infinite;
}
@keyframes ringPulse {
  0% { r: 5; opacity: 0.6; }
  100% { r: 14; opacity: 0; }
}

.panel-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.875rem; }
.metric {
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-sm); padding: 0.875rem;
}
.metric-label { font-size: 0.7rem; color: rgba(255,255,255,0.40); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.375rem; }
.metric-value { font-size: 1.5rem; font-weight: 800; color: var(--white); line-height: 1; }
.metric-delta { font-size: 0.7rem; font-weight: 700; margin-top: 0.3rem; }
.delta-up { color: #4ade80; }
.delta-down { color: #f87171; }

/* Floating data cards */
.float-card {
  position: absolute; background: var(--white);
  border-radius: var(--radius); padding: 0.85rem 1rem;
  box-shadow: var(--shadow-xl);
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 0.8125rem; font-weight: 600; color: var(--gray-900);
  white-space: nowrap; z-index: 3;
  animation: floatCard 5s ease-in-out infinite;
}
.float-card-1 { top: -18px; right: -10px; animation-delay: 0s; }
.float-card-2 { bottom: -28px; left: -32px; animation-delay: -2.5s; }
.float-icon { font-size: 1.25rem; }
.float-sub { font-size: 0.7rem; color: var(--gray-500); font-weight: 400; margin-top: 0.1rem; }
@keyframes floatCard {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ── TICKER / MARQUEE ── */
.ticker { background: var(--gray-50); padding: 1.25rem 0; overflow: hidden; border-top: 1px solid var(--gray-100); border-bottom: 1px solid var(--gray-100); }
.ticker-track { display: flex; gap: 3rem; animation: tickerScroll 30s linear infinite; width: max-content; }
.ticker-track:hover { animation-play-state: paused; }
.ticker-item { display: flex; align-items: center; gap: 0.625rem; white-space: nowrap; font-size: var(--body-sm); color: var(--gray-500); font-weight: 500; }
.ticker-item strong { color: var(--indigo); font-weight: 700; }
.ticker-dot { width: 4px; height: 4px; background: var(--blue); border-radius: 50%; }
@keyframes tickerScroll { to { transform: translateX(-50%); } }

/* ── SECTION HEADERS ── */
.section-header { margin-bottom: 4rem; }
.section-header-center { text-align: center; margin-bottom: 4rem; }
.section-header-center .section-body { max-width: 560px; margin: 0 auto; }
.section-kicker { color: var(--blue); font-size: var(--caption); font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.75rem; display: block; }
.section-title { color: var(--indigo); }
.section-body { color: var(--gray-500); font-size: var(--body-lg); margin-top: 1rem; line-height: 1.7; }

/* ── WHO WE ARE ── */
.who { background: var(--white); }
.who-left { position: relative; }
.who-visual {
  background: var(--grad-hero);
  border-radius: var(--radius-xl); padding: 3.5rem 2.5rem;
  position: relative; overflow: hidden;
}
.who-visual::before {
  content: ''; position: absolute; inset: 0;
  background: var(--grad-glow); z-index: 0;
}
.who-visual-inner { position: relative; z-index: 1; }
.who-big-number {
  font-size: 5rem; font-weight: 900; color: var(--white);
  line-height: 1; letter-spacing: -0.04em; opacity: 0.12;
  position: absolute; top: 1rem; right: 1.5rem;
  font-variant-numeric: tabular-nums;
}
.who-stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem; }
.who-stat-item {
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius); padding: 1.25rem;
}
.who-stat-num { font-size: 2rem; font-weight: 800; color: var(--white); line-height: 1; }
.who-stat-label { font-size: 0.75rem; color: rgba(255,255,255,0.55); margin-top: 0.35rem; text-transform: uppercase; letter-spacing: 0.06em; }

.who-right .section-body { color: var(--gray-500); }
.who-point {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.25rem;
  border-radius: var(--radius); border: 1px solid var(--gray-100);
  transition: all var(--t) var(--ease);
  margin-top: 1rem;
}
.who-point:hover { border-color: rgba(168,140,246,0.3); box-shadow: var(--shadow-md); background: var(--gray-25); }
.who-point-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: var(--grad-brand); border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
}
.who-point-title { font-weight: 600; color: var(--indigo); font-size: 0.9375rem; margin-bottom: 0.25rem; }
.who-point-body { font-size: 0.875rem; color: var(--gray-500); line-height: 1.6; }

/* ── SERVICES ── */
.services { background: var(--surface-dark); }
.services .section-kicker { color: var(--blue); }
.services .section-title { color: var(--white); }
.services .section-body { color: rgba(255,255,255,0.5); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 4rem; }
.service-card {
  background: var(--surface-dark-card);
  border: 1px solid var(--surface-dark-border);
  border-radius: var(--radius-lg); padding: 2.25rem;
  transition: all var(--t-slow) var(--ease);
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: var(--grad-brand); opacity: 0;
  transition: opacity var(--t) var(--ease);
}
.service-card:hover { border-color: rgba(168,140,246,0.15); transform: translateY(-6px); box-shadow: 0 24px 60px rgba(0,0,0,0.3), var(--shadow-glow); }
.service-card:hover::before { opacity: 1; }
.service-card-icon {
  width: 52px; height: 52px; border-radius: var(--radius-sm);
  background: var(--grad-brand);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 1.5rem;
  box-shadow: var(--shadow-brand);
}
.service-card h3 { font-size: 1.1875rem; color: var(--white); margin-bottom: 0.75rem; font-weight: 700; }
.service-card p { font-size: 0.9375rem; color: rgba(255,255,255,0.50); line-height: 1.7; }
.service-card-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: var(--caption); color: var(--blue); font-weight: 700;
  margin-top: 1.75rem; text-transform: uppercase; letter-spacing: 0.05em;
  transition: gap var(--t) var(--ease);
}
.service-card-link:hover { gap: 0.7rem; }

/* ── STATS / WHY IT MATTERS ── */
.stats { background: var(--white); }
.stats-header { text-align: center; margin-bottom: 5rem; }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--gray-100); border-radius: var(--radius-lg); overflow: hidden; }
.stat-item { background: var(--white); padding: 3.5rem 2.5rem; text-align: center; transition: all var(--t) var(--ease); }
.stat-item:hover { background: var(--gray-25); }
.stat-number { font-size: 4rem; font-weight: 900; line-height: 1; letter-spacing: -0.04em; margin-bottom: 0.5rem; }
.stat-number.gradient-text { } /* inherits */
.stat-label { font-size: var(--body-sm); color: var(--gray-500); max-width: 220px; margin: 0 auto; line-height: 1.6; }

/* ── PROCESS ── */
.process { background: var(--gray-50); }
.process-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2rem; margin-top: 4rem; position: relative;
}
.process-connector {
  position: absolute; top: 36px; left: calc(12.5% + 18px); right: calc(12.5% + 18px);
  height: 1px; background: linear-gradient(90deg, #23248B, #A88CF6, #2CB7F5);
  z-index: 0;
}
.process-step { text-align: center; position: relative; z-index: 1; }
.step-circle {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--white); border: 2px solid var(--gray-200);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem; font-size: 1.5rem;
  transition: all var(--t-slow) var(--ease);
  box-shadow: var(--shadow-sm);
}
.process-step:hover .step-circle {
  background: var(--grad-brand); border-color: transparent;
  box-shadow: var(--shadow-brand); transform: scale(1.1);
}
.process-step h4 { font-size: 1rem; color: var(--indigo); margin-bottom: 0.5rem; font-weight: 700; }
.process-step p { font-size: 0.875rem; color: var(--gray-500); line-height: 1.65; }
.step-num {
  position: absolute; top: -8px; right: calc(50% - 48px);
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--indigo); color: var(--white);
  font-size: 0.625rem; font-weight: 800; display: flex;
  align-items: center; justify-content: center;
  letter-spacing: 0;
}

/* ── INDUSTRIES ── */
.industries { background: var(--white); }
.industries-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 4rem; }
.industry-card {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.5rem 1.75rem;
  border: 1px solid var(--gray-100); border-radius: var(--radius-lg);
  transition: all var(--t) var(--ease); background: var(--white);
}
.industry-card:hover {
  border-color: rgba(168,140,246,0.25);
  box-shadow: var(--shadow-md); transform: translateY(-3px);
  background: var(--gray-25);
}
.industry-icon-wrap {
  width: 52px; height: 52px; border-radius: var(--radius-sm);
  background: var(--grad-brand); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 1.5rem;
}
.industry-card h4 { font-size: 1rem; color: var(--indigo); font-weight: 700; margin-bottom: 0.2rem; }
.industry-card p { font-size: var(--caption); color: var(--gray-500); line-height: 1.5; }

/* ── FOUNDER ── */
.founder { background: var(--surface-dark); overflow: hidden; }
.founder-grid { display: grid; grid-template-columns: 5fr 7fr; gap: 7rem; align-items: center; }
.founder-photo-wrap { position: relative; }
.founder-photo-bg {
  position: absolute;
  top: -3rem; left: -3rem; right: 3rem; bottom: 3rem;
  background: var(--grad-brand);
  border-radius: var(--radius-xl);
  opacity: 0.2;
}
.founder-photo {
  position: relative; z-index: 1;
  width: 80%; aspect-ratio: 3 / 4;
  object-fit: cover; object-position: top center;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}
.founder-badge {
  position: absolute; z-index: 2;
  bottom: -1rem; right: -1.5rem;
  background: var(--white); border-radius: var(--radius);
  padding: 1rem 1.25rem;
  display: flex; align-items: center; gap: 0.875rem;
  box-shadow: var(--shadow-xl);
}
.founder-badge-icon { font-size: 1.75rem; }
.founder-badge-title { font-size: 0.875rem; font-weight: 700; color: var(--indigo); }
.founder-badge-sub { font-size: 0.75rem; color: var(--gray-500); margin-top: 0.1rem; }

.founder-text .section-kicker { color: var(--blue); }
.founder-text h2 { color: var(--white); margin-bottom: 1.75rem; }
.founder-text p { color: rgba(255,255,255,0.58); font-size: var(--body-lg); line-height: 1.8; margin-bottom: 1.25rem; }
.founder-sig { margin-top: 2rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.07); }
.founder-name { font-size: 1.0625rem; font-weight: 700; color: var(--white); }
.founder-role { font-size: var(--caption); color: rgba(255,255,255,0.40); margin-top: 0.25rem; letter-spacing: 0.05em; }

/* ── INSIGHTS PREVIEW ── */
.insights-preview { background: var(--gray-50); }
.insights-preview-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 4rem; }
.article-card {
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100); overflow: hidden;
  transition: all var(--t-slow) var(--ease);
}
.article-card:hover { border-color: transparent; box-shadow: var(--shadow-lg); transform: translateY(-6px); }
.article-card-top {
  height: 200px; background: var(--grad-brand);
  display: flex; align-items: center; justify-content: center;
  font-size: 3.5rem; position: relative; overflow: hidden;
}
.article-card-top img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  transition: transform 0.5s var(--ease);
}
.article-card:hover .article-card-top img { transform: scale(1.05); }
.article-card-top::after {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to bottom, rgba(13,13,26,0.15) 0%, rgba(13,13,26,0.45) 100%);
}
.article-card-body { padding: 1.5rem; }
.article-category {
  display: inline-block; padding: 0.25rem 0.75rem;
  border-radius: 100px; font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 0.875rem;
}
.cat-youth    { background: rgba(44,183,245,0.1);   color: #0ea5e9; }
.cat-consumer { background: rgba(168,140,246,0.12); color: #7c3aed; }
.cat-mktg     { background: rgba(35,36,139,0.08);   color: var(--indigo); }
.cat-report   { background: rgba(74,222,128,0.12);  color: #16a34a; }
.article-card h3 { font-size: 1.0625rem; color: var(--indigo); line-height: 1.4; font-weight: 700; margin-bottom: 0.625rem; }
.article-card p { font-size: 0.875rem; color: var(--gray-500); line-height: 1.65; margin-bottom: 1rem; }
.article-meta { display: flex; align-items: center; justify-content: space-between; padding-top: 1rem; border-top: 1px solid var(--gray-100); }
.article-date { font-size: 0.75rem; color: var(--gray-300); }
.article-read { font-size: 0.75rem; font-weight: 700; color: var(--blue); display: flex; align-items: center; gap: 0.3rem; transition: gap var(--t) var(--ease); }
.article-read:hover { gap: 0.6rem; }

/* ── CONTACT CTA ── */
.contact-cta { background: var(--surface-dark); }
.contact-cta-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 6rem; }
.cta-info .section-kicker { color: var(--blue); }
.cta-info h2 { color: var(--white); margin-bottom: 1.25rem; }
.cta-info p { color: rgba(255,255,255,0.55); font-size: var(--body-lg); margin-bottom: 2.5rem; line-height: 1.75; }
.contact-channels { display: flex; flex-direction: column; gap: 0.875rem; }
.channel {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--surface-dark-card); border: 1px solid var(--surface-dark-border);
  border-radius: var(--radius); transition: all var(--t) var(--ease);
}
.channel:hover { border-color: rgba(168,140,246,0.25); background: rgba(255,255,255,0.06); }
.channel-icon {
  width: 40px; height: 40px; border-radius: var(--radius-sm);
  background: var(--grad-brand); display: flex; align-items: center;
  justify-content: center; font-size: 1rem; flex-shrink: 0;
}
.channel-label { font-size: 0.75rem; color: rgba(255,255,255,0.35); margin-bottom: 0.15rem; }
.channel-value { font-size: 0.9rem; font-weight: 600; color: var(--white); }

.contact-form-wrap {
  background: var(--white); border-radius: var(--radius-xl);
  padding: 2.5rem; box-shadow: var(--shadow-xl);
}
.contact-form-wrap h3 { color: var(--indigo); margin-bottom: 1.75rem; font-size: 1.375rem; }
.form-group { margin-bottom: 1.125rem; }
.form-group label { display: block; font-size: 0.8125rem; font-weight: 600; color: var(--gray-700); margin-bottom: 0.4rem; }
.form-control {
  width: 100%; padding: 0.8125rem 1rem;
  border: 1.5px solid var(--gray-200); border-radius: var(--radius-sm);
  font-family: inherit; font-size: var(--body-sm); color: var(--gray-900);
  background: var(--gray-25); outline: none;
  transition: all var(--t) var(--ease); resize: vertical;
}
.form-control::placeholder { color: var(--gray-300); }
.form-control:focus { border-color: var(--purple); background: var(--white); box-shadow: 0 0 0 3px rgba(168,140,246,0.12); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
textarea.form-control { min-height: 110px; }
.form-submit { width: 100%; margin-top: 0.5rem; padding: 1rem; font-size: 1rem; }

/* ── FOOTER ── */
.footer { background: #07071a; padding: 5rem 0 2.5rem; }
.footer-top { display: grid; grid-template-columns: 2.5fr 1fr 1fr 1fr; gap: 4rem; margin-bottom: 4rem; }
.footer-brand-logo { height: 28px; margin-bottom: 1.25rem; }
.footer-brand-body { font-size: 0.9rem; color: rgba(255,255,255,0.38); line-height: 1.75; max-width: 260px; }
.footer-address { font-size: 0.8rem; color: rgba(255,255,255,0.25); line-height: 1.8; max-width: 260px; margin-top: 0.75rem; }
.footer-col-title { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.5); margin-bottom: 1.25rem; }
.footer-col-links { display: flex; flex-direction: column; gap: 0.625rem; }
.footer-col-links a { font-size: 0.9rem; color: rgba(255,255,255,0.38); transition: color var(--t) var(--ease); }
.footer-col-links a:hover { color: var(--white); }
.footer-bottom {
  padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
}
.footer-copy { font-size: 0.8125rem; color: rgba(255,255,255,0.25); }
.footer-socials { display: flex; gap: 0.625rem; }
.social-btn {
  width: 34px; height: 34px; border-radius: 8px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.07);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.875rem; color: rgba(255,255,255,0.40);
  transition: all var(--t) var(--ease);
}
.social-btn:hover { background: var(--blue); border-color: var(--blue); color: var(--white); }

/* ── SCROLL-TO-TOP ── */
.scroll-top {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 800;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--grad-brand);
  color: var(--white); font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-brand); cursor: pointer;
  opacity: 0; transform: translateY(16px) scale(0.8);
  transition: all var(--t-slow) var(--ease);
  border: none; font-family: inherit;
}
.scroll-top.visible { opacity: 1; transform: translateY(0) scale(1); }
.scroll-top:hover { transform: translateY(-3px) scale(1.05); }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--surface-dark); padding: 10rem 0 6rem;
  position: relative; overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background: var(--grad-hero);
}
.page-hero-bg::after { content: ''; position: absolute; inset: 0; background: var(--grad-glow); }
.page-hero-orb-1 {
  position: absolute; width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(168,140,246,0.15) 0%, transparent 70%);
  filter: blur(60px); top: -100px; right: -50px;
}
.page-hero-content { position: relative; z-index: 1; text-align: center; }
.page-hero h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero p { color: rgba(255,255,255,0.6); font-size: var(--body-lg); max-width: 580px; margin: 0 auto; line-height: 1.75; }

/* ── INSIGHTS PAGE ── */
.insights-filter {
  display: flex; gap: 0.625rem; flex-wrap: wrap;
  justify-content: center; margin-top: 2.5rem;
}
.filter-btn {
  padding: 0.5rem 1.25rem; border-radius: 100px;
  font-size: 0.8125rem; font-weight: 600; cursor: pointer;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.65); transition: all var(--t) var(--ease);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--white); color: var(--indigo); border-color: transparent;
}
.insights-main { background: var(--white); padding: var(--section) 0; }
.insights-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }

/* ── ARTICLE ── */
.article-page-hero {
  background: var(--surface-dark); padding: 9rem 0 5rem;
  position: relative; overflow: hidden;
}
.article-page-hero-bg { position: absolute; inset: 0; background: var(--grad-hero); }
.article-page-hero-bg::after { content: ''; position: absolute; inset: 0; background: var(--grad-glow); }
.article-breadcrumb {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.8125rem; color: rgba(255,255,255,0.45);
  margin-bottom: 1.5rem; position: relative; z-index: 1;
}
.article-breadcrumb a { color: rgba(255,255,255,0.55); transition: color var(--t) var(--ease); }
.article-breadcrumb a:hover { color: var(--white); }
.article-breadcrumb span { opacity: 0.4; }
.article-hero-category { position: relative; z-index: 1; margin-bottom: 1.25rem; }
.article-hero-title {
  position: relative; z-index: 1;
  font-size: clamp(2rem, 4.5vw, 3.25rem); font-weight: 800;
  color: var(--white); letter-spacing: -0.025em; line-height: 1.1;
  max-width: 760px; margin-bottom: 1.75rem;
}
.article-hero-meta { display: flex; gap: 1.5rem; flex-wrap: wrap; position: relative; z-index: 1; }
.article-hero-meta span { font-size: 0.875rem; color: rgba(255,255,255,0.5); display: flex; align-items: center; gap: 0.4rem; }

.article-body-wrap { max-width: 780px; margin: 0 auto; padding: 5rem 2rem; }
.article-body-wrap h2 { font-size: 1.75rem; color: var(--indigo); margin: 3rem 0 1rem; letter-spacing: -0.02em; }
.article-body-wrap h3 { font-size: 1.3rem; color: var(--indigo); margin: 2.5rem 0 0.75rem; }
.article-body-wrap p { font-size: 1.0625rem; color: var(--gray-500); line-height: 1.85; margin-bottom: 1.5rem; }
.article-body-wrap ul, .article-body-wrap ol { margin: 0 0 1.5rem 1.5rem; }
.article-body-wrap li { font-size: 1.0625rem; color: var(--gray-500); line-height: 1.8; margin-bottom: 0.5rem; }
.article-body-wrap blockquote {
  border-left: 3px solid var(--purple); padding: 1.25rem 2rem;
  background: var(--gray-50); border-radius: 0 var(--radius) var(--radius) 0;
  margin: 2.5rem 0; color: var(--indigo); font-style: italic;
  font-size: 1.125rem; line-height: 1.75;
}
.article-stat-highlight {
  background: var(--grad-brand); border-radius: var(--radius-lg);
  padding: 2.5rem; text-align: center; margin: 2.5rem 0;
}
.article-stat-highlight .big-num { font-size: 3.5rem; font-weight: 900; color: white; line-height: 1; display: block; }
.article-stat-highlight p { color: rgba(255,255,255,0.8); font-size: 0.9375rem; margin: 0.5rem 0 0; }

/* ── ABOUT PAGE ── */
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 3.5rem; }
.value-card {
  padding: 2rem; border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100); background: var(--white);
  transition: all var(--t) var(--ease);
}
.value-card:hover { border-color: rgba(168,140,246,0.25); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.value-icon { font-size: 2rem; margin-bottom: 1.25rem; }
.value-card h3 { font-size: 1.0625rem; color: var(--indigo); margin-bottom: 0.5rem; }
.value-card p { font-size: 0.9rem; color: var(--gray-500); line-height: 1.7; }
.mission-strip {
  background: var(--grad-brand);
  border-radius: var(--radius-xl); padding: 5rem 4rem; text-align: center;
  margin: var(--section) 0; position: relative; overflow: hidden;
}
.mission-strip::before {
  content: ''; position: absolute; inset: 0;
  background: var(--grad-glow);
}
.mission-strip-inner { position: relative; z-index: 1; }
.mission-strip h2 { color: white; font-size: clamp(1.75rem, 3.5vw, 3rem); max-width: 760px; margin: 0 auto 1.25rem; letter-spacing: -0.025em; }
.mission-strip p { color: rgba(255,255,255,0.75); font-size: var(--body-lg); max-width: 560px; margin: 0 auto; }

/* ── ANIMATIONS ── */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
.reveal.revealed { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-scale { opacity: 0; transform: scale(0.96); transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out); }
.reveal-scale.revealed { opacity: 1; transform: scale(1); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-grid       { grid-template-columns: 1fr; }
  .hero-visual-wrap { display: none; }
  .who .grid-2     { grid-template-columns: 1fr; gap: 3rem; }
  .founder-grid    { grid-template-columns: 1fr; gap: 3rem; }
  .founder-photo-wrap { max-width: 380px; }
  .contact-cta-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-top      { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .process-grid    { grid-template-columns: repeat(2, 1fr); }
  .process-connector { display: none; }
}
@media (max-width: 768px) {
  :root { --section: 4rem; --gutter: 1.25rem; }
  .nav-links, .nav-cta-wrap { display: none; }
  .hamburger { display: flex; }
  .services-grid, .stats-grid, .industries-grid, .values-grid,
  .insights-grid, .insights-preview-grid { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; gap: 2.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .stats-grid { grid-template-columns: 1fr; }
  .hero-trust { display: none; }
  .process-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .process-grid { grid-template-columns: 1fr; }
  .mission-strip { padding: 3rem 1.5rem; }
}

/* ============================================================
   VOYO — Lucide Icon System
   All SVG icons, sizing & color per context
   ============================================================ */

/* ── Base reset for all Lucide SVGs ── */
[data-lucide] {
  display: inline-block;
  flex-shrink: 0;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  vertical-align: middle;
}

/* ── Gradient-box icons
   (service cards, industry cards, who-point, channel) ── */
.service-card-icon [data-lucide],
.industry-icon-wrap [data-lucide],
.who-point-icon [data-lucide],
.channel-icon [data-lucide] {
  width: 22px; height: 22px;
  stroke: #ffffff;
  stroke-width: 1.75;
}

/* ── Process step circles ── */
.step-circle [data-lucide] {
  width: 28px; height: 28px;
  stroke: var(--indigo);
  stroke-width: 1.75;
  transition: stroke var(--t) var(--ease);
}
.process-step:hover .step-circle [data-lucide] {
  stroke: #ffffff;
}

/* ── Article card tops (large hero tile) ── */
.article-card-top [data-lucide] {
  width: 54px; height: 54px;
  stroke: rgba(255, 255, 255, 0.88);
  stroke-width: 1.2;
  position: relative; z-index: 1;
}

/* ── Float card icons ── */
.float-icon [data-lucide] {
  width: 18px; height: 18px;
  stroke: var(--indigo);
  stroke-width: 2;
  position: relative; top: -1px;
}

/* ── Contact channel icons ── */
.channel-icon [data-lucide] {
  width: 20px; height: 20px;
  stroke: #ffffff;
  stroke-width: 2;
}

/* ── Value/feature icons (about page cards) ── */
.value-icon [data-lucide] {
  width: 30px; height: 30px;
  stroke: var(--indigo);
  stroke-width: 1.75;
}

/* ── Founder badge icon ── */
.founder-badge-icon [data-lucide] {
  width: 26px; height: 26px;
  stroke: var(--indigo);
  stroke-width: 1.75;
}

/* ── Article meta row (date · time · author) ── */
.article-hero-meta span [data-lucide] {
  width: 13px; height: 13px;
  stroke: rgba(255, 255, 255, 0.5);
  stroke-width: 2;
  position: relative; top: -1px;
  margin-right: 2px;
}

/* ── Large visual icons in dark panels ── */
.visual-icon-lg {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.visual-icon-lg [data-lucide] {
  width: 56px; height: 56px;
  stroke: rgba(255, 255, 255, 0.82);
  stroke-width: 1.2;
}

/* ── Who-visual stat panel icon ── */
.who-visual-inner > .visual-icon-lg [data-lucide] {
  stroke: rgba(255, 255, 255, 0.75);
}

/* ── Stat section icons ── */
.stat-icon [data-lucide] {
  width: 28px; height: 28px;
  stroke: rgba(255, 255, 255, 0.55);
  stroke-width: 1.75;
  margin-bottom: 0.5rem;
}

/* ── Gradient-text version for stats ── */
.stat-icon-brand [data-lucide] {
  width: 32px; height: 32px;
  stroke: var(--blue);
  stroke-width: 1.75;
}
