/* ============================================================
   META MARKETS CAPITAL — styles.css  v4
   Palette: #060A14 deep navy | #FFFFFF white | #1D6FD8 blue (CTA only)
   Philosophy: blue is reserved for primary actions only.
               All UI elements use silver/white accents.
   ============================================================ */

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

/* ---------- Design tokens ---------- */
:root {
  /* Backgrounds — deep navy */
  --bg:         #060A14;
  --bg-2:       #0C1528;
  --bg-3:       #0F1D3A;
  --bg-card:    rgba(255, 255, 255, 0.04);
  --bg-card-hi: rgba(255, 255, 255, 0.07);

  /* Text */
  --white:      #FFFFFF;
  --white-pure: #FFFFFF;
  --silver:     #8FA8C4;
  --silver-hi:  #B0C8E0;
  --silver-dim: #3A567A;

  /* Navy blue — CTA and hero headline ONLY */
  --accent:      #1D6FD8;
  --accent-lt:   #4090E8;
  --accent-glow: #6AAEF5;
  --accent-dim:  rgba(29, 111, 216, 0.10);
  --accent-dim2: rgba(29, 111, 216, 0.20);

  /* UI surface elements */
  --ui:          rgba(255, 255, 255, 0.06);
  --ui-hi:       rgba(255, 255, 255, 0.11);
  --ui-border:   rgba(255, 255, 255, 0.06);
  --ui-border-hi: rgba(255, 255, 255, 0.14);

  /* Borders — subtle navy tint for the premium feel */
  --border:         rgba(74, 144, 217, 0.14);
  --border-hi:      rgba(74, 144, 217, 0.32);
  --border-accent:  rgba(29, 111, 216, 0.50);

  /* Fonts */
  --font-head: 'Montserrat', 'Inter', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  /* Easing */
  --ease:     cubic-bezier(0.22, 1, 0.36, 1);
  --ease-std: cubic-bezier(0.4, 0, 0.2, 1);
  --t:        0.45s cubic-bezier(0.22, 1, 0.36, 1);
  --t-fast:   0.22s cubic-bezier(0.22, 1, 0.36, 1);
  --transition: var(--t);

  /* Layout */
  --section-pad: 72px 0;
  --r:    10px;
  --r-sm:  6px;
}

/* ---------- Base ---------- */
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  line-height: 1.75;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a   { color: inherit; text-decoration: none; }

::-webkit-scrollbar       { width: 3px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.12); border-radius: 2px; }

/* ---------- Progress bar — very subtle ---------- */
#progress-bar {
  position: fixed; top: 0; left: 0; z-index: 2000;
  height: 1px; width: 0%;
  background: rgba(255,255,255,0.25);
  transition: width 0.1s linear;
  pointer-events: none;
}

/* ============================================================
   LOGOS — standardized across all uses
   All logos: brightness(0) invert(1) = pure white
   ============================================================ */
.nav-logo-img,
.hero-logo-blend,
.footer-logo-img { filter: brightness(0) invert(1); }

.section-logo {
  display: block; height: 56px; width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.06; margin: 0 auto 2rem;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--white-pure);
}

.section-label {
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 1.25rem;
  display: block;
}

.section-title {
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white-pure);
  margin-bottom: 1.25rem;
  letter-spacing: -0.032em;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--silver);
  max-width: 580px;
  line-height: 1.88;
}

.accent-line {
  width: 28px; height: 1px;
  background: rgba(255,255,255,0.22);
  margin-bottom: 2rem;
  border-radius: 1px;
}

/* ---------- Container ---------- */
.container { width: 90%; max-width: 1180px; margin: 0 auto; }

/* ============================================================
   NAVIGATION
   ============================================================ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 5%;
  height: 64px;
  display: flex; align-items: center; justify-content: space-between;
  transition: background var(--t), border-color var(--t);
  border-bottom: 1px solid transparent;
}
#navbar.scrolled {
  background: rgba(12, 20, 32, 0.93);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border-bottom-color: var(--border);
}

.nav-logo { display: flex; align-items: center; }
.nav-logo-img {
  height: 50px; width: auto;
  transition: opacity var(--t-fast), transform var(--t-fast);
}
.nav-logo:hover .nav-logo-img { opacity: 0.72; transform: scale(1.03); }

.footer-logo-img {
  height: 72px; width: auto;
  margin-bottom: 1.5rem;
}

/* Nav links */
.nav-links { display: none; list-style: none; gap: 2.5rem; align-items: center; }
@media(min-width: 768px) { .nav-links { display: flex; } }
.nav-links a {
  font-size: 0.67rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--silver); font-weight: 600; position: relative;
  transition: color var(--t-fast);
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0;
  width: 0; height: 1px; background: rgba(255,255,255,0.4);
  transition: width var(--t-fast);
}
.nav-links a:hover { color: var(--white-pure); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  display: none; padding: 8px 20px;
  border: 1px solid var(--border-accent); color: var(--accent-lt);
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  border-radius: var(--r-sm); background: transparent; font-family: var(--font-head);
  transition: background var(--t-fast), color var(--t-fast);
}
.nav-cta:hover { background: var(--accent-dim); color: var(--white-pure); }
@media(min-width: 768px) { .nav-cta { display: block; } }

/* Hamburger */
.hamburger {
  display: flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 36px; height: 36px; cursor: pointer; background: none; border: none; padding: 4px;
}
@media(min-width: 768px) { .hamburger { display: none; } }
.hamburger span {
  display: block; width: 100%; height: 1px;
  background: var(--silver); border-radius: 1px;
  transition: transform var(--t-fast), opacity var(--t-fast);
}
.hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed; top: 64px; left: 0; right: 0; z-index: 999;
  background: rgba(12, 20, 32, 0.97); backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  padding: 2rem 5%; border-bottom: 1px solid var(--border);
  transform: translateY(-110%); opacity: 0;
  transition: transform var(--t), opacity var(--t);
}
.mobile-menu.open { transform: translateY(0); opacity: 1; }
.mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: 1.5rem; }
.mobile-menu a {
  font-size: 0.84rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--silver); font-weight: 600; transition: color var(--t-fast);
}
.mobile-menu a:hover { color: var(--white-pure); }
.mobile-cta-wrap { margin-top: 1.75rem; }
.mobile-cta {
  display: inline-block; padding: 11px 26px;
  border: 1px solid var(--border-accent); color: var(--accent-lt);
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  border-radius: var(--r-sm);
  transition: background var(--t-fast), color var(--t-fast); cursor: pointer;
}
.mobile-cta:hover { background: var(--accent-dim); color: var(--white-pure); }

/* ============================================================
   HERO
   ============================================================ */
#hero {
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding-top: 64px;
}

.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(74,144,217,0.10) 0%, transparent 60%),
    radial-gradient(ellipse 55% 80% at 0% 110%, rgba(12,20,32,0.95) 0%, transparent 55%),
    var(--bg);
}

.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.024) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 75% 72% at 50% 56%, black 0%, transparent 84%);
  -webkit-mask-image: radial-gradient(ellipse 75% 72% at 50% 56%, black 0%, transparent 84%);
  animation: gridPulse 24s ease-in-out infinite alternate;
}
@keyframes gridPulse { 0% { opacity: 0.22; } 100% { opacity: 0.68; } }

.hero-orb { position: absolute; border-radius: 50%; filter: blur(130px); pointer-events: none; }
.hero-orb-1 {
  width: 680px; height: 480px;
  background: rgba(74,144,217,0.08);
  top: -180px; right: -80px;
  animation: orbDrift 20s ease-in-out infinite alternate;
}
.hero-orb-2 {
  width: 380px; height: 380px;
  background: rgba(18,30,56,0.55);
  bottom: -80px; left: -40px;
  animation: orbDrift 14s ease-in-out infinite alternate-reverse;
}
@keyframes orbDrift {
  0%   { transform: translate(0,0) scale(1); }
  100% { transform: translate(28px,-22px) scale(1.06); }
}

.hero-content {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center;
  text-align: center; max-width: 900px; margin: 0 auto;
}

.hero-logo-blend {
  height: 180px; width: auto; max-width: 500px;
  margin-bottom: 3rem;
  animation: logoReveal 1.1s var(--ease) both;
}
@keyframes logoReveal {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-headline {
  font-size: clamp(2.6rem, 6.5vw, 4.8rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  text-align: center;
  color: var(--white-pure);
  line-height: 1.06;
  margin-bottom: 1.75rem;
}
.hero-headline em {
  font-style: normal;
  background: linear-gradient(120deg, var(--accent) 0%, var(--accent-lt) 50%, var(--accent-glow) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-sub {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  color: var(--silver);
  max-width: 600px; line-height: 1.92;
  margin-bottom: 2.75rem;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  padding: 15px 34px;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-head);
  font-size: 0.69rem; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase;
  border: none; border-radius: var(--r-sm); cursor: pointer;
  transition: background var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
  box-shadow: 0 4px 24px rgba(29,111,216,0.32);
  display: inline-block;
  will-change: transform;
}
.btn-primary:hover {
  background: var(--accent-lt);
  transform: translateY(-2px);
  box-shadow: 0 14px 44px rgba(29,111,216,0.50);
}
.btn-primary:active { transform: translateY(0); }
.btn-primary.btn-lg { padding: 18px 48px; font-size: 0.78rem; }

.btn-secondary {
  padding: 14px 34px;
  border: 1px solid var(--border-hi);
  color: var(--silver-hi); font-family: var(--font-head);
  font-size: 0.69rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  background: transparent; border-radius: var(--r-sm); cursor: pointer;
  transition: border-color var(--t-fast), color var(--t-fast), background var(--t-fast);
  display: inline-block;
}
.btn-secondary:hover {
  border-color: rgba(255,255,255,0.3);
  color: var(--white-pure);
  background: var(--ui);
}

/* Keep old alias */
.btn-outline-gold { @extend .btn-secondary; }

/* Scroll indicator */
.scroll-indicator {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  z-index: 2; opacity: 0;
  animation: scrollReveal 0.8s 2.2s var(--ease) forwards;
}
@keyframes scrollReveal { to { opacity: 0.28; } }
.scroll-indicator:hover { opacity: 0.6 !important; }
.scroll-indicator span { font-size: 0.54rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--silver-dim); }
.scroll-mouse {
  width: 17px; height: 27px;
  border: 1px solid rgba(255,255,255,0.12); border-radius: 9px; position: relative;
}
.scroll-mouse::after {
  content: ''; position: absolute; top: 5px; left: 50%; transform: translateX(-50%);
  width: 2px; height: 4px; background: rgba(255,255,255,0.35); border-radius: 1px;
  animation: scrollDot 2.2s ease-in-out infinite;
}
@keyframes scrollDot {
  0%   { transform: translateX(-50%) translateY(0);   opacity: 0.9; }
  70%  { transform: translateX(-50%) translateY(8px); opacity: 0; }
  100% { transform: translateX(-50%) translateY(0);   opacity: 0; }
}

/* ============================================================
   BELOW-HERO WRAPPER
   ============================================================ */
#below-hero { position: relative; }
#below-hero::before { display: none; }
#below-hero > * { position: relative; z-index: 1; }

/* ============================================================
   STATS BAR
   ============================================================ */
#stats-bar {
  padding: 60px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-2);
}
.stats-bar-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 0; flex-wrap: wrap;
}
.stat-item {
  flex: 1; min-width: 180px;
  text-align: center; padding: 1.5rem 2rem;
}
.stat-num {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  font-weight: 900;
  color: var(--white-pure);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-num span { color: var(--accent-lt); }
.stat-label {
  font-size: 0.75rem;
  color: var(--silver-dim);
  max-width: 160px; margin: 0 auto;
  line-height: 1.55;
  letter-spacing: 0.01em;
}
.stat-divider {
  width: 1px; height: 64px;
  background: var(--border);
  flex-shrink: 0;
}
@media(max-width: 640px) { .stat-divider { display: none; } }

/* ============================================================
   PROBLEM SECTION — redesigned
   ============================================================ */
#problem { padding: var(--section-pad); }

.problem-header {
  text-align: center; max-width: 760px; margin: 0 auto 2rem;
}
.problem-lead {
  font-size: 1.06rem; color: var(--silver-hi); line-height: 1.82;
  margin-top: 1.25rem;
}

.problem-context {
  max-width: 820px; margin: 0 auto 2rem;
  padding: 2rem 2.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 2px solid rgba(255,255,255,0.18);
  border-radius: 0 var(--r) var(--r) 0;
}
.problem-context p {
  font-size: 0.98rem; color: var(--silver); line-height: 1.92;
}

.problem-shifts {
  display: grid; grid-template-columns: 1fr; gap: 1.25rem;
  max-width: 960px; margin: 0 auto 2rem;
}
@media(min-width: 768px) { .problem-shifts { grid-template-columns: 1fr 1fr; } }

.shift-card {
  padding: 1.75rem 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  position: relative; overflow: hidden;
  transition: border-color var(--t-fast), transform var(--t), background var(--t-fast);
  will-change: transform;
}
.shift-card:hover {
  border-color: var(--border-hi);
  transform: translateY(-4px);
  background: var(--bg-card-hi);
}
.shift-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.16), transparent);
  opacity: 0; transition: opacity var(--t);
}
.shift-card:hover::before { opacity: 1; }

.shift-num {
  font-family: var(--font-head); font-size: 5rem; font-weight: 900;
  color: rgba(255,255,255,0.04); position: absolute; top: 1rem; right: 1.5rem;
  line-height: 1; letter-spacing: -0.06em; pointer-events: none;
  transition: color var(--t);
}
.shift-card:hover .shift-num { color: rgba(255,255,255,0.08); }

.shift-icon {
  width: 46px; height: 46px; border-radius: var(--r-sm);
  background: var(--ui); border: 1px solid var(--ui-border-hi);
  display: flex; align-items: center; justify-content: center;
  color: var(--silver-hi); margin-bottom: 1.5rem;
  position: relative; z-index: 1;
  transition: background var(--t-fast);
}
.shift-card:hover .shift-icon { background: var(--ui-hi); }

.shift-card h3 {
  font-size: 1.06rem; font-weight: 800; color: var(--white-pure);
  margin-bottom: 0.85rem; position: relative; z-index: 1;
  letter-spacing: -0.02em;
}
.shift-card p {
  font-size: 0.88rem; color: var(--silver); line-height: 1.82;
  position: relative; z-index: 1;
}

.problem-conclusion {
  max-width: 820px; margin: 0 auto;
  padding: 1.75rem 2.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  text-align: center;
}
.problem-conclusion blockquote {
  font-size: 1.08rem; color: var(--white-pure);
  font-style: italic; line-height: 1.72;
  font-family: var(--font-head); font-weight: 600;
  letter-spacing: -0.01em;
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
#services {
  padding: var(--section-pad);
  background: var(--bg-2);
  position: relative; overflow: hidden;
}
#services::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 20% 30%, rgba(74,144,217,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.services-header { text-align: center; margin-bottom: 2.5rem; }
.services-header .section-title { font-size: clamp(2.2rem, 5vw, 3.6rem); }
.services-header .accent-line { margin: 0 auto 1.75rem; }
.services-tagline {
  font-size: 0.96rem; color: var(--silver);
  max-width: 500px; margin: 0 auto; line-height: 1.85;
}

.services-identity {
  max-width: 700px; margin: 0 auto 2.5rem;
  padding: 2.25rem 2.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  text-align: center;
}
.services-identity-quote {
  font-family: var(--font-head);
  font-size: 1.18rem; font-weight: 700;
  color: var(--white-pure);
  line-height: 1.55; letter-spacing: -0.02em;
  margin-bottom: 0.85rem;
}
.services-identity-sub {
  font-size: 0.92rem; color: var(--silver); line-height: 1.78;
}
.services-identity-sub strong { color: var(--silver-hi); font-weight: 600; }

.services-grid {
  display: grid; grid-template-columns: 1fr; gap: 1.5rem;
}
@media(min-width: 768px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  position: relative; padding: 1.75rem 1.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  transition: border-color var(--t-fast), transform var(--t), background var(--t-fast);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  will-change: transform;
}
.service-card:hover {
  border-color: var(--border-hi);
  transform: translateY(-6px);
  background: var(--bg-card-hi);
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  opacity: 0; transition: opacity var(--t);
}
.service-card:hover::before { opacity: 1; }

.service-num {
  font-family: var(--font-head);
  font-size: 5.5rem; font-weight: 900;
  color: rgba(255,255,255,0.03);
  position: absolute; top: 1rem; right: 1.5rem;
  line-height: 1; letter-spacing: -0.06em;
  pointer-events: none;
  transition: color var(--t);
}
.service-card:hover .service-num { color: rgba(255,255,255,0.065); }

.service-icon {
  width: 54px; height: 54px;
  background: var(--ui);
  border: 1px solid var(--ui-border-hi);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--silver-hi); margin-bottom: 1.75rem;
  position: relative; z-index: 1;
  transition: background var(--t-fast), border-color var(--t-fast);
}
.service-card:hover .service-icon { background: var(--ui-hi); border-color: rgba(255,255,255,0.28); }

.service-card h3 {
  font-size: 1.18rem; font-weight: 800; color: var(--white-pure);
  margin-bottom: 1rem; position: relative; z-index: 1;
  letter-spacing: -0.02em;
}
.service-card p {
  font-size: 0.88rem; color: var(--silver); line-height: 1.82;
  position: relative; z-index: 1;
}

/* ============================================================
   PHILOSOPHY SECTION
   ============================================================ */
#philosophy { padding: var(--section-pad); position: relative; overflow: hidden; }
#philosophy::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 20% 50%, rgba(74,144,217,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.philosophy-layout {
  display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center;
}
@media(min-width: 900px) { .philosophy-layout { grid-template-columns: 5fr 4fr; gap: 4.5rem; } }

.philosophy-quote-col { position: relative; }
.philosophy-quote {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 900;
  color: var(--white-pure);
  letter-spacing: -0.04em;
  line-height: 1.08;
  font-style: normal;
  position: relative;
}
.philosophy-quote::before {
  content: '"';
  position: absolute; top: -1.5rem; left: -0.5rem;
  font-size: 8rem; font-weight: 900;
  color: rgba(255,255,255,0.04);
  line-height: 1; pointer-events: none;
  font-family: var(--font-head);
}

.philosophy-text-col { display: flex; flex-direction: column; gap: 1.25rem; }
.philosophy-text-col p { font-size: 0.96rem; color: var(--silver); line-height: 1.88; }
.philosophy-text-col p + p { padding-top: 0.25rem; }

.philosophy-tags {
  display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 0.5rem;
}
.philosophy-tag {
  display: inline-block;
  padding: 5px 14px;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.67rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--silver-dim);
}

/* ============================================================
   PROCESS SECTION
   ============================================================ */
#process { padding: var(--section-pad); background: var(--bg-2); }

.process-header { text-align: center; margin-bottom: 2.5rem; }
.process-header .accent-line { margin: 0 auto 1.75rem; }

.process-steps {
  display: grid; grid-template-columns: 1fr; gap: 1.5rem;
  align-items: start; position: relative;
}
@media(min-width: 768px) {
  .process-steps { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
}

.process-step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 1.75rem 1.5rem;
  text-align: center;
  position: relative; overflow: hidden;
  transition: border-color var(--t-fast), transform var(--t);
  will-change: transform;
}
.process-step:hover { border-color: var(--border-hi); transform: translateY(-4px); }

.process-step-num {
  font-family: var(--font-head);
  font-size: 0.64rem; font-weight: 800;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--silver-dim); margin-bottom: 1.25rem;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.process-step-num::before {
  content: '';
  display: inline-block; width: 20px; height: 20px;
  border: 1px solid var(--border-hi); border-radius: 50%;
  font-size: 0.6rem; line-height: 1;
  display: flex; align-items: center; justify-content: center;
}

.process-num-badge {
  width: 44px; height: 44px;
  background: var(--ui); border: 1px solid var(--border-hi);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 1.1rem; font-weight: 900;
  color: var(--white-pure); margin: 0 auto 1.5rem;
  transition: background var(--t-fast), border-color var(--t-fast);
}
.process-step:hover .process-num-badge { background: var(--ui-hi); border-color: rgba(255,255,255,0.28); }

.process-step h3 { font-size: 1rem; font-weight: 700; color: var(--white-pure); margin-bottom: 0.75rem; }
.process-step p  { font-size: 0.84rem; color: var(--silver); line-height: 1.78; }

.process-cta { text-align: center; margin-top: 2rem; }

/* ============================================================
   TRUST SECTION
   ============================================================ */
#trust { padding: var(--section-pad); position: relative; overflow: hidden; }
#trust::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 60% at 50% 50%, rgba(74,144,217,0.04) 0%, transparent 65%);
  pointer-events: none;
}

.trust-inner {
  max-width: 760px; margin: 0 auto; text-align: center;
  position: relative; z-index: 1;
}
.trust-inner .section-title { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 1.5rem; }
.trust-inner .section-subtitle { margin: 0 auto 2rem; }

.trust-mission {
  font-size: 1.05rem; color: var(--silver-hi);
  font-style: italic; line-height: 1.72;
  padding: 1.5rem 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 2px solid rgba(255,255,255,0.22);
  border-radius: var(--r);
  margin: 1.5rem 0;
  text-align: left;
}

.trust-stats {
  display: flex; align-items: center; justify-content: center;
  gap: 2.5rem; flex-wrap: wrap; margin-top: 1.75rem;
  padding-top: 1.75rem; border-top: 1px solid var(--border);
}
.trust-stat { text-align: center; }
.trust-stat-num {
  font-family: var(--font-head); font-size: 2.2rem; font-weight: 900;
  color: var(--white-pure); letter-spacing: -0.04em; line-height: 1; margin-bottom: 0.4rem;
}
.trust-stat-label {
  font-size: 0.66rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--silver-dim);
}

/* ============================================================
   FIND US HERE
   ============================================================ */
#find-us {
  padding: var(--section-pad);
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}
.find-us-inner { text-align: center; }
.find-us-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem); color: var(--white-pure);
  margin-bottom: 1rem; letter-spacing: -0.032em;
}
.find-us-subtitle { font-size: 0.96rem; color: var(--silver); max-width: 460px; margin: 0 auto 2.25rem; line-height: 1.82; }

.find-us-cards {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(215px, 1fr));
  gap: 1rem; max-width: 840px; margin: 0 auto;
}
.find-us-card {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--r); color: var(--silver);
  transition: color var(--t-fast), border-color var(--t-fast), transform var(--t), background var(--t-fast);
  backdrop-filter: blur(10px); text-align: left;
  will-change: transform;
}
.find-us-card:hover {
  color: var(--white-pure); border-color: var(--border-hi);
  transform: translateY(-4px); background: var(--bg-card-hi);
}
.find-us-card-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--ui); border-radius: var(--r-sm); color: var(--silver-hi);
  transition: background var(--t-fast);
}
.find-us-card:hover .find-us-card-icon { background: var(--ui-hi); }
.find-us-card-icon svg { width: 18px; height: 18px; }
.find-us-card-body { flex: 1; }
.find-us-card-name { font-size: 0.87rem; font-weight: 700; font-family: var(--font-head); color: var(--white-pure); margin-bottom: 2px; }
.find-us-card-handle { font-size: 0.69rem; color: var(--silver-dim); }
.find-us-card-arrow {
  color: var(--silver); opacity: 0; transform: translateX(-8px);
  transition: opacity var(--t-fast), transform var(--t-fast);
}
.find-us-card-arrow svg { width: 14px; height: 14px; }
.find-us-card:hover .find-us-card-arrow { opacity: 1; transform: translateX(0); }
@media(max-width: 600px) { .find-us-cards { grid-template-columns: 1fr; } }

/* ============================================================
   FINAL CTA
   ============================================================ */
#apply {
  padding: 80px 0;
  background: var(--bg);
  text-align: center;
  position: relative; overflow: hidden;
}
#apply::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 65% 65% at 50% 50%, rgba(74,144,217,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.final-cta-inner {
  position: relative; z-index: 1;
  max-width: 680px; margin: 0 auto;
}
.final-cta-inner h2 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900; letter-spacing: -0.04em;
  margin-bottom: 1.25rem;
  line-height: 1.08;
}
.final-cta-inner .section-subtitle { margin: 0 auto 2.75rem; }
.final-cta-micro {
  margin-top: 1.25rem; font-size: 0.84rem; color: var(--silver-dim);
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}

.footer-social-row {
  display: flex; align-items: center; justify-content: center;
  gap: 1.5rem; padding: 0 0 3rem;
  border-bottom: 1px solid var(--border); margin-bottom: 3rem; flex-wrap: wrap;
}
.footer-social-icon {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; border: 1px solid var(--border);
  color: var(--silver-dim);
  transition: color var(--t-fast), border-color var(--t-fast), transform var(--t-fast);
}
.footer-social-icon svg { width: 18px; height: 18px; }
.footer-social-icon:hover { color: var(--silver-hi); border-color: var(--border-hi); transform: translateY(-3px); }

.footer-top {
  display: grid; grid-template-columns: 1fr; gap: 3rem;
  padding-bottom: 3rem; border-bottom: 1px solid var(--border);
}
@media(min-width: 640px) { .footer-top { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem; } }

.footer-brand p { font-size: 0.8rem; color: var(--silver-dim); line-height: 1.82; max-width: 255px; }
.footer-col h4 { font-size: 0.63rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--silver); margin-bottom: 1.25rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }
.footer-col a { font-size: 0.8rem; color: var(--silver-dim); transition: color var(--t-fast); }
.footer-col a:hover { color: var(--silver-hi); }

.footer-disclaimer { padding-top: 2rem; }
.footer-disclaimer p { font-size: 0.67rem; color: rgba(68,82,104,0.55); line-height: 1.88; max-width: 860px; }

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  flex-wrap: wrap; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.03);
}
.footer-copy { font-size: 0.67rem; color: rgba(68,82,104,0.5); }
.footer-copy span { color: rgba(29,111,216,0.6); }
.footer-links-list { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-links-list a { font-size: 0.63rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(68,82,104,0.45); transition: color var(--t-fast); }
.footer-links-list a:hover { color: var(--silver-dim); }

/* ============================================================
   SCROLL-IN ANIMATIONS
   ============================================================ */
.fade-in {
  opacity: 0; transform: translateY(22px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
  will-change: opacity, transform;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-d1 { transition-delay: 0.07s; }
.fade-in-d2 { transition-delay: 0.14s; }
.fade-in-d3 { transition-delay: 0.22s; }
.fade-in-d4 { transition-delay: 0.30s; }
.fade-in-d5 { transition-delay: 0.40s; }

/* ============================================================
   CURSOR SPOTLIGHT — white glow, not blue
   ============================================================ */
.card-spotlight {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  border-radius: inherit;
  background: radial-gradient(
    320px circle at var(--mx, 50%) var(--my, 50%),
    rgba(255,255,255,0.04) 0%,
    transparent 65%
  );
  opacity: 0; transition: opacity 0.4s var(--ease);
}
.service-card:hover .card-spotlight,
.shift-card:hover .card-spotlight,
.process-step:hover .card-spotlight { opacity: 1; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media(max-width: 480px) {
  :root { --section-pad: 52px 0; }
  .hero-logo-blend { height: 140px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn-primary, .btn-secondary { width: 100%; text-align: center; }
  .philosophy-quote { font-size: 2.2rem; }
  .trust-stats { gap: 1.5rem; }
  .footer-social-row { gap: 1rem; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; }
  .footer-links-list { justify-content: center; gap: 1rem; }
}

@media(max-width: 360px) { .footer-top { grid-template-columns: 1fr; } }
