/* Black Lemon site — page-specific styles */
html, body { margin: 0; padding: 0; background: #0a0a0a; color: #fff; font-family: var(--font-display); overflow-x: hidden; }
* { box-sizing: border-box; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }

.bl-section { padding: 96px 64px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.bl-section--light { background: #f5f1ea; color: #0a0a0a; border-bottom: 1px solid rgba(0,0,0,0.08); }
.bl-section--yellow { background: var(--bl-yellow); color: #0a0a0a; border-bottom: 1px solid #0a0a0a; }
.bl-eyebrow { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase; opacity: 0.55; }
.bl-h1 { font-family: var(--font-display); font-weight: 700; font-size: clamp(64px, 9vw, 152px); letter-spacing: -0.04em; line-height: 0.92; margin: 0; }
.bl-h2 { font-family: var(--font-display); font-weight: 700; font-size: clamp(48px, 6vw, 88px); letter-spacing: -0.03em; line-height: 0.95; margin: 0; }
.bl-h3 { font-family: var(--font-display); font-weight: 600; font-size: clamp(28px, 3vw, 40px); letter-spacing: -0.01em; line-height: 1.1; margin: 0; }
.bl-italic { font-family: var(--font-serif); font-style: italic; font-weight: 300; }

.bl-btn { display: inline-flex; align-items: center; gap: 12px; padding: 16px 24px; font-family: var(--font-display); font-weight: 600; font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; border: none; cursor: pointer; transition: all 0.2s; }
.bl-btn--yellow { background: var(--bl-yellow); color: #0a0a0a; }
.bl-btn--yellow:hover { background: #fff; transform: translate(-2px,-2px); box-shadow: 4px 4px 0 #fdd535; }
.bl-btn--ghost { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.3); }
.bl-btn--ghost:hover { border-color: var(--bl-yellow); color: var(--bl-yellow); }
.bl-btn--ink { background: #0a0a0a; color: #fff; }
.bl-btn--ink:hover { background: var(--bl-yellow); color: #0a0a0a; }

.bl-marquee-wrap { overflow: hidden; }
.bl-marquee-track { display: flex; width: max-content; animation: bl-marquee 50s linear infinite; }
@keyframes bl-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.bl-link { position: relative; }
.bl-link::after { content:''; position: absolute; left: 0; right: 0; bottom: -3px; height: 1px; background: var(--bl-yellow); transform: scaleX(0); transform-origin: right; transition: transform 0.4s cubic-bezier(.2,.7,.3,1); }
.bl-link:hover::after { transform: scaleX(1); transform-origin: left; }

/* Eyebrows — static yellow tick before each */
.bl-eyebrow { position: relative; display: inline-flex; align-items: center; gap: 12px; }
.bl-eyebrow::before {
  content: ''; display: inline-block; width: 18px; height: 2px; background: var(--bl-yellow);
}
.bl-section--yellow .bl-eyebrow::before, .bl-yellow-bg .bl-eyebrow::before { background: #0a0a0a; }

/* Case-study / services row hover — slide-in yellow bar from left */
.bl-row { position: relative; transition: padding 0.35s cubic-bezier(.2,.7,.3,1), background 0.35s; }
.bl-row::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--bl-yellow); transform: scaleY(0); transform-origin: 50% 0;
  transition: transform 0.35s cubic-bezier(.2,.7,.3,1);
}
.bl-row:hover::before { transform: scaleY(1); transform-origin: 50% 100%; }
.bl-row:hover { padding-left: 24px; background: linear-gradient(90deg, rgba(253,213,53,0.04), transparent 60%); }

/* Animated buttons — yellow underline sweep */
.bl-btn--yellow { position: relative; overflow: hidden; }
.bl-btn--yellow::after {
  content: ''; position: absolute; left: 0; bottom: 0; height: 100%; width: 100%;
  background: #fff; transform: translateY(101%); transition: transform 0.35s cubic-bezier(.2,.7,.3,1); z-index: -1;
}
.bl-btn--yellow:hover::after { transform: translateY(0); }
.bl-btn--yellow:hover { transform: translateY(-2px); box-shadow: 0 6px 0 rgba(253,213,53,0.3); }

.bl-btn--ghost::before {
  content:''; position: absolute; left: 0; top: 0; bottom: 0; width: 0; background: var(--bl-yellow);
  transition: width 0.35s cubic-bezier(.2,.7,.3,1); z-index: -1;
}
.bl-btn--ghost { position: relative; overflow: hidden; }
.bl-btn--ghost:hover::before { width: 4px; }
.bl-btn--ghost:hover { padding-left: 30px; }

/* Yellow ‘blink’ at the start of cycling words on hero */
.bl-hero-bar { animation: bl-blink 2.2s ease-in-out infinite; }
@keyframes bl-blink {
  0%, 60%, 100% { opacity: 1; }
  70%, 80% { opacity: 0.25; }
}

.bl-card-image { transition: transform 0.6s cubic-bezier(.2,.7,.3,1); }
.bl-card:hover .bl-card-image { transform: scale(1.04); }
.bl-card { overflow: hidden; }

.bl-input { width: 100%; background: transparent; border: none; border-bottom: 1px solid rgba(0,0,0,0.15); color: #0a0a0a; font-family: var(--font-display); font-size: 17px; padding: 14px 0; outline: none; transition: border-color 0.2s; }
.bl-input:focus { border-color: #0a0a0a; }
.bl-input::placeholder { color: rgba(0,0,0,0.3); }
.bl-label { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; opacity: 0.55; display: block; margin-bottom: 8px; color: #0a0a0a; }

/* ─────────────────────────────────────────────────────────
   HERO & DECO
   ───────────────────────────────────────────────────────── */
.bl-hero { contain: layout style; }

/* Dubai skyline silhouette — right half, barely visible */
.bl-hero-skyline {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 60%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  opacity: 0.035;
  pointer-events: none;
  z-index: 0;
  mask-image: linear-gradient(90deg, transparent 0%, black 35%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 35%);
  filter: grayscale(1) contrast(1.2);
}
.bl-hero-meta { position: absolute; top: 120px; right: 64px; display: flex; align-items: center; gap: 12px; z-index: 10; }
.bl-hero-meta__dot { width: 6px; height: 6px; background: var(--bl-yellow); border-radius: 50%; box-shadow: 0 0 10px var(--bl-yellow); }
.bl-hero-meta__text { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; opacity: 0.6; }

.bl-hero-right-deco {
  position: absolute; right: 0; top: 0; bottom: 0; width: 62%;
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.3) 30%, black 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.3) 30%, black 100%);
  pointer-events: none; z-index: 2;
  contain: layout paint style;
}
/* .bl-hero-mouse-glow removed — replaced with canvas particle system */
.bl-hero-accent-line {
  position: absolute; right: 28%; top: 0; bottom: 0; width: 1px;
  background: linear-gradient(transparent, rgba(255,255,255,0.08) 20%, rgba(255,255,255,0.08) 80%, transparent);
}
.bl-hero-accent-dot {
  /* top is fixed; animation uses transform only — GPU compositor, zero layout cost */
  position: absolute; right: 28%; top: 0; width: 5px; height: 5px; background: var(--bl-yellow);
  border-radius: 50%;
  box-shadow: 0 0 15px var(--bl-yellow);
  animation: bl-hero-dot-travel 6s ease-in-out infinite;
  will-change: transform, opacity;
}
@keyframes bl-hero-dot-travel {
  0%   { transform: translate(50%, 15vh); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { transform: translate(50%, 85vh); opacity: 0; }
}
/* Grid dots removed — 8 simultaneous animated compositor layers caused mouse lag */

.bl-scroll-cue {
  position: absolute;
  /* Inside bl-hero-right-deco, right of the accent line (accent is at right:28%) */
  right: 24%;
  bottom: 96px;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  opacity: 0.08;
  transition: opacity 0.5s cubic-bezier(.2,.7,.3,1), transform 0.5s cubic-bezier(.2,.7,.3,1);
  cursor: pointer;
  padding: 12px;
  pointer-events: auto;
}
.bl-scroll-cue:hover { opacity: 0.4; transform: translateY(-10px); }
.bl-scroll-cue__hint {
  font-family: var(--font-mono); font-size: 9px; font-weight: 500;
  letter-spacing: 0.55em; text-transform: uppercase; color: #fff;
  writing-mode: vertical-lr;
}

/* ── TAGLINE GLOW — pseudo-element opacity instead of text-shadow (GPU-only) ── */
.bl-hero-tagline { position: relative; }
.bl-hero-tagline-glow { position: relative; }
.bl-hero-tagline-glow::after {
  content: '';
  position: absolute;
  left: 50%; top: 50%;
  width: 200%; height: 400%;
  margin-left: -100%; margin-top: -200%;
  background: radial-gradient(ellipse at center, rgba(253,213,53,0.55) 0%, transparent 65%);
  pointer-events: none;
  animation: bl-tagline-glow 3.8s ease-in-out 1.8s infinite;
  z-index: -1;
  will-change: opacity;
}
@keyframes bl-tagline-glow {
  0%, 100% { opacity: 0.1; }
  50%       { opacity: 0.7; }
}

.bl-hero-bottom { max-width: 600px; margin-top: 40px; }
.bl-hero-tagline { font-family: var(--font-serif); font-style: italic; font-weight: 300; font-size: 24px; line-height: 1.4; opacity: 0.8; margin: 0; }

/* ── ABOUT — IMMERSIVE ─────────────────────────────────────────────────── */
.bl-about-immersive { background: #0a0a0a; color: #fff; }
.bl-about-story { position: relative; padding: 96px 64px; border-bottom: 1px solid rgba(255,255,255,0.08); overflow: hidden; }
.bl-about-story__bg { position: absolute; inset: 0; background: radial-gradient(circle at 70% 40%, rgba(253,213,53,0.03) 0%, transparent 60%); pointer-events: none; }
.bl-about-story__grid { position: relative; display: grid; grid-template-columns: 1.4fr 1fr; gap: 80px; align-items: flex-start; z-index: 2; }
.bl-about-story__grid--stretch { align-items: stretch; }
.bl-stats-column { display: flex; flex-direction: column; justify-content: space-between; height: 100%; }
.bl-about-big-text { font-family: var(--font-display); font-weight: 800; font-size: clamp(48px, 6vw, 100px); letter-spacing: -0.04em; line-height: 0.9; margin: 0 0 40px; }
.bl-about-prose { font-family: var(--font-serif); font-style: italic; font-weight: 300; font-size: 22px; line-height: 1.6; opacity: 0.7; margin: 0; max-width: 640px; }

/* ── SERVICES — 3D ──────────────────────────────────────────────────────── */
.bl-services-3d { position: relative; padding: 96px 64px; background: #0a0a0a; overflow: hidden; }
.bl-services-3d__header { margin-bottom: 64px; }
.bl-services-3d__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); grid-auto-rows: 1fr; gap: 14px; background: transparent; border: none; align-items: stretch; }
.bl-services-3d__grid > div { height: 100%; }
.bl-service-card { background: rgba(255,255,255,0.025); border: 1px solid rgba(255,255,255,0.07); padding: 40px 36px; height: 100%; min-height: 260px; display: flex; flex-direction: column; justify-content: space-between; transition: background 0.4s, box-shadow 0.4s, transform 0.35s cubic-bezier(.2,.7,.3,1); position: relative; overflow: hidden; }
.bl-service-card:hover { background: rgba(255,255,255,0.06); box-shadow: 0 24px 64px rgba(0,0,0,0.5), 0 0 0 1px rgba(253,213,53,0.12); }
.bl-service-card__num { font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.1em; opacity: 0.4; }
.bl-service-card__name { font-family: var(--font-display); font-weight: 700; font-size: 28px; letter-spacing: -0.02em; line-height: 1.1; color: #fff; }
.bl-service-card__desc { font-family: var(--font-serif); font-style: italic; font-weight: 300; font-size: 16px; line-height: 1.5; opacity: 0.5; margin-top: 20px; }
.bl-service-card__bar { width: 40px; height: 2px; background: var(--bl-yellow); transition: width 0.4s; }
.bl-service-card:hover .bl-service-card__bar { width: 100%; }

/* ── PROCESS FLOW — SINGLE LOAD ─────────────────────────────────────────── */

@keyframes bl-pipe-load {
  0%   { transform: scaleX(0); opacity: 0; }
  100% { transform: scaleX(1); opacity: 1; }
}
@keyframes bl-node-load {
  0%   { opacity: 0; transform: translateY(12px) scale(0.9); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes bl-node-pulse {
  0%, 100% { box-shadow: 0 0 20px rgba(253,213,53,0.3); transform: scale(1); }
  50% { box-shadow: 0 0 50px rgba(253,213,53,0.6); transform: scale(1.05); }
}
@keyframes bl-stat-rotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes bl-stat-pulse {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.05); opacity: 1; }
}

/* ── WHATSAPP ────────────────────────────────────────────────────────────── */
.bl-whatsapp-fab {
  position: fixed; bottom: 32px; right: 32px; z-index: 99;
  width: 52px; height: 52px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center;
  text-decoration: none; box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.bl-whatsapp-fab:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* ── VISION ──────────────────────────────────────────────────────────────── */
@keyframes bl-vision-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-8px, -12px) scale(1.04); }
  66% { transform: translate(6px, -6px) scale(0.97); }
}
@keyframes bl-vision-orbit {
  from { transform: rotate(0deg) translateX(28px) rotate(0deg); }
  to   { transform: rotate(360deg) translateX(28px) rotate(-360deg); }
}
@keyframes bl-vision-scan {
  0% { transform: translateY(-100%); opacity: 0; }
  50% { opacity: 0.5; }
  100% { transform: translateY(100%); opacity: 0; }
}
@keyframes bl-vision-pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.5); opacity: 1; }
}
/* Vision section rings + dots */
.bl-vision-ring { position: absolute; border-radius: 50%; pointer-events: none; }
.bl-vision-ring--1 {
  top: -24px; right: 8px; width: 56px; height: 56px;
  border: 1.5px solid rgba(0,0,0,0.14);
  animation: bl-vision-float 7s ease-in-out infinite;
}
.bl-vision-ring--2 {
  top: -8px; right: 20px; width: 28px; height: 28px;
  border: 1px solid rgba(0,0,0,0.08);
  animation: bl-vision-float 5s ease-in-out 1.5s infinite reverse;
}
.bl-vision-dot { position: absolute; border-radius: 50%; pointer-events: none; }
.bl-vision-dot--1 {
  bottom: 72px; right: 32px; width: 8px; height: 8px;
  background: rgba(0,0,0,0.18);
  animation: bl-vision-pulse 3s ease-in-out infinite;
}
.bl-vision-dot--2 {
  bottom: 48px; right: 80px; width: 4px; height: 4px;
  background: rgba(0,0,0,0.1);
  animation: bl-vision-pulse 4s ease-in-out 1s infinite;
}
.bl-vision-dot--3 {
  top: 30%; right: 0; width: 3px; height: 3px;
  background: rgba(0,0,0,0.12);
  animation: bl-vision-orbit 8s linear infinite;
  transform-origin: -20px 0;
}
@keyframes bl-divider-drop {
  0% { transform: translateY(-5px); opacity: 0.2; }
  50% { transform: translateY(2px); opacity: 0.6; }
  100% { transform: translateY(-5px); opacity: 0.2; }
}
.bl-section-divider__down { animation: bl-divider-drop 2.5s ease-in-out infinite; }

/* ── FOOTER ──────────────────────────────────────────────────────────────── */
.bl-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
}
.bl-back-to-top {
  order: -1; /* Place it before the copyright text (left side) */
}
@media (max-width: 600px) {
  .bl-footer-bottom { justify-content: center; text-align: center; flex-direction: column; align-items: center; }
}


/* ── CITIES — 3D ───────────────────────────────────────────────────────── */
.bl-cities { width: 100%; overflow: hidden; position: relative; padding: 20px 0; }
.bl-cities-row { overflow: hidden; white-space: nowrap; }
.bl-cities-track { display: flex; gap: 40px; width: max-content; }
.bl-city { font-family: var(--font-display); font-weight: 800; font-size: 32px; letter-spacing: -0.02em; text-transform: uppercase; color: #fff; opacity: 0.2; display: flex; align-items: center; gap: 12px; }
.bl-city__pin { width: 8px; height: 8px; background: var(--bl-yellow); border-radius: 50%; }

/* ── STATS ──────────────────────────────────────────────────────────────── */
.bl-stats-grid { border-color: rgba(255,255,255,0.12); }
/* Prevent any grid cell from blowing out due to wide inner content */
.bl-stats-grid > * { min-width: 0; }
.bl-stats-cities { background: radial-gradient(circle at 50% 50%, rgba(253,213,53,0.02) 0%, transparent 70%); overflow: hidden; }
/* Responsive: stack to single column on tablet and below */
@media (max-width: 860px) {
  .bl-stats-grid { grid-template-columns: 1fr !important; }
  .bl-stats-grid > * { border-right: none !important; border-bottom: 1px solid rgba(255,255,255,0.12); }
}

/* ── CLIENTS ────────────────────────────────────────────────────────────── */
.bl-clients-grid-v2 { border: 1px solid rgba(255,255,255,0.06); }
.bl-client-card-v2 { height: 160px; border: 1px solid rgba(255,255,255,0.06); display: flex; flex-direction: column; align-items: center; justify-content: center; position: relative; transition: all 0.5s cubic-bezier(.2,.7,.3,1); }
.bl-client-card-v2__num { position: absolute; top: 12px; left: 12px; font-family: var(--font-mono); font-size: 10px; opacity: 0.3; }
.bl-client-logo-wrap { width: 100%; height: 60px; display: flex; align-items: center; justify-content: center; padding: 0 24px; }
.bl-client-logo-img { max-height: 100%; max-width: 100%; object-fit: contain; }
.bl-client-card-v2__rule { position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--bl-yellow); transition: width 0.4s; }
.bl-client-card-v2:hover .bl-client-card-v2__rule { width: 100%; }
.bl-clients-cta-arrow { display: flex; flex-direction: column; align-items: center; gap: 16px; color: rgba(255,255,255,0.3); transition: color 0.3s; }
.bl-clients-cta-arrow:hover { color: var(--bl-yellow); }

/* ── CONTACT ────────────────────────────────────────────────────────────── */
.bl-contact-section { position: relative; }
.bl-contact-header { display: grid; grid-template-columns: 1fr 1fr; gap: 96px; margin-bottom: 80px; }
.bl-contact-h { font-family: var(--font-display); font-weight: 800; font-size: clamp(48px, 6vw, 88px); letter-spacing: -0.04em; line-height: 0.95; margin: 0; }
.bl-contact-lede { font-family: var(--font-serif); font-style: italic; font-weight: 300; font-size: 24px; line-height: 1.5; opacity: 0.7; align-self: flex-end; margin: 0; }
.bl-contact-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 120px; }
.bl-contact-aside { display: flex; flex-direction: column; gap: 40px; }
.bl-contact-card { background: rgba(0,0,0,0.03); padding: 40px; border: 1px solid rgba(0,0,0,0.06); }
.bl-contact-card--secondary { background: transparent; border-color: transparent; padding: 0 40px; }
.bl-contact-direct { display: block; margin-bottom: 24px; text-decoration: none; color: inherit; transition: opacity 0.2s; }
.bl-contact-direct:hover { opacity: 0.7; }
.bl-contact-kv { display: flex; align-items: baseline; gap: 16px; }
.bl-contact-kv__k { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; opacity: 0.55; white-space: nowrap; }
.bl-contact-kv__v { font-family: var(--font-display); font-weight: 600; font-size: 17px; }
.bl-contact-kv__meta { display: block; font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.1em; opacity: 0.45; margin-top: 4px; }
.bl-contact-address { font-family: var(--font-display); font-weight: 700; font-size: 20px; line-height: 1.4; color: #0a0a0a; margin: 0 0 16px; }
.bl-contact-coords { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; opacity: 0.5; margin: 0; }
.bl-contact-form { display: flex; flex-direction: column; gap: 28px; }
.bl-contact-row { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.bl-contact-footer { display: flex; align-items: center; justify-content: space-between; gap: 40px; margin-top: 40px; border-top: 1px solid rgba(0,0,0,0.08); padding-top: 40px; }

/* ── SECTION DIVIDER ────────────────────────────────────────────────────── */
.bl-section-divider { display: flex; align-items: center; gap: 24px; padding: 40px 64px; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.4); }
.bl-section-divider__rule { flex: 1; height: 1px; background: rgba(255,255,255,0.08); }
.bl-section-divider__num { font-weight: 700; color: var(--bl-yellow); }
.bl-section-divider__tick { width: 4px; height: 4px; background: var(--bl-yellow); border-radius: 50%; }

/* ── PARALLAX ────────────────────────────────────────────────────────────── */
.bl-parallax-wrap { position: relative; height: 100vh; overflow: hidden; background: #020202; }
.bl-parallax-bg-img { position: absolute; inset: 0; background: url('assets/dubai-skyline.png') center center / cover no-repeat; opacity: 0.15; transition: transform 0.1s ease-out; }
.bl-parallax-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(253,213,53,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(253,213,53,0.03) 1px, transparent 1px); background-size: 100px 100px; transform: translateZ(-300px); }
.bl-parallax-content { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; color: #fff; z-index: 10; }
.bl-parallax-content__eyebrow { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.4em; text-transform: uppercase; margin-bottom: 32px; opacity: 0.6; }
.bl-parallax-content__quote { font-family: var(--font-display); font-weight: 800; font-size: clamp(40px, 5vw, 84px); letter-spacing: -0.03em; line-height: 1; margin: 0; }
.bl-parallax-content__accent { color: var(--bl-yellow); font-family: var(--font-serif); font-style: italic; font-weight: 300; }
.bl-parallax-content__attr { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; margin-top: 48px; opacity: 0.5; }
.bl-parallax-ring { position: absolute; left: 50%; top: 50%; width: 600px; height: 600px; border: 1px solid rgba(253,213,53,0.05); border-radius: 50%; transform: translate(-50%, -50%); }
.bl-parallax-line { position: absolute; width: 1px; background: linear-gradient(transparent, rgba(253,213,53,0.1), transparent); }

@keyframes bl-scanline { from { opacity: 0.1; transform: scaleX(0.8) translateZ(-60px); } to { opacity: 0.4; transform: scaleX(1.2) translateZ(-60px); } }
@keyframes bl-particle-float { 0% { opacity: 0; transform: translateY(0) translateZ(-50px); } 20% { opacity: 1; } 80% { opacity: 1; } 100% { opacity: 0; transform: translateY(-100px) translateZ(-50px); } }
@keyframes bl-timeline-shimmer { 0% { transform: translateX(-100%); } 100% { transform: translateX(100%); } }

/* ── DESKTOP NAV / MOBILE TOGGLE VISIBILITY ─────────────────────────────── */
.bl-desktop-nav { display: flex; }
.bl-mobile-toggle { display: none; }
@media (max-width: 900px) {
  .bl-desktop-nav { display: none !important; }
  .bl-mobile-toggle { display: flex !important; }
}

/* ── MOBILE DRAWER — HIDDEN BY DEFAULT ──────────────────────────────────── */
/* Without this CSS the drawer renders as a fullscreen overlay and covers the page */
.bl-mobile-drawer {
  position: fixed; inset: 0; z-index: 99;
  visibility: hidden; opacity: 0; pointer-events: none;
  transition: opacity 0.4s cubic-bezier(.2,.7,.3,1), visibility 0s linear 0.4s;
}
.bl-mobile-drawer.is-open {
  visibility: visible; opacity: 1; pointer-events: all;
  transition: opacity 0.4s cubic-bezier(.2,.7,.3,1), visibility 0s linear 0s;
}
.bl-mobile-drawer__bg {
  position: absolute; inset: 0;
  background: rgba(5,5,5,0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}
.bl-mobile-drawer__content {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column;
  padding: 100px 40px 48px;
  overflow-y: auto;
}
.bl-mobile-drawer__eyebrow {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.3em;
  text-transform: uppercase; opacity: 0.4; margin-bottom: 48px;
}
.bl-mobile-nav { display: flex; flex-direction: column; flex: 1; }
.bl-mobile-nav__item {
  display: flex; align-items: center; gap: 24px;
  padding: 22px 0; border-bottom: 1px solid rgba(255,255,255,0.06);
  font-family: var(--font-display); font-weight: 700; font-size: 36px;
  letter-spacing: -0.02em; color: #fff; text-decoration: none;
  opacity: 0; transform: translateX(-24px);
  transition: opacity 0.45s, transform 0.45s cubic-bezier(.2,.7,.3,1), color 0.2s;
}
.bl-mobile-drawer.is-open .bl-mobile-nav__item { opacity: 1; transform: translateX(0); }
.bl-mobile-nav__item.is-active { color: var(--bl-yellow); }
.bl-mobile-nav__item:hover { color: var(--bl-yellow); }
.bl-mobile-nav__index {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em;
  opacity: 0.35; flex-shrink: 0;
}
.bl-mobile-drawer__footer { margin-top: 48px; }
.bl-mobile-drawer__cta {
  display: inline-flex; align-items: center; gap: 16px;
  background: var(--bl-yellow); color: #0a0a0a;
  padding: 16px 24px; font-family: var(--font-display); font-weight: 700;
  font-size: 14px; letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 32px; text-decoration: none;
  transition: background 0.2s;
}
.bl-mobile-drawer__cta:hover { background: #fff; }
.bl-mobile-drawer__meta { display: flex; flex-direction: column; gap: 8px; }
.bl-mobile-drawer__meta span {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; opacity: 0.4;
}

/* ── CITY PILLS (restore pill look) ─────────────────────────────────────── */

/* Fade city rows to darkness on left and right edges */
.bl-cities {
  mask-image: linear-gradient(to right, transparent 0%, black 14%, black 86%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 14%, black 86%, transparent 100%);
}

.bl-city {
  font-family: var(--font-display); font-weight: 700; font-size: 13px;
  letter-spacing: 0.04em; text-transform: uppercase;
  color: #fff; opacity: 1;
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.05);
  padding: 9px 16px; border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.09);
  white-space: nowrap;
  transition: background 0.3s, border-color 0.3s;
}
.bl-city:hover { background: rgba(253,213,53,0.1); border-color: rgba(253,213,53,0.3); }
.bl-city__pin { width: 6px; height: 6px; background: var(--bl-yellow); border-radius: 50%; flex-shrink: 0; }
.bl-cities-track { display: flex; gap: 12px; width: max-content; }

/* ── CLIENT LOGOS — ORIGINAL COLOURS, SCALE ON HOVER ───────────────────── */
.bl-client-logo-img {
  max-height: 100%; max-width: 100%; object-fit: contain;
  filter: none;
  opacity: 0.65;
  transition: opacity 0.45s cubic-bezier(.2,.7,.3,1), transform 0.55s cubic-bezier(.2,.7,.3,1);
}
.bl-client-card-v2:hover .bl-client-logo-img {
  filter: none;
  opacity: 1;
  transform: scale(1.22);
}
/* Coca-Cola Arena: allow taller display */
.bl-client-logo-img[alt="Coca-Cola Arena"] { max-height: 48px; max-width: 80%; }

/* White treatment: Lucid and Jaguar only */
.bl-client-logo-img[alt="Lucid"],
.bl-client-logo-img[alt="Jaguar"] {
  filter: brightness(0) invert(1);
  opacity: 0.65;
}
.bl-client-card-v2:hover .bl-client-logo-img[alt="Lucid"],
.bl-client-card-v2:hover .bl-client-logo-img[alt="Jaguar"] {
  filter: brightness(0) invert(1);
  opacity: 1;
  transform: scale(1.22);
}

/* Journey tags — static, no animation */
.bl-journey-tag { display: inline-block; }

/* ── Matrix 3D Tag Field ─────────────────────────────────────────────────── */
.bl-matrix-field {
  position: relative;
  left: -64px;
  width: calc(100% + 128px);
  background: #040404;
  padding: 64px 64px 60px;
  margin-top: 80px;
  overflow: hidden;
}

.bl-matrix-backdrop {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(253,213,53,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(253,213,53,0.045) 1px, transparent 1px);
  background-size: 48px 48px;
  animation: bl-matrix-drift 20s linear infinite;
  pointer-events: none;
}

@keyframes bl-matrix-drift {
  from { transform: translateY(0); }
  to   { transform: translateY(48px); }
}

.bl-matrix-scan {
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%, rgba(253,213,53,0.4) 25%,
    rgba(253,213,53,0.85) 50%,
    rgba(253,213,53,0.4) 75%, transparent 100%);
  box-shadow: 0 0 24px rgba(253,213,53,0.22), 0 0 60px rgba(253,213,53,0.08);
  animation: bl-matrix-scan-move 5.5s cubic-bezier(.4,0,.6,1) infinite;
  pointer-events: none;
}

@keyframes bl-matrix-scan-move {
  0%   { transform: translateY(0);    opacity: 0; }
  6%   { opacity: 1; }
  88%  { opacity: 0.9; }
  100% { transform: translateY(560px); opacity: 0; }
}

.bl-matrix-rails {
  position: absolute; inset: 0;
  pointer-events: none; z-index: 1;
}
.bl-matrix-rail {
  position: absolute; left: 0; right: 0;
  height: 1px; background: rgba(253,213,53,0.06);
}
.bl-matrix-rail--1 { top: 37%; }
.bl-matrix-rail--2 { top: 71%; }

.bl-matrix-stage {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative; z-index: 2;
  transition: transform 0.25s cubic-bezier(.2,.6,.4,1);
}

.bl-matrix-tag {
  display: flex; align-items: center; gap: 12px;
  padding: 20px 22px;
  border: 1px solid rgba(253,213,53,0.1);
  cursor: default;
  transition: background 0.2s ease, border-color 0.2s ease;
  background: transparent; position: relative;
}
.bl-matrix-tag:hover,
.bl-matrix-tag.is-active {
  border-color: rgba(253,213,53,0.38);
  background: rgba(253,213,53,0.05);
}
.bl-matrix-tag__id {
  font-family: var(--font-mono); font-size: 9px;
  letter-spacing: 0.15em; color: rgba(253,213,53,0.28);
  font-variant-numeric: tabular-nums; flex-shrink: 0;
  transition: color 0.2s;
}
.bl-matrix-tag__text {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(253,213,53,0.6); line-height: 1.35;
  transition: color 0.2s;
}
.bl-matrix-tag:hover .bl-matrix-tag__id,
.bl-matrix-tag.is-active .bl-matrix-tag__id { color: rgba(253,213,53,0.55); }
.bl-matrix-tag:hover .bl-matrix-tag__text,
.bl-matrix-tag.is-active .bl-matrix-tag__text { color: rgba(253,213,53,1); }

.bl-matrix-separator {
  display: flex; align-items: center; gap: 16px;
  position: relative; z-index: 3;
  margin: 36px 0 28px;
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.25em; color: rgba(253,213,53,0.28);
}
.bl-matrix-separator__line {
  flex: 1; height: 1px;
  background: rgba(253,213,53,0.12);
  position: relative; overflow: hidden;
}
.bl-matrix-separator__line::after {
  content: '';
  position: absolute; top: 0; left: -40%; width: 40%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(253,213,53,0.7), transparent);
  animation: bl-sep-sweep 3.5s ease-in-out infinite;
}
@keyframes bl-sep-sweep {
  0%   { left: -40%; }
  100% { left: 110%; }
}

.bl-matrix-prose {
  position: relative; z-index: 3;
  font-family: var(--font-serif); font-style: italic;
  font-weight: 300; font-size: clamp(17px, 1.7vw, 22px);
  line-height: 1.72; color: rgba(255,255,255,0.72);
  margin: 0; max-width: none;
}

/* ── SERVICE CARD SPOTLIGHT ──────────────────────────────────────────────── */
.bl-service-card::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(circle 200px at var(--mx, 50%) var(--my, 50%), rgba(253,213,53,0.055), transparent 65%);
  opacity: 0; transition: opacity 0.4s;
}
.bl-service-card:hover::after { opacity: 1; }

/* ── ELEGANT FLOATING PILL TAGS ─────────────────────────────────────────── */
.bl-elegant-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(253,213,53,0.65);
  border: 1px solid rgba(253,213,53,0.18);
  border-radius: 100px;
  padding: 6px 16px;
  background: rgba(253,213,53,0.025);
  animation: bl-tag-float 4s ease-in-out infinite;
  will-change: transform, box-shadow;
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}
.bl-elegant-tag:hover {
  border-color: rgba(253,213,53,0.55);
  color: rgba(253,213,53,1);
  background: rgba(253,213,53,0.07);
}
@keyframes bl-tag-float {
  0%, 100% { transform: translateY(0); box-shadow: 0 0 0 0 rgba(253,213,53,0); }
  45%       { transform: translateY(-3px); box-shadow: 0 4px 18px -4px rgba(253,213,53,0.18); }
}

/* ── STAT BOXES ─────────────────────────────────────────────────────────── */
.bl-stat-box {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(253,213,53,0.12);
  border-radius: 4px;
  padding: 32px 24px;
  background: rgba(253,213,53,0.02);
  transition: border-color 0.3s;
}
.bl-stat-box:hover {
  border-color: rgba(253,213,53,0.28);
}

.bl-stats-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
}

/* ── SECTION PIP — elegant divider indicator ───────────────────────────────── */
.bl-pip-row {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 0;
  position: relative;
  z-index: 10;
  pointer-events: none;
}
.bl-pip {
  width: 6px; height: 6px;
  background: var(--bl-yellow);
  transform: rotate(45deg);
  margin-top: -3px;
  opacity: 0.18;
  animation: bl-pip-pulse 3.5s ease-in-out infinite;
}
@keyframes bl-pip-pulse {
  0%, 100% { opacity: 0.1; transform: rotate(45deg) scale(0.9); }
  50%       { opacity: 0.32; transform: rotate(45deg) scale(1.25); }
}

/* ── FOUNDERS PARALLAX PANELS ─────────────────────────────────────────────── */
.bl-founders-panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.bl-founder-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  min-height: 520px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.bl-founder-card + .bl-founder-card {
  border-left: 1px solid rgba(255,255,255,0.06);
}
.bl-founder-card__img-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.bl-founder-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  transform: scale(1.04);
  transition: transform 0.7s cubic-bezier(.2,.7,.3,1);
  filter: grayscale(0.12) contrast(1.05);
  display: block;
}
.bl-founder-card__placeholder {
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bl-founder-card__placeholder span {
  font-family: var(--font-display);
  font-size: 100px;
  font-weight: 700;
  opacity: 0.07;
  letter-spacing: -0.04em;
  color: #fff;
}
.bl-founder-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.18) 55%, rgba(0,0,0,0.04) 100%);
  transition: background 0.55s ease;
}
.bl-founder-card.is-hovered .bl-founder-card__overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.96) 0%, rgba(0,0,0,0.62) 55%, rgba(0,0,0,0.22) 100%);
}
/* Default bottom name label */
.bl-founder-card__label {
  position: absolute;
  bottom: 36px;
  left: 44px;
  right: 44px;
  z-index: 2;
  transition: transform 0.45s cubic-bezier(.2,.7,.3,1), opacity 0.35s;
}
.bl-founder-card.is-hovered .bl-founder-card__label {
  transform: translateY(-12px);
  opacity: 0;
}
.bl-founder-card__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(20px, 2vw, 30px);
  letter-spacing: -0.02em;
  color: #fff;
}
/* Hover reveal panel */
.bl-founder-card__reveal {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 52px 44px;
  z-index: 2;
  color: #fff;
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.52s cubic-bezier(.2,.7,.3,1), opacity 0.45s;
}
.bl-founder-card.is-hovered .bl-founder-card__reveal {
  transform: translateY(0);
  opacity: 1;
}

/* ── IMMERSIVE 3D ORBITING TAG CLOUD ─────────────────────────────────────── */
.bl-tag3d-atmosphere {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(253,213,53,0.06) 0%, rgba(253,213,53,0.02) 40%, transparent 70%);
  pointer-events: none;
}

/* Wrapper div positions each tag in 3D space via JS */
.bl-tag3d-wrap {
  position: absolute;
  left: 50%;
  top: 50%;
  will-change: transform;
}

.bl-tag3d {
  display: inline-block;
  white-space: nowrap;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  padding: 5px 14px;
  border: 1px solid rgba(253,213,53,0.12);
  border-radius: 2px;
  background: rgba(0,0,0,0.32);
  cursor: default;
  /* center the pill on its 3D anchor point */
  transform: translateX(-50%) translateY(-50%);
  transition: color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, opacity 0.9s ease;
}
/* Depth-proportional hover glow — near tags glow bright, far tags glow faint */
.bl-tag3d.is-active {
  color: var(--bl-yellow);
  border-color: rgba(253,213,53,0.7);
  box-shadow:
    0 0 calc(10px + var(--tag-glow-alpha, 0.4) * 28px) rgba(253,213,53,calc(var(--tag-glow-alpha, 0.4) * 0.7)),
    0 0 calc(4px + var(--tag-glow-alpha, 0.4) * 10px) rgba(253,213,53,calc(var(--tag-glow-alpha, 0.4) * 0.4));
  opacity: 1 !important;
}

/* ── MOBILE SWIPE HINT ────────────────────────────────────────────────────── */
.bl-clients-swipe-hint {
  display: none; /* hidden on desktop */
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 0 4px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
}

/* ── YOUR VISION / OUR MISSION ──────────────────────────────────────────── */
.bl-vm-section {
  background: #fdd535; /* hardcoded fallback for Android WebView */
  background: var(--bl-yellow, #fdd535);
  color: #0a0a0a;
  padding: 96px 64px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

/* Sweep highlight — faint dark sweep across the headline */
.bl-vm-sweep {
  position: absolute;
  top: 0; left: -60%;
  width: 40%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0,0,0,0.04), transparent);
  animation: bl-vm-sweep 8s ease-in-out infinite;
  pointer-events: none;
}
@keyframes bl-vm-sweep {
  0%   { left: -60%; }
  100% { left: 120%; }
}

.bl-vm-body {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

/* The two headline lines — read together as one statement */
.bl-vm-statement {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.bl-vm-line1 {
  font-family: 'Manrope', system-ui, sans-serif;
  font-family: var(--font-display, 'Manrope', system-ui, sans-serif);
  font-weight: 800;
  font-size: 56px;
  font-size: clamp(52px, 7.5vw, 112px);
  line-height: 0.92;
  letter-spacing: -0.04em;
  color: #0a0a0a;
}

/* The connector — a thin yellow bar that bridges the two lines */
.bl-vm-connector {
  width: 100%;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bl-vm-connector__track {
  width: 100%;
  max-width: 480px;
  height: 1.5px;
  background: rgba(0,0,0,0.12);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}
.bl-vm-connector__fill {
  position: absolute;
  top: 0; left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, transparent, rgba(0,0,0,0.5), transparent);
  animation: bl-vm-fill 3.5s ease-in-out infinite;
}
@keyframes bl-vm-fill {
  0%   { transform: translateX(-100%); opacity: 0; }
  20%  { opacity: 1; }
  80%  { opacity: 1; }
  100% { transform: translateX(100%); opacity: 0; }
}

.bl-vm-line2 {
  font-family: 'Georgia', 'Iowan Old Style', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 56px;
  font-size: clamp(52px, 7.5vw, 112px);
  line-height: 0.92;
  letter-spacing: -0.025em;
  color: rgba(0,0,0,0.55);
}

/* Bottom row: meta left, CTA right */
.bl-vm-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid rgba(0,0,0,0.10);
}

.bl-vm-meta {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.38);
}

.bl-vm-cta {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  background: #0a0a0a;
  color: var(--bl-yellow);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  font-weight: 700;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.bl-vm-cta:hover {
  opacity: 0.82;
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════════════════════════════════ */
/* ── MOBILE RESPONSIVE — max-width: 768px ─────────────────────────────────── */
/* ═══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  /* ── Global section padding ── */
  .bl-section           { padding: 64px 24px !important; }
  .bl-about-story       { padding: 64px 24px !important; }
  .bl-services-3d       { padding: 64px 24px !important; }
  .bl-section-divider   { padding: 28px 24px; }

  /* ── Hero ── */
  .bl-hero              { padding: 96px 24px 72px !important; }
  .bl-hero-skyline      { display: none !important; }
  .bl-hero-right-deco   { display: none !important; }
  .bl-hero-meta         { right: 24px; }
  .bl-hero-bottom       { max-width: none; }
  /* Reduced from 13vw so "Private events." fits without overflow at 390px */
  .bl-h1                { font-size: clamp(36px, 9.5vw, 48px) !important; }

  /* ── About story grid: stack ── */
  .bl-about-story__grid  { grid-template-columns: 1fr !important; gap: 48px; }
  /* Stats as horizontal row on mobile */
  .bl-stats-column       { flex-direction: row !important; flex-wrap: wrap !important; height: auto; gap: 10px; }
  .bl-stat-box           { flex: 1 1 calc(33% - 8px) !important; min-width: 0; padding: 18px 10px !important; }

  /* ── Vision / Mission: compact on mobile ── */
  .bl-vm-section {
    padding: 64px 24px !important;
    background: #fdd535 !important;
    background: var(--bl-yellow, #fdd535) !important;
  }
  .bl-vm-line1 {
    font-size: 44px !important;
    letter-spacing: -0.03em;
  }
  .bl-vm-line2 {
    font-size: 44px !important;
    letter-spacing: -0.02em;
  }
  .bl-vm-bottom {
    flex-direction: column;
    gap: 24px;
    text-align: center;
    margin-top: 36px;
  }
  .bl-vm-cta {
    background: #0a0a0a !important;
    color: #fdd535 !important;
    color: var(--bl-yellow, #fdd535) !important;
    display: inline-flex !important;
    padding: 14px 28px !important;
  }
  .bl-vm-connector__track { max-width: 200px; }

  /* ── Services: allow negative margins to break out of padding without clipping ── */
  .bl-services-3d       { overflow: visible !important; }

  /* ── Manifesto ── */
  .bl-manifesto-section  { padding: 72px 24px !important; }

  /* ── Clients section ── */
  .bl-clients-section    { padding: 64px 24px !important; }
  .bl-clients-header-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    margin-bottom: 32px !important;
  }

  /* ── Clients grid → horizontal swipe carousel ── */
  .bl-clients-stage      { perspective: none !important; overflow: visible !important; }
  .bl-clients-grid-v2 {
    display: flex !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
    gap: 0 !important;
    transform: none !important;
    border: none !important;
    scrollbar-width: none;
  }
  .bl-clients-grid-v2::-webkit-scrollbar { display: none; }
  .bl-client-card-v2 {
    min-width: 44vw !important;
    flex-shrink: 0 !important;
    scroll-snap-align: start !important;
    border-right: 1px solid rgba(255,255,255,0.06) !important;
    height: 130px !important;
  }
  .bl-clients-swipe-hint { display: flex !important; }

  /* ── Contact: stack ── */
  .bl-contact-section    { padding: 64px 24px !important; }
  .bl-contact-header     {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
    margin-bottom: 48px !important;
  }
  .bl-contact-grid       { grid-template-columns: 1fr !important; gap: 48px !important; }
  .bl-contact-row        { grid-template-columns: 1fr !important; gap: 20px !important; }
  .bl-contact-footer     {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 20px !important;
  }

  /* ── Stats grid ── */
  .bl-stats-grid         { grid-template-columns: 1fr !important; }

  /* ── Immersive tag cloud: reduce height ── */
  .bl-tag3d-scene, [class*="bl-tag3d-scene"] { height: 300px !important; }

  /* ── Footer ── */
  .bl-footer-bar {
    flex-direction: column !important;
    gap: 20px !important;
    align-items: flex-start !important;
    padding: 40px 24px !important;
  }
  .bl-footer-bottom { padding: 16px 24px !important; }
}
