/* ─── weDISCOVR Design System — shared.css ─── */

/* TOKENS */
:root {
  --blue:    #0066FF;
  --white:   #FFFFFF;
  --dark:    #222222;
  --purple:  #6968CB;
  --orange:  #FF5501;
  --sky:     #2C9CE4;
  --gold:    #FAC938;
  --green:   #7ED957;
  --bg:      #050A14;
  --bg2:     #0A1628;
  --dark-bg: #050A14;
  --glass-fill:   rgba(255,255,255,0.05);
  --glass-fill2:  rgba(255,255,255,0.08);
  --glass-stroke: rgba(255,255,255,0.08);
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  font-family: 'Nunito', sans-serif;
  background: #08080C;
  color: var(--white);
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; }
section { padding: 128px 0; }

/* WSI TICKER */
.wsi-ticker {
  position: fixed; top: 0; left: 0; width: 100%; height: 48px;
  background: #080A10; z-index: 9999;
  border-bottom: 1px solid rgba(0,102,255,0.2);
  display: flex; align-items: center; overflow: hidden;
  cursor: pointer; user-select: none; -webkit-user-select: none;
}
.wsi-ticker-label {
  display: flex; align-items: center; gap: 8px;
  padding: 0 16px; height: 100%;
  font-family: 'Nunito', sans-serif; font-size: 11px; font-weight: 800;
  letter-spacing: 0.06em; text-transform: uppercase;
  white-space: nowrap; flex-shrink: 0;
  background: #080A10; z-index: 2; position: relative;
  border-right: 1px solid rgba(0,102,255,0.15);
}
.wsi-ticker-label-text { color: var(--blue); }
.wsi-ticker-live-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 6px rgba(126,217,87,0.6);
  animation: tickerPulse 2s ease-in-out infinite;
}
@keyframes tickerPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.wsi-ticker-clock {
  font-family: 'Courier New', Courier, monospace;
  font-variant-numeric: tabular-nums;
  font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.5);
  letter-spacing: 0.04em;
}
.wsi-ticker-sep { color: rgba(255,255,255,0.15); font-size: 10px; }
.wsi-ticker-cta {
  font-family: 'Nunito', sans-serif; font-size: 10px; font-weight: 700;
  color: rgba(255,255,255,0.35); letter-spacing: 0.08em;
  display: flex; align-items: center; gap: 4px;
}
.wsi-ticker-cta svg { width: 10px; height: 10px; stroke: rgba(255,255,255,0.35); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.wsi-ticker-track {
  flex: 1; overflow: hidden; position: relative; height: 100%;
  display: flex; align-items: center;
  mask-image: linear-gradient(90deg, transparent 0%, #000 3%, #000 97%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 3%, #000 97%, transparent 100%);
}
.wsi-ticker-scroll {
  display: flex; align-items: center; gap: 0;
  animation: tickerScroll 480s linear infinite;
  will-change: transform;
}
.wsi-ticker-scroll:hover { animation-play-state: paused; }
@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.wsi-ticker-item {
  display: flex; align-items: center; gap: 10px;
  padding: 0 20px; height: 48px; white-space: nowrap;
  border-right: 1px solid rgba(255,255,255,0.04);
}
.wsi-ticker-flag { font-size: 14px; line-height: 1; }
.wsi-ticker-code {
  font-family: 'Nunito', sans-serif; font-size: 11px; font-weight: 800;
  color: rgba(255,255,255,0.85); letter-spacing: 0.04em;
}
.wsi-ticker-price {
  font-family: 'Courier New', Courier, monospace;
  font-variant-numeric: tabular-nums;
  font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.6);
}
.wsi-ticker-change {
  font-family: 'Courier New', Courier, monospace;
  font-variant-numeric: tabular-nums;
  font-size: 11px; font-weight: 700;
}
.wsi-ticker-change.positive { color: #7ED957; }
.wsi-ticker-change.negative { color: #FF5501; }
.wsi-ticker-vol {
  font-family: 'Courier New', Courier, monospace;
  font-variant-numeric: tabular-nums;
  font-size: 10px; font-weight: 400; color: rgba(255,255,255,0.25);
}

@media (max-width: 768px) {
  .wsi-ticker-label { padding: 0 10px; gap: 6px; }
  .wsi-ticker-cta { display: none; }
  .wsi-ticker-item { padding: 0 14px; gap: 8px; }
  .wsi-ticker-vol { display: none; }
}

/* SCROLL PROGRESS */
#scroll-progress {
  position: fixed; top: 112px; left: 0; height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--sky));
  box-shadow: none;
  z-index: 1000; width: 0%; transition: width 0.1s linear;
}

/* LAYOUT */
.container { max-width: 1200px; margin: 0 auto; padding: 0 clamp(20px, 5vw, 32px); }
.container-narrow { max-width: 800px; margin: 0 auto; padding: 0 clamp(20px, 5vw, 32px); }

/* TYPE */
h1 { font-size: clamp(38px, 5.5vw, 76px); font-weight: 500; line-height: 1.08; letter-spacing: -0.03em; text-wrap: balance; }
@keyframes scrollDot {
  0% { opacity:0.3; transform:translateY(0); }
  40% { opacity:1; transform:translateY(10px); }
  80%,100% { opacity:0; transform:translateY(14px); }
}
.page-hero h1, .hero-content h1 { max-width: 900px; margin-left: auto; margin-right: auto; }
h2 { font-size: clamp(28px, 3.5vw, 48px); font-weight: 600; line-height: 1.12; letter-spacing: -0.025em; text-wrap: balance; }
h3 { font-size: clamp(18px, 2.2vw, 26px); font-weight: 700; line-height: 1.25; }
.highlight { background: linear-gradient(135deg, var(--blue) 0%, var(--sky) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.highlight-purple { background: linear-gradient(135deg, var(--purple) 0%, var(--sky) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.highlight-gold { background: linear-gradient(135deg, var(--gold) 0%, var(--orange) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.highlight-green { color: var(--green); }

.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 800; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--blue); margin-bottom: 16px;
}
.section-label::before { display: none; }
.section-sub { font-size: 17px; color: rgba(255,255,255,0.55); line-height: 1.7; max-width: 640px; }

/* TAGS */
.tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 12px; border-radius: 100px;
  font-size: 11px; font-weight: 800;
  letter-spacing: 0.06em; text-transform: uppercase; border: 1px solid;
}
.tag-live   { background: rgba(126,217,87,0.1); color: var(--green); border-color: rgba(126,217,87,0.3); }
.tag-blue   { background: rgba(0,102,255,0.1); color: var(--blue); border-color: rgba(0,102,255,0.3); }
.tag-orange { background: rgba(255,85,1,0.1); color: var(--orange); border-color: rgba(255,85,1,0.3); }
.tag-gold   { background: rgba(250,201,56,0.1); color: var(--gold); border-color: rgba(250,201,56,0.3); }
.tag-sky    { background: rgba(44,156,228,0.1); color: var(--sky); border-color: rgba(44,156,228,0.3); }
.tag-purple { background: rgba(105,104,203,0.1); color: var(--purple); border-color: rgba(105,104,203,0.3); }

/* BUTTONS */
@property --cta-angle { syntax: '<angle>'; initial-value: 0deg; inherits: false; }
@keyframes rotateCTA { to { --cta-angle: 360deg; } }
@keyframes ctaGlow {
  0%, 100% { box-shadow: 0 4px 20px rgba(0,102,255,0.28), 0 2px 10px rgba(0,102,255,0.15), inset 0 1px 0 rgba(255,255,255,0.12); }
  50%       { box-shadow: 0 8px 36px rgba(0,102,255,0.48), 0 4px 16px rgba(0,102,255,0.24), inset 0 1px 0 rgba(255,255,255,0.15); }
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px; color: #fff; border-radius: 100px;
  font-family: 'Nunito', sans-serif; font-size: 15px; font-weight: 700;
  cursor: pointer; border: none; background: transparent;
  animation: ctaGlow 5s ease-in-out infinite;
  transition: transform 0.2s ease, opacity 0.2s ease, box-shadow 0.2s ease;
  position: relative; isolation: isolate;
}
.btn-primary::before {
  content: ''; position: absolute; inset: -2px; border-radius: 102px;
  background: conic-gradient(from var(--cta-angle), #0066FF, #6968CB, #2C9CE4, #FAC938, #FF5501, #0066FF);
  z-index: -2; animation: rotateCTA 3s linear infinite;
}
.btn-primary::after {
  content: ''; position: absolute; inset: 0; border-radius: 100px;
  background: linear-gradient(135deg, #0050CC 0%, #0066FF 50%, #1A82FF 100%);
  z-index: -1;
}
.btn-primary:hover {
  transform: scale(1.02) translateY(-2px); opacity: 0.95;
  animation: none;
  box-shadow: 0 8px 36px rgba(0,102,255,0.48), 0 4px 16px rgba(0,102,255,0.24), inset 0 1px 0 rgba(255,255,255,0.15);
}
.btn-primary:active { transform: scale(0.98) translateY(0); }

.btn-glass {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px; background: var(--glass-fill2);
  border: 1px solid var(--glass-stroke); border-radius: 100px;
  font-family: 'Nunito', sans-serif; font-size: 15px; font-weight: 700; color: var(--white);
  cursor: pointer; backdrop-filter: blur(10px);
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.btn-glass:hover {
  background: rgba(255,255,255,0.10); transform: translateY(-2px);
  border-color: rgba(255,255,255,0.15);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 4px 16px rgba(0,0,0,0.2);
}
.btn-glass:active { transform: translateY(0); }

/* CTA ARROW ICONS */
.btn-arrow {
  display: inline-flex; width: 20px; height: 20px; align-items: center; justify-content: center;
  transition: transform 0.2s;
}
.btn-primary:hover .btn-arrow, .btn-glass:hover .btn-arrow { transform: translate(2px, -2px); }
.btn-arrow svg { width: 14px; height: 14px; }

/* LOGO TICKER */
.logo-ticker {
  overflow: hidden; padding: 40px 0; position: relative;
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.logo-ticker::before, .logo-ticker::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2; pointer-events: none;
}
.logo-ticker::before { left: 0; background: linear-gradient(90deg, var(--dark-bg) 0%, transparent 100%); }
.logo-ticker::after { right: 0; background: linear-gradient(-90deg, var(--dark-bg) 0%, transparent 100%); }
.logo-ticker-track {
  display: flex; gap: 64px; align-items: center;
  animation: tickerScroll 25s linear infinite; width: max-content;
}
.logo-ticker-track:hover { animation-play-state: paused; }
@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.logo-ticker-item {
  font-size: 18px; font-weight: 800; color: rgba(255,255,255,0.2);
  white-space: nowrap; letter-spacing: 0.02em; text-transform: uppercase;
  transition: color 0.3s;
}
.logo-ticker-item:hover { color: rgba(255,255,255,0.5); }
.logo-ticker-item img { height: 28px; opacity: 0.3; filter: grayscale(1) brightness(2); transition: opacity 0.3s; }
.logo-ticker-item img:hover { opacity: 0.6; }

/* PULSE */
.pulse-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); animation: pulse 1.6s ease-in-out infinite; }
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

/* NAV */
nav {
  position: fixed; top: 48px; left: 0; right: 0; z-index: 1000;
  height: 64px; padding: 0 32px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(5,10,20,0.6);
  overflow: visible;
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: background 0.3s, backdrop-filter 0.3s, border-color 0.3s;
}
nav.scrolled {
  background: rgba(5,10,20,0.92);
  backdrop-filter: blur(32px); -webkit-backdrop-filter: blur(32px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-left { display: flex; align-items: center; gap: 12px; }
.nav-logo { font-size: 18px; font-weight: 900; letter-spacing: -0.01em; display: flex; align-items: center; height: 32px; }
.nav-logo img { height: 28px; width: auto; display: block; object-fit: contain; }
.nav-logo span { color: var(--blue); }
.nav-links { display: flex; gap: 4px; align-items: center; }
.nav-links a, .nav-links .nav-dropdown-trigger {
  padding: 6px 14px; border-radius: 100px;
  font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.55);
  transition: color 0.2s, background 0.2s;
  cursor: pointer;
}
.nav-links a:hover, .nav-links a.active,
.nav-links .nav-dropdown-trigger:hover, .nav-links .nav-dropdown-trigger.active {
  color: var(--white); background: rgba(255,255,255,0.08);
}

/* SOLUTIONS DROPDOWN */
.nav-dropdown { position: relative; }
.nav-dropdown-trigger {
  display: inline-flex; align-items: center; gap: 5px;
  user-select: none; -webkit-user-select: none;
}
.nav-dropdown-trigger .chevron {
  display: inline-flex; align-items: center; justify-content: center;
  width: 18px; height: 18px; border-radius: 6px;
  background: rgba(0,102,255,0.15);
  transition: transform 0.25s ease, background 0.2s;
}
.nav-dropdown-trigger .chevron svg {
  width: 10px; height: 10px; stroke: var(--blue); stroke-width: 2.5;
  stroke-linecap: round; stroke-linejoin: round; fill: none;
}
.nav-dropdown-trigger:hover .chevron { background: rgba(0,102,255,0.25); }
.nav-dropdown.open .nav-dropdown-trigger .chevron { transform: rotate(180deg); }

.nav-dropdown-panel {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  width: 560px; padding: 16px;
  background: rgba(8, 14, 28, 0.92);
  border: 1px solid var(--glass-stroke);
  border-radius: 16px;
  backdrop-filter: blur(32px); -webkit-backdrop-filter: blur(32px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.04) inset;
  opacity: 0; visibility: hidden; pointer-events: none;
  transform: translateX(-50%) translateY(-6px);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  z-index: 950;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4px;
}
.nav-dropdown.open .nav-dropdown-panel,
.nav-dropdown:hover .nav-dropdown-panel {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown:hover .nav-dropdown-trigger .chevron,
.nav-dropdown.open .nav-dropdown-trigger .chevron { transform: rotate(180deg); }

.nav-dropdown-item {
  display: flex; flex-direction: column; gap: 4px;
  padding: 12px 16px; border-radius: 8px;
  transition: background 0.15s;
}
.nav-dropdown-item:hover { background: rgba(255,255,255,0.05); }
.nav-dropdown-item-name {
  font-size: 14px; font-weight: 700; color: var(--white);
}
.nav-dropdown-item-desc {
  font-size: 12px; color: rgba(255,255,255,0.45); line-height: 1.4;
}
/* wSI item spans full width with separator */
.nav-dropdown-item-wsi {
  grid-column: 1 / -1;
  margin-top: 4px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.06);
  flex-direction: row; align-items: center; gap: 10px;
}
.nav-dropdown-item-wsi .nav-dropdown-item-name {
  color: var(--blue); font-weight: 800;
}
.nav-dropdown-item-wsi .nav-dropdown-wsi-badge {
  display: inline-flex; align-items: center; padding: 2px 8px;
  border-radius: 100px; background: rgba(0,102,255,0.12);
  font-size: 10px; font-weight: 800; color: var(--blue);
  letter-spacing: 0.04em; text-transform: uppercase; flex-shrink: 0;
}
.nav-dropdown-item-wsi .nav-dropdown-item-desc { flex: 1; }
.nav-right { display: flex; align-items: center; gap: 12px; }
.nav-cta {
  padding: 8px 20px; border-radius: 100px; background: var(--blue); color: #fff;
  font-size: 13px; font-weight: 700; transition: opacity 0.2s;
}
.nav-cta:hover { opacity: 0.85; }

/* HAMBURGER */
.nav-burger {
  display: none; width: 48px; height: 48px; border: none;
  background: transparent; cursor: pointer;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  padding: 0; z-index: 1001;
  flex-shrink: 0;
}
.nav-burger span {
  display: block; width: 20px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
  transform-origin: center center;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* MOBILE NAV OVERLAY */
.mobile-nav {
  display: none; position: fixed; top: 112px; left: 0; right: 0; bottom: 0; z-index: 999;
  background: rgba(5,10,20,0.97); backdrop-filter: blur(24px);
  flex-direction: column; align-items: center; gap: 8px;
  overflow-y: auto; padding: 32px 0;
  padding: 32px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 14px 32px; border-radius: var(--radius-md);
  font-size: 18px; font-weight: 700; color: rgba(255,255,255,0.6);
  transition: color 0.2s, background 0.2s;
  width: 100%; max-width: 320px; text-align: center;
}
.mobile-nav a:hover, .mobile-nav a.active {
  color: var(--white); background: rgba(255,255,255,0.08);
}
.mobile-nav .mobile-nav-cta {
  margin-top: 16px; padding: 14px 32px;
  background: var(--blue); border-radius: 100px;
  color: #fff; font-size: 16px; font-weight: 700;
  max-width: 320px; width: 100%; text-align: center;
}

/* Mobile Solutions section */
.mobile-nav-section-label {
  padding: 10px 32px; width: 100%; max-width: 320px; text-align: center;
  font-size: 11px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.3); cursor: default;
  margin-top: 4px;
}
.mobile-nav-sub {
  display: flex; flex-direction: column; align-items: center; gap: 0; width: 100%;
}
.mobile-nav-sub a {
  padding: 10px 32px; border-radius: var(--radius-sm);
  font-size: 15px; font-weight: 600; color: rgba(255,255,255,0.45);
  transition: color 0.2s, background 0.2s;
  width: 100%; max-width: 320px; text-align: center;
}
.mobile-nav-sub a:hover, .mobile-nav-sub a.active {
  color: var(--white); background: rgba(255,255,255,0.06);
}

@media (max-width: 1100px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
}
@media (max-width: 600px) {
  .nav-right .nav-cta { display: none; }
  nav { padding: 0 16px; }
  section { padding: 64px 0; }
  section > *:not(.container):not(.container-narrow):not(.hero-content) { padding-left: 20px; padding-right: 20px; }
  .page-hero { min-height: auto; padding-top: 112px; padding-bottom: 40px; }
  h1 { font-size: clamp(28px, 8vw, 44px); }
  h2 { font-size: clamp(24px, 6vw, 36px); }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn-primary, .hero-ctas .btn-glass { width: 100%; justify-content: center; }
  .hero-stats, .stat-row { flex-direction: column; align-items: stretch; }
  .hero-stat, .stat-pill { min-width: auto; }
  .type-row { justify-content: flex-start; flex-wrap: wrap; }
  .phone-mockup { width: 240px; }
  .cta-banner { padding: 40px 20px; margin: 0 20px; }
  .pricing-card { padding: 28px 20px; }
  .glass-card { padding: 24px 20px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

/* SKIP LINK (accessibility) */
.skip-link {
  position: absolute; top: -100px; left: 16px;
  padding: 12px 24px; background: var(--blue); color: #fff;
  border-radius: 100px; font-size: 14px; font-weight: 700;
  z-index: 10000; transition: top 0.2s;
}
.skip-link:focus { top: 56px; }

/* FOCUS STYLES (accessibility) */
*:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

/* HERO (per page) */
.page-hero {
  min-height: 85vh; display: flex; align-items: center;
  position: relative; overflow: hidden; padding-top: 112px;
}

/* BREADCRUMB */
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  justify-content: flex-start;
  font-size: 12px; font-weight: 600; letter-spacing: 0.04em;
  color: rgba(255,255,255,0.35);
  margin-bottom: 20px;
}
.breadcrumb a {
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
}
.breadcrumb a:hover { color: var(--blue); }
.breadcrumb .breadcrumb-sep { color: rgba(255,255,255,0.2); }
.breadcrumb .breadcrumb-current { color: rgba(255,255,255,0.7); }
.page-hero-photo {
  background-size: cover; background-position: center 30%;
  background-repeat: no-repeat;
}
.page-hero-photo .hero-bg {
  background:
    linear-gradient(180deg, rgba(5,10,20,0.7) 0%, rgba(5,10,20,0.5) 40%, rgba(5,10,20,0.85) 100%),
    radial-gradient(ellipse 80% 60% at 50% 30%, rgba(0,102,255,0.12) 0%, transparent 70%);
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 35%, rgba(0,102,255,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 70% 70%, rgba(105,104,203,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 40% 30% at 20% 60%, rgba(44,156,228,0.04) 0%, transparent 60%),
    #08080C;
}
.hero-content { position: relative; z-index: 2; padding: 120px clamp(20px, 5vw, 32px) 100px; }
.hero-eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 28px; flex-wrap: wrap; }
.hero-sub { font-size: clamp(18px, 2vw, 22px); font-weight: 600; color: rgba(255,255,255,0.65); max-width: 640px; margin-bottom: 48px; line-height: 1.8; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.stat-row + .hero-ctas,
.stat-row + div > .hero-ctas { margin-top: 40px; }
.page-hero .hero-ctas, .hero-content[style*="text-align:center"] .hero-ctas { justify-content: center; }
.hero-note { font-size: 12px; color: rgba(255,255,255,0.3); margin-top: 20px; }

/* TWO COL */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
@media (max-width: 900px) { .two-col { grid-template-columns: 1fr; gap: 40px; } }

/* PHONE MOCKUP */
.phone-mockup {
  width: 280px; aspect-ratio: 9/19.5;
  background: var(--bg2); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 36px; overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5), 0 0 60px rgba(0,102,255,0.08);
  margin: 0 auto; padding: 12px;
}
.phone-inner {
  width: 100%; height: 100%;
  background: linear-gradient(180deg, #0A1628 0%, #050A14 100%);
  border-radius: 26px; overflow: hidden;
  padding: 16px; display: flex; flex-direction: column;
}
.phone-status { display: flex; justify-content: space-between; align-items: center; font-size: 10px; font-weight: 700; color: rgba(255,255,255,0.4); margin-bottom: 16px; }
.phone-header { font-size: 11px; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; color: var(--blue); margin-bottom: 12px; }
.phone-card { padding: 14px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08); border-radius: 14px; margin-bottom: 10px; }
.phone-card-title { font-size: 12px; font-weight: 800; margin-bottom: 4px; }
.phone-card-sub { font-size: 10px; color: rgba(255,255,255,0.4); }
.phone-card-btn { margin-top: 8px; padding: 6px 0; text-align: center; background: var(--blue); border-radius: 8px; font-size: 10px; font-weight: 800; color: #fff; }
.phone-tag-row { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 10px; }
.phone-tag { padding: 4px 8px; border-radius: 100px; font-size: 9px; font-weight: 800; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08); color: rgba(255,255,255,0.5); }
.phone-tag.active { background: rgba(0,102,255,0.15); border-color: rgba(0,102,255,0.3); color: var(--blue); }

/* GLASS CARDS */
.glass-card {
  padding: 36px 32px; background: var(--glass-fill);
  border: 1px solid var(--glass-stroke); border-radius: var(--radius-lg);
  box-shadow: 0 4px 24px rgba(0,0,0,0.18), 0 1px 0 rgba(255,255,255,0.03) inset;
  transition: transform 0.3s ease, border-color 0.3s, box-shadow 0.3s;
}
.glass-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0,102,255,0.3);
  box-shadow:
    0 8px 32px rgba(0,102,255,0.12),
    0 12px 40px rgba(0,0,0,0.25),
    0 2px 0 rgba(255,255,255,0.04) inset;
}

/* STAGGERED CARD ANIMATION -- only hide when JS has loaded and tagged the grid */
.grid-stagger > .glass-card, .grid-stagger > a.glass-card {
  opacity: 0; transform: translateY(24px);
}
.grid-stagger > .glass-card.card-visible, .grid-stagger > a.glass-card.card-visible {
  opacity: 1; transform: translateY(0); transition: opacity 0.5s ease, transform 0.5s ease;
}

/* GRADIENT HERO HEADLINES */
.hero-gradient-text {
  background: linear-gradient(135deg, #ffffff 30%, rgba(255,255,255,0.7) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* SECTION DIVIDERS */
.section-divider {
  height: 1px; max-width: 200px; margin: 0 auto;
  background: linear-gradient(90deg, transparent, rgba(0,102,255,0.3), transparent);
}

/* STAT PILL HOVER GRADIENT BORDER */
.stat-pill {
  position: relative; overflow: hidden;
}
.stat-pill::before {
  content: ''; position: absolute; inset: 0; border-radius: inherit;
  background: linear-gradient(135deg, rgba(0,102,255,0.2), rgba(105,104,203,0.15), rgba(44,156,228,0.2));
  opacity: 0; transition: opacity 0.3s;
  z-index: 0;
}
.stat-pill:hover::before { opacity: 1; }
.stat-pill-num, .stat-pill-label { position: relative; z-index: 1; }

/* LOGO TICKER HOVER COLOR */
.logo-ticker-item img:hover { opacity: 0.8; filter: grayscale(0) brightness(1); }

/* LIVE BADGE PULSE */
@keyframes livePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}
.pulse-dot {
  animation: livePulse 2s ease-in-out infinite;
}

/* PARALLAX HERO */
.page-hero-photo .hero-bg {
  transition: transform 0.1s linear;
  will-change: transform;
}

/* (scroll progress styles are at the top of the file) */
.card-icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 16px;
}
.card-icon-blue { background: rgba(0,102,255,0.12); border: 1px solid rgba(0,102,255,0.2); }
.card-icon-purple { background: rgba(105,104,203,0.12); border: 1px solid rgba(105,104,203,0.2); }
.card-icon-orange { background: rgba(255,85,1,0.12); border: 1px solid rgba(255,85,1,0.2); }
.card-icon-gold { background: rgba(250,201,56,0.12); border: 1px solid rgba(250,201,56,0.2); }
.card-icon-green { background: rgba(126,217,87,0.12); border: 1px solid rgba(126,217,87,0.2); }
.card-icon-sky { background: rgba(44,156,228,0.12); border: 1px solid rgba(44,156,228,0.2); }
.card-title { font-size: 18px; font-weight: 800; margin-bottom: 8px; }
.card-desc { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.7; }

/* GRIDS */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 900px) { .grid-2, .grid-3 { grid-template-columns: 1fr; } .grid-4 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .grid-4 { grid-template-columns: 1fr; } }

/* STAT PILLS */
.stat-row { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; margin-top: 48px; }
.stat-pill { padding: 20px 32px; background: var(--glass-fill); border: 1px solid var(--glass-stroke); border-radius: var(--radius-md); text-align: center; min-width: 150px; box-shadow: 0 2px 12px rgba(0,0,0,0.12); transition: transform 0.25s, box-shadow 0.25s; }
.stat-pill:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.2); }
.stat-pill-num { font-size: 36px; font-weight: 700; color: #fff; white-space: nowrap; }
.stat-pill-label { font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.4); margin-top: 6px; letter-spacing: 0.06em; text-transform: uppercase; }

/* STEPS */
.steps { display: flex; flex-direction: column; gap: 16px; margin-top: 32px; }
.step { display: flex; align-items: flex-start; gap: 20px; padding: 24px; background: var(--glass-fill); border: 1px solid var(--glass-stroke); border-radius: var(--radius-md); transition: border-color 0.2s; }
.step:hover { border-color: rgba(0,102,255,0.3); }
.step-num { width: 36px; height: 36px; flex-shrink: 0; background: rgba(0,102,255,0.15); border: 1px solid rgba(0,102,255,0.3); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 900; color: var(--blue); }
.step-title { font-size: 15px; font-weight: 700; margin-bottom: 3px; }
.step-desc { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.5; }

/* PRICING */
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 40px; }
.pricing-card { padding: 36px 32px; border-radius: var(--radius-xl); position: relative; }
.pricing-card.featured { background: linear-gradient(135deg, rgba(0,102,255,0.15) 0%, rgba(44,156,228,0.1) 100%); border: 1px solid rgba(0,102,255,0.4); box-shadow: 0 0 60px rgba(0,102,255,0.1); }
.pricing-card.basic { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07); }
.pricing-badge { position: absolute; top: 18px; right: 18px; padding: 4px 10px; border-radius: 100px; font-size: 10px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; background: rgba(126,217,87,0.15); border: 1px solid rgba(126,217,87,0.3); color: var(--green); }
.pricing-tier { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; color: var(--blue); margin-bottom: 10px; }
.pricing-price { font-size: 42px; font-weight: 900; line-height: 1; margin-bottom: 6px; }
.pricing-unit { font-size: 13px; color: rgba(255,255,255,0.4); margin-bottom: 24px; }
.pricing-features { display: flex; flex-direction: column; gap: 10px; }
.pricing-feature { display: flex; align-items: center; gap: 10px; font-size: 13px; color: rgba(255,255,255,0.7); }
.pricing-feature .check { color: var(--green); font-size: 14px; }
@media (max-width: 900px) { .pricing-grid { grid-template-columns: 1fr; } }

/* TESTIMONIALS */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 32px; }
.testimonial { padding: 28px 24px; background: var(--glass-fill); border: 1px solid var(--glass-stroke); border-radius: var(--radius-lg); }
.testimonial-emoji { font-size: 28px; margin-bottom: 12px; }
.testimonial-quote { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.65; font-style: italic; margin-bottom: 16px; }
.testimonial-author { font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.4); }
@media (max-width: 900px) { .testimonial-grid { grid-template-columns: 1fr; } }

/* REVENUE CARDS */
.revenue-card { padding: 28px 24px; border-radius: var(--radius-lg); background: var(--glass-fill); border: 1px solid var(--glass-stroke); text-align: center; }
.revenue-emoji { font-size: 28px; margin-bottom: 12px; }
.revenue-title { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.revenue-amount { font-size: 22px; font-weight: 900; margin-bottom: 4px; }
.revenue-desc { font-size: 12px; color: rgba(255,255,255,0.4); }

/* TYPE ROW */
.type-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }
.type-pill { display: flex; align-items: center; gap: 8px; padding: 10px 18px; background: var(--glass-fill); border: 1px solid var(--glass-stroke); border-radius: var(--radius-md); font-size: 13px; font-weight: 700; }

/* CTA BANNER */
.cta-banner { padding: 80px 56px; border-radius: var(--radius-xl); background: linear-gradient(135deg, rgba(0,102,255,0.14) 0%, rgba(105,104,203,0.08) 50%, rgba(0,102,255,0.06) 100%); border: 1px solid rgba(0,102,255,0.2); text-align: center; box-shadow: 0 8px 40px rgba(0,102,255,0.08); }
.cta-banner h2 { margin-bottom: 16px; }
.cta-banner p { font-size: 17px; color: rgba(255,255,255,0.55); margin-bottom: 36px; max-width: 580px; margin-left: auto; margin-right: auto; line-height: 1.7; }
.cta-banner .btn-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* LOGO ROW */
.logo-row { display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap; margin-top: 40px; opacity: 0.5; }
.logo-row span { font-size: 18px; font-weight: 800; letter-spacing: 0.02em; }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 8px; margin-top: 32px; }
.faq-item { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07); border-radius: 14px; overflow: hidden; transition: border-color 0.25s, background 0.25s; }
.faq-item:hover { border-color: rgba(0,102,255,0.2); }
.faq-item.open { border-color: rgba(0,102,255,0.35); background: rgba(0,102,255,0.04); }
.faq-q { width: 100%; padding: 18px 24px; background: none; border: none; border-radius: 14px; display: flex; align-items: center; justify-content: space-between; gap: 16px; font-family: 'Nunito', sans-serif; font-size: 15px; font-weight: 700; color: var(--white); cursor: pointer; transition: background 0.2s; text-align: left; }
.faq-q:hover { background: rgba(255,255,255,0.03); }
.faq-icon {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  transition: background 0.25s ease, transform 0.3s ease;
  position: relative; flex-shrink: 0;
}
.faq-item.open .faq-icon {
  background: #0066FF; border-color: #0066FF;
  transform: rotate(45deg);
}
.faq-icon::before, .faq-icon::after {
  content: ''; position: absolute;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  background: white; border-radius: 1px;
}
.faq-icon::before { width: 10px; height: 1.5px; }
.faq-icon::after  { width: 1.5px; height: 10px; }
.faq-body { max-height: 0; overflow: hidden; transition: max-height 0.42s cubic-bezier(0.4, 0, 0.2, 1); }
.faq-item.open .faq-body { max-height: 1200px; }
.faq-body-inner { padding: 16px 24px 24px; font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.7; }

/* FOOTER */
footer { padding: 64px 0 32px; border-top: 1px solid rgba(255,255,255,0.06); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand { font-size: 20px; font-weight: 900; margin-bottom: 12px; }
.footer-brand span { color: var(--blue); }
.footer-desc { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.6; max-width: 320px; }
.footer-col-title { font-size: 11px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.06); display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: rgba(255,255,255,0.25); }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; } }

/* IMPACT BANNER */
.impact-banner { text-align: center; margin-top: 32px; padding: 24px 32px; background: rgba(126,217,87,0.06); border: 1px solid rgba(126,217,87,0.15); border-radius: var(--radius-md); }
.impact-banner .label { font-size: 14px; color: rgba(255,255,255,0.5); }
.impact-banner .number { font-size: 32px; font-weight: 900; color: var(--green); margin-top: 4px; }
.impact-banner .sub { font-size: 12px; color: rgba(255,255,255,0.35); margin-top: 2px; }

/* SECTION ALT */
.section-alt { background: rgba(255,255,255,0.015); }

/* FADE UP */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
/* Hero content visible immediately — no FOIC (flash of invisible content) */
.page-hero .fade-up { opacity: 1 !important; transform: none !important; transition: none !important; }

/* SECTION SPACER */
.section-spacer { height: 1px; background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.06) 50%, transparent 100%); }

/* ─── THE INDEX (Press / Articles) ─── */

/* Filter tabs */
.index-filters {
  display: flex; gap: 8px; flex-wrap: wrap;
}
.index-filter {
  padding: 8px 20px; border-radius: 100px;
  font-family: 'Nunito', sans-serif; font-size: 13px; font-weight: 700;
  color: rgba(255,255,255,0.5); background: var(--glass-fill);
  border: 1px solid var(--glass-stroke); cursor: pointer;
  transition: all 0.2s;
}
.index-filter:hover { color: var(--white); border-color: rgba(255,255,255,0.15); }
.index-filter.active { color: var(--white); background: var(--blue); border-color: var(--blue); }

/* Article cards grid */
.index-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
.index-card {
  padding: 32px; background: var(--glass-fill);
  border: 1px solid var(--glass-stroke); border-radius: var(--radius-lg);
  transition: border-color 0.2s, transform 0.2s;
  display: flex; flex-direction: column; gap: 12px;
}
.index-card:hover { border-color: rgba(0,102,255,0.3); transform: translateY(-2px); }
.index-card-featured {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, rgba(0,102,255,0.08) 0%, rgba(105,104,203,0.06) 100%);
  border-color: rgba(0,102,255,0.2);
}
.index-card-coming { opacity: 0.6; }
.index-card-coming:hover { opacity: 0.8; transform: none; cursor: default; }

.index-card-badge {
  display: inline-block; padding: 4px 12px; border-radius: 100px;
  font-size: 11px; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase;
  background: rgba(0,102,255,0.15); color: var(--blue);
  width: fit-content;
}
.index-card-badge-purple { background: rgba(105,104,203,0.15); color: var(--purple); }
.index-card-badge-sky { background: rgba(44,156,228,0.15); color: var(--sky); }
.index-card-badge-orange { background: rgba(255,85,1,0.15); color: var(--orange); }

.index-card-date {
  font-size: 12px; color: rgba(255,255,255,0.35); font-weight: 600;
}
.index-card-title {
  font-size: 18px; font-weight: 800; line-height: 1.35;
  color: var(--white);
}
.index-card-featured .index-card-title { font-size: 24px; }
.index-card-excerpt {
  font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.65;
}
.index-card-meta {
  display: flex; gap: 16px; font-size: 12px; color: rgba(255,255,255,0.3);
  font-weight: 600; margin-top: auto; padding-top: 8px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

@media (max-width: 700px) {
  .index-grid { grid-template-columns: 1fr; }
  .index-card-featured .index-card-title { font-size: 20px; }
}

/* ─── ARTICLE (full read view) ─── */
.article-section { padding: 96px 0; }
.article-header { margin-bottom: 48px; }
.article-header h1 {
  font-size: clamp(28px, 5vw, 40px); font-weight: 900;
  line-height: 1.2; margin-bottom: 20px;
}
.article-meta {
  display: flex; flex-wrap: wrap; gap: 8px; align-items: center;
  font-size: 13px; color: rgba(255,255,255,0.4); font-weight: 600;
}
.article-meta-sep { color: rgba(255,255,255,0.15); }

.article-body h2 {
  font-size: 22px; font-weight: 800; margin: 48px 0 16px;
  color: var(--white);
}
.article-body h3 {
  font-size: 17px; font-weight: 700; margin: 32px 0 12px;
  color: var(--white);
}
.article-body p {
  font-size: 16px; line-height: 1.8; color: rgba(255,255,255,0.65);
  margin-bottom: 20px;
}
.article-lede {
  font-size: 18px !important; line-height: 1.75 !important;
  color: rgba(255,255,255,0.75) !important; font-weight: 600;
}

.article-body blockquote {
  margin: 40px 0; padding: 28px 32px;
  border-left: 3px solid var(--blue);
  background: rgba(0,102,255,0.06);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
.article-body blockquote p {
  font-size: 17px; font-style: italic;
  color: rgba(255,255,255,0.8); margin-bottom: 12px;
}
.article-body blockquote cite {
  font-size: 13px; font-weight: 700; font-style: normal;
  color: var(--blue);
}

.article-divider {
  height: 1px; margin: 48px 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.08) 50%, transparent 100%);
}

.article-about h3 {
  font-size: 15px; font-weight: 800; margin: 24px 0 8px;
  letter-spacing: 0.02em;
}
.article-about p {
  font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.7;
}

.article-contact {
  margin-top: 48px; padding: 24px 28px;
  background: var(--glass-fill); border: 1px solid var(--glass-stroke);
  border-radius: var(--radius-md);
}
.article-contact-inner {
  display: flex; align-items: center; gap: 24px;
}
.article-contact-photo {
  width: 72px; height: 72px; border-radius: 50%;
  object-fit: cover; flex-shrink: 0;
  border: 2px solid rgba(255,255,255,0.1);
}
@media (max-width: 500px) {
  .article-contact-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
}
.article-contact-label {
  font-size: 11px; font-weight: 800; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 8px;
}
.article-contact-name { font-size: 16px; font-weight: 800; }
.article-contact-role { font-size: 13px; color: rgba(255,255,255,0.5); margin: 4px 0 8px; }
.article-contact-email { font-size: 14px; color: var(--blue); font-weight: 700; }
.article-contact-email:hover { text-decoration: underline; }

/* ─── TEAM PAGE ─── */
.team-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.team-card {
  padding: 32px 24px; background: var(--glass-fill);
  border: 1px solid var(--glass-stroke); border-radius: var(--radius-lg);
  text-align: center; display: flex; flex-direction: column; align-items: center;
  transition: border-color 0.2s, transform 0.2s;
}
.team-card:hover { border-color: rgba(0,102,255,0.2); transform: translateY(-3px); }
.team-card-featured { border-color: rgba(0,102,255,0.2); background: linear-gradient(135deg, rgba(0,102,255,0.06) 0%, rgba(105,104,203,0.04) 100%); }

.team-photo {
  width: 96px; height: 96px; border-radius: 50%;
  object-fit: cover; margin-bottom: 16px;
  border: 2px solid rgba(255,255,255,0.1);
}
.team-photo-placeholder {
  background: rgba(255,255,255,0.06);
  border: 2px dashed rgba(255,255,255,0.12);
}
.team-card-placeholder { opacity: 0.55; }
.team-name { font-size: 17px; font-weight: 800; margin-bottom: 4px; }
.team-role {
  font-size: 11px; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 14px;
}
.team-bio {
  font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.65; flex: 1;
}
.team-tags {
  display: flex; gap: 6px; flex-wrap: wrap; justify-content: center; margin-top: 8px;
}
.team-tags:first-of-type { margin-top: 16px; }
.team-tag {
  padding: 4px 10px; border-radius: 100px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.04em;
  text-transform: uppercase;
}
.team-tag-blue { background: rgba(0,102,255,0.15); color: var(--blue); }
.team-tag-purple { background: rgba(105,104,203,0.15); color: var(--purple); }
.team-tag-orange { background: rgba(255,85,1,0.15); color: var(--orange); }
.team-tag-gold { background: rgba(250,201,56,0.15); color: var(--gold); }
.team-tag-sky { background: rgba(44,156,228,0.15); color: var(--sky); }
.team-tag-green { background: rgba(126,217,87,0.15); color: var(--green); }

/* Leadership row: 2 wide cards */
.team-grid-lead { grid-template-columns: 1fr 1fr; }

@media (max-width: 900px) {
  .team-grid { grid-template-columns: 1fr 1fr; }
  .team-grid-lead { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .team-grid { grid-template-columns: 1fr; }
  .team-bio { display: none; }
  .team-card { padding: 24px 20px; }
}

/* ─── 2035 MANIFESTO SCROLL REVEALS ─── */
.manifesto-reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 1s ease, transform 1s ease;
}
.manifesto-reveal.visible {
  opacity: 1; transform: translateY(0);
}

/* Ambient orb for 2035 page */
.ambient-orb {
  position: fixed; top: 30%; left: 50%; width: 600px; height: 600px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(0,102,255,0.06) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none; z-index: 0;
  animation: orbDrift 20s ease-in-out infinite;
}
@keyframes orbDrift {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
  33% { transform: translate(-40%, -60%) scale(1.1); opacity: 0.8; }
  66% { transform: translate(-60%, -40%) scale(0.9); opacity: 0.5; }
}

/* ─── WARM PAGE VARIANTS (Drop, Explorers) ─── */
.page-warm .hero-bg {
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(255,85,1,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 20% 80%, rgba(250,201,56,0.06) 0%, transparent 70%),
    radial-gradient(ellipse at 50% 50%, #050A14 0%, #0A1628 100%);
}
.page-warm .section-label { color: var(--orange); }
.page-warm .highlight { color: var(--orange); }
.page-warm .btn-primary::after {
  background: linear-gradient(135deg, #CC4400 0%, #FF5501 50%, #FF7733 100%);
}

/* ─── MICRO ANIMATIONS ─── */

/* 1. FLOATING HERO PARTICLES (CSS only) */
.hero-particles {
  position: absolute; inset: 0; z-index: 1;
  overflow: hidden; pointer-events: none;
}
.hero-particles span {
  position: absolute; display: block;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  animation: particleFloat linear infinite;
  will-change: transform, opacity;
}
/* Individual particle sizes, positions, and timing */
.hero-particles span:nth-child(1)  { width: 5px;  height: 5px;  left: 8%;   bottom: -10px; opacity: 0.08; animation-duration: 18s; animation-delay: 0s; }
.hero-particles span:nth-child(2)  { width: 8px;  height: 8px;  left: 15%;  bottom: -10px; opacity: 0.06; animation-duration: 22s; animation-delay: 2s; }
.hero-particles span:nth-child(3)  { width: 4px;  height: 4px;  left: 25%;  bottom: -10px; opacity: 0.12; animation-duration: 16s; animation-delay: 4s; background: rgba(0,102,255,0.12); }
.hero-particles span:nth-child(4)  { width: 10px; height: 10px; left: 35%;  bottom: -10px; opacity: 0.05; animation-duration: 25s; animation-delay: 1s; }
.hero-particles span:nth-child(5)  { width: 6px;  height: 6px;  left: 45%;  bottom: -10px; opacity: 0.10; animation-duration: 20s; animation-delay: 6s; background: rgba(44,156,228,0.10); }
.hero-particles span:nth-child(6)  { width: 12px; height: 12px; left: 55%;  bottom: -10px; opacity: 0.05; animation-duration: 28s; animation-delay: 3s; }
.hero-particles span:nth-child(7)  { width: 4px;  height: 4px;  left: 65%;  bottom: -10px; opacity: 0.15; animation-duration: 15s; animation-delay: 7s; background: rgba(0,102,255,0.10); }
.hero-particles span:nth-child(8)  { width: 7px;  height: 7px;  left: 72%;  bottom: -10px; opacity: 0.07; animation-duration: 23s; animation-delay: 5s; }
.hero-particles span:nth-child(9)  { width: 5px;  height: 5px;  left: 82%;  bottom: -10px; opacity: 0.10; animation-duration: 19s; animation-delay: 8s; background: rgba(44,156,228,0.08); }
.hero-particles span:nth-child(10) { width: 9px;  height: 9px;  left: 90%;  bottom: -10px; opacity: 0.06; animation-duration: 26s; animation-delay: 2.5s; }
.hero-particles span:nth-child(11) { width: 4px;  height: 4px;  left: 50%;  bottom: -10px; opacity: 0.12; animation-duration: 17s; animation-delay: 9s; background: rgba(0,102,255,0.08); }
.hero-particles span:nth-child(12) { width: 6px;  height: 6px;  left: 20%;  bottom: -10px; opacity: 0.08; animation-duration: 21s; animation-delay: 4.5s; }

@keyframes particleFloat {
  0%   { transform: translateY(0) translateX(0); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { transform: translateY(-100vh) translateX(40px); opacity: 0; }
}

/* Alternate horizontal drift direction for even particles */
.hero-particles span:nth-child(even) {
  animation-name: particleFloatAlt;
}
@keyframes particleFloatAlt {
  0%   { transform: translateY(0) translateX(0); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { transform: translateY(-100vh) translateX(-30px); opacity: 0; }
}

/* Ensure hero content stays above particles */
.hero-content { position: relative; z-index: 2; }

/* 2. BUTTON HOVER MICRO-INTERACTIONS — updated in original .btn-primary / .btn-glass rules above */

/* 3. GLASS CARD HOVER BLUE GLOW — updated in original .glass-card:hover rule above */

/* 4. LINK HOVER UNDERLINE SLIDE-IN */
.nav-links a,
.footer-links a,
.nav-dropdown-item-name {
  position: relative;
}
.footer-links a::after {
  content: '';
  position: absolute; bottom: -2px; left: 0;
  width: 0; height: 1.5px;
  background: var(--blue);
  transition: width 0.25s ease;
}
.footer-links a:hover::after {
  width: 100%;
}
/* Exclude dropdown trigger from underline (it has its own behavior) */
.nav-links .nav-dropdown-trigger::after,
.nav-dropdown-item::after { display: none; }

/* 5. STAT PILL ENTRANCE SCALE-UP */
.fade-up .stat-pill {
  opacity: 0;
  transform: scale(0.95) translateY(12px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.fade-up.visible .stat-pill {
  opacity: 1;
  transform: scale(1) translateY(0);
}
/* Stagger the pills */
.fade-up.visible .stat-pill:nth-child(1) { transition-delay: 0.1s; }
.fade-up.visible .stat-pill:nth-child(2) { transition-delay: 0.2s; }
.fade-up.visible .stat-pill:nth-child(3) { transition-delay: 0.3s; }
.fade-up.visible .stat-pill:nth-child(4) { transition-delay: 0.4s; }
.fade-up.visible .stat-pill:nth-child(5) { transition-delay: 0.5s; }
.fade-up.visible .stat-pill:nth-child(6) { transition-delay: 0.6s; }

/* ─── REDUCED MOTION ─── */
@media (prefers-reduced-motion: reduce) {
  .hero-particles span { animation: none !important; opacity: 0 !important; }
  .btn-primary, .btn-glass, .glass-card, .stat-pill { transition: none !important; }
  .btn-primary:hover { transform: none; animation: none; }
  .btn-glass:hover { transform: none; }
  .glass-card:hover { transform: none; }
  .fade-up .stat-pill { opacity: 1; transform: none; transition: none !important; }
  .footer-links a::after { transition: none !important; }
}
