/*
  Blastland Immersive Experience Layer
  Additive visual/interaction system. Original page content, media, links,
  language logic, consent logic and geo routing remain untouched.
*/

:root {
  --bl-bg: #030305;
  --bl-bg-deep: #010102;
  --bl-panel: rgba(12, 12, 16, 0.72);
  --bl-panel-strong: rgba(8, 8, 12, 0.9);
  --bl-line: rgba(255, 255, 255, 0.12);
  --bl-line-strong: rgba(255, 255, 255, 0.22);
  --bl-text: #f7f5ef;
  --bl-muted: #9e9aa8;
  --bl-red: #ff4d3d;
  --bl-orange: #ff8a35;
  --bl-lime: #cfff56;
  --bl-violet: #8d7cff;
  --bl-blue: #091229;
  --bl-radius-xl: clamp(1.5rem, 2.5vw, 2.75rem);
  --bl-radius-lg: clamp(1.1rem, 1.8vw, 1.8rem);
  --bl-shadow: 0 30px 90px rgba(0, 0, 0, 0.58);
  --bl-shadow-deep: 0 60px 160px rgba(0, 0, 0, 0.74);
  --bl-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --bl-mx: 50vw;
  --bl-my: 30vh;
  --bl-scroll: 0;
  --bl-hero-p: 0;
  --max-width: 1460px;
  --bg: var(--bl-bg);
  --bg-alt: #060609;
  --bg-soft: #09090d;
  --text: var(--bl-text);
  --muted: var(--bl-muted);
  --accent: var(--bl-red);
  --accent-soft: rgba(255, 77, 61, 0.17);
  --border-subtle: var(--bl-line);
  --radius-lg: var(--bl-radius-xl);
  --radius-md: var(--bl-radius-lg);
  --shadow-soft: var(--bl-shadow);
}

html {
  background: var(--bl-bg-deep);
  color-scheme: dark;
  scroll-padding-top: 7rem;
  scrollbar-color: rgba(255, 255, 255, 0.26) #050506;
}

html.bl-immersive {
  scroll-behavior: smooth;
}

body {
  background:
    radial-gradient(70rem 55rem at 8% 8%, rgba(255, 74, 50, 0.12), transparent 62%),
    radial-gradient(65rem 48rem at 93% 28%, rgba(90, 72, 255, 0.11), transparent 64%),
    linear-gradient(180deg, #030304 0%, #05050a 50%, #020203 100%);
  color: var(--bl-text);
  overflow-x: clip;
  min-width: 320px;
  font-family: "Space Grotesk", "Avenir Next", "Segoe UI", system-ui, -apple-system, sans-serif;
}

body::selection,
body *::selection {
  color: #090909;
  background: var(--bl-lime);
}

body.bl-cookie-open {
  overflow: hidden;
}

.page {
  position: relative;
  isolation: isolate;
  background: transparent !important;
  overflow: clip;
}

main {
  position: relative;
  z-index: 1;
  background: transparent !important;
}

.wrapper {
  max-width: var(--max-width);
  padding-inline: clamp(1rem, 3vw, 2.8rem);
}

section {
  position: relative;
  border-top: 0 !important;
  padding-block: clamp(4.8rem, 10vw, 10rem);
  scroll-margin-top: 7rem;
}

section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(36rem 25rem at var(--bl-section-x, 18%) 14%, rgba(255, 77, 61, 0.055), transparent 70%),
    radial-gradient(38rem 30rem at 86% 88%, rgba(141, 124, 255, 0.045), transparent 72%);
  opacity: 0.85;
}

/* Ambient, grain and progress are injected as decorative, aria-hidden elements. */
.bl-ambient {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
}

.bl-ambient::before {
  content: "";
  position: absolute;
  width: 52rem;
  aspect-ratio: 1;
  left: calc(var(--bl-mx) - 26rem);
  top: calc(var(--bl-my) - 26rem);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 92, 63, 0.085), rgba(103, 77, 255, 0.03) 35%, transparent 68%);
  filter: blur(18px);
  transform: translate3d(0, 0, 0);
  transition: opacity 350ms ease;
}

.bl-ambient::after {
  content: "";
  position: absolute;
  inset: -40%;
  opacity: 0.055;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
  animation: bl-grain 0.28s steps(2) infinite;
}

@keyframes bl-grain {
  0% { transform: translate3d(-1%, 1%, 0); }
  25% { transform: translate3d(1%, -1%, 0); }
  50% { transform: translate3d(0.5%, 1%, 0); }
  75% { transform: translate3d(-0.5%, -1%, 0); }
  100% { transform: translate3d(1%, 0.5%, 0); }
}

.bl-scroll-progress {
  position: fixed;
  z-index: 200;
  inset: 0 0 auto;
  height: 2px;
  background: rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

.bl-scroll-progress > span {
  display: block;
  width: calc(var(--bl-scroll) * 100%);
  height: 100%;
  transform-origin: left center;
  background: linear-gradient(90deg, var(--bl-red), var(--bl-orange), var(--bl-lime));
  box-shadow: 0 0 18px rgba(255, 92, 57, 0.75);
}

.bl-cursor,
.bl-cursor-ring {
  position: fixed;
  z-index: 250;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  border-radius: 999px;
  transform: translate3d(-100px, -100px, 0);
  will-change: transform;
}

.bl-cursor {
  width: 7px;
  height: 7px;
  margin: -3.5px 0 0 -3.5px;
  background: #fff;
  mix-blend-mode: difference;
}

.bl-cursor-ring {
  width: 36px;
  height: 36px;
  margin: -18px 0 0 -18px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  background: rgba(255, 255, 255, 0.025);
  backdrop-filter: blur(2px);
  transition: width 250ms var(--bl-ease), height 250ms var(--bl-ease), margin 250ms var(--bl-ease), border-color 250ms ease, background 250ms ease;
}

html.bl-pointer-active .bl-cursor,
html.bl-pointer-active .bl-cursor-ring {
  opacity: 1;
}

html.bl-pointer-hover .bl-cursor-ring {
  width: 58px;
  height: 58px;
  margin: -29px 0 0 -29px;
  border-color: rgba(207, 255, 86, 0.78);
  background: rgba(207, 255, 86, 0.06);
}

/* Header / navigation */
header {
  top: max(0.75rem, env(safe-area-inset-top));
  inset-inline: 0;
  padding-inline: clamp(0.65rem, 1.5vw, 1.4rem);
  background: transparent !important;
  border: 0 !important;
  backdrop-filter: none !important;
  pointer-events: none;
}

header .wrapper {
  max-width: 1540px;
  padding-inline: 0;
}

.nav {
  pointer-events: auto;
  min-height: 4.2rem;
  padding: 0.68rem 0.8rem 0.68rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  background: linear-gradient(120deg, rgba(17, 17, 22, 0.84), rgba(5, 5, 8, 0.72));
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(22px) saturate(135%);
  -webkit-backdrop-filter: blur(22px) saturate(135%);
}

.brand {
  gap: 0.75rem;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.025), 0 0 30px rgba(207, 255, 86, 0.1);
}

.brand-title {
  font-size: 0.98rem;
  letter-spacing: 0.18em;
}

.brand-subtitle {
  font-size: 0.6rem;
  letter-spacing: 0.28em;
}

.nav-links {
  gap: clamp(0.7rem, 1.2vw, 1.5rem);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
}

.nav-links > a:not(.nav-cta):not(.nav-youtube) {
  padding: 0.72rem 0.12rem;
  transition: color 220ms ease, opacity 220ms ease;
}

.nav-links > a:not(.nav-cta):not(.nav-youtube)::after {
  bottom: 0.35rem;
  height: 1px;
  background: linear-gradient(90deg, var(--bl-lime), var(--bl-red));
}

.nav-cta,
.btn-primary,
.btn-ghost,
.genai-announcement-cta {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.nav-cta {
  border-color: rgba(255, 255, 255, 0.2) !important;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.nav-cta::before,
.btn-primary::before,
.btn-ghost::before,
.genai-announcement-cta::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  background: linear-gradient(110deg, transparent 25%, rgba(255, 255, 255, 0.32) 48%, transparent 70%);
  transform: translateX(-130%);
  transition: transform 700ms var(--bl-ease);
}

.nav-cta:hover::before,
.btn-primary:hover::before,
.btn-ghost:hover::before,
.genai-announcement:hover .genai-announcement-cta::before {
  transform: translateX(130%);
}

.lang-switch {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.035);
}

.lang-switch button.active {
  background: linear-gradient(120deg, var(--bl-red), #ff6350);
  box-shadow: 0 7px 22px rgba(255, 77, 61, 0.28);
}

.nav-youtube {
  border-radius: 999px;
  filter: saturate(1.1);
}

/* Hero */
.hero {
  min-height: max(100svh, 760px);
  padding: clamp(5.9rem, 9vw, 8rem) 0 clamp(5rem, 8vw, 7.5rem) !important;
  justify-content: flex-start;
  background:
    radial-gradient(55rem 35rem at 50% 7%, rgba(255, 77, 61, 0.09), transparent 68%),
    radial-gradient(62rem 48rem at 82% 72%, rgba(91, 75, 255, 0.08), transparent 72%),
    #020203 !important;
  perspective: 1800px;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 30%;
  background: linear-gradient(180deg, transparent, #05050a 78%);
  pointer-events: none;
  z-index: 0;
}

.genai-announcement-wrap {
  position: relative;
  z-index: 7;
  width: 100%;
  max-width: 1460px;
  padding: 0 clamp(1rem, 3vw, 2.8rem) clamp(1rem, 2vw, 1.6rem);
}

.genai-announcement {
  border-radius: 1.35rem;
  border-color: rgba(207, 255, 86, 0.52);
  background:
    linear-gradient(115deg, rgba(38, 64, 22, 0.68), rgba(47, 17, 25, 0.74) 56%, rgba(67, 19, 23, 0.78)),
    rgba(10, 10, 12, 0.7);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45), 0 0 48px rgba(207, 255, 86, 0.07), inset 0 1px 0 rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(22px) saturate(135%);
  -webkit-backdrop-filter: blur(22px) saturate(135%);
  transform: translateZ(0);
  transition: transform 400ms var(--bl-ease), border-color 300ms ease, box-shadow 400ms ease;
}

.genai-announcement:hover {
  transform: translateY(-4px) scale(1.006);
  border-color: rgba(207, 255, 86, 0.84);
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.58), 0 0 56px rgba(207, 255, 86, 0.11);
}

.genai-announcement-badge {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(207, 255, 86, 0.35);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 0 30px rgba(207, 255, 86, 0.08);
}

.genai-announcement-kicker {
  color: var(--bl-lime);
}

.genai-announcement-cta {
  background: linear-gradient(100deg, var(--bl-lime), #f7d43b 40%, var(--bl-orange) 68%, var(--bl-red));
  box-shadow: 0 16px 46px rgba(255, 77, 61, 0.28);
}

.hero-cinema {
  z-index: 2;
  width: min(100%, 1672px);
  border-radius: clamp(1rem, 2.5vw, 2.4rem);
  clip-path: inset(0 round clamp(1rem, 2.5vw, 2.4rem));
  box-shadow: var(--bl-shadow-deep), 0 0 0 1px rgba(255, 255, 255, 0.08);
  transform-origin: 50% 20% !important;
  transform: perspective(1800px)
    translate3d(0, calc(var(--bl-hero-p) * 2.2rem), 0)
    rotateX(calc(var(--bl-hero-p) * 2.2deg))
    scale(calc(1 - var(--bl-hero-p) * 0.1)) !important;
  opacity: calc(1 - var(--bl-hero-p) * 0.28) !important;
  will-change: transform, opacity;
}

.hero-cinema::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1), inset 0 -12rem 12rem -10rem rgba(0, 0, 0, 0.78);
}

.hero-video-shell {
  isolation: isolate;
}

.hero-bg-video {
  transform: scale(1.015) !important;
  transition: filter 450ms ease;
}

.hero-text-area {
  position: relative;
  z-index: 6;
  width: min(100%, 1040px);
  margin-top: clamp(1.8rem, 4vw, 3.7rem);
  padding-inline: clamp(1rem, 5vw, 4rem);
}

.hero-tagline {
  color: var(--bl-text);
  font-size: clamp(1rem, 1.7vw, 1.65rem);
  line-height: 1.15;
  letter-spacing: 0.19em;
  text-wrap: balance;
  text-shadow: 0 10px 40px rgba(0, 0, 0, 0.78);
}

.hero-subline {
  max-width: 55rem;
  margin-top: 1rem;
  color: rgba(237, 233, 242, 0.7);
  font-size: clamp(0.92rem, 1.15vw, 1.12rem);
  line-height: 1.75;
  text-wrap: balance;
}

.scroll-indicator {
  margin-top: 2rem;
}

.scroll-line {
  width: 42px;
  height: 76px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.025);
  backdrop-filter: blur(8px);
}

.scroll-line::after {
  left: 50%;
  right: auto;
  top: 12px;
  width: 4px;
  height: 18px;
  border-radius: 999px;
  margin-left: -2px;
  background: linear-gradient(var(--bl-lime), var(--bl-red));
  animation: bl-scroll-hint 1.8s var(--bl-ease) infinite;
}

@keyframes bl-scroll-hint {
  0% { transform: translateY(0); opacity: 0; }
  20% { opacity: 1; }
  75% { opacity: 1; }
  100% { transform: translateY(32px); opacity: 0; }
}

/* Shared section typography */
.section-header {
  margin-bottom: clamp(1.8rem, 4vw, 3.5rem);
}

.eyebrow,
.collab-eyebrow,
.motion-feature-kicker,
.creative-message-kicker,
.genai-announcement-kicker {
  letter-spacing: 0.26em;
}

.eyebrow,
.collab-eyebrow {
  color: var(--bl-lime);
  font-size: 0.72rem;
  font-weight: 700;
}

.section-title,
.cta-title,
.newsletter-title {
  color: var(--bl-text);
  font-size: clamp(2.25rem, 5.1vw, 5.4rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.section-description,
.cta-text,
.newsletter-text {
  color: rgba(229, 225, 235, 0.65);
  font-size: clamp(0.96rem, 1.3vw, 1.16rem);
  line-height: 1.72;
}

/* Collaborations */
#collaborations {
  padding-block: clamp(2.2rem, 4vw, 4.5rem) !important;
  background: rgba(8, 8, 12, 0.62);
  border-block: 1px solid rgba(255, 255, 255, 0.07) !important;
  backdrop-filter: blur(16px);
}

#collaborations .wrapper {
  max-width: 100%;
  padding-inline: 0;
}

.collab-header {
  padding-inline: clamp(1rem, 4vw, 4rem);
  margin-bottom: 1.4rem;
}

.collab-strip {
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.collab-track {
  gap: 0.9rem;
}

.collab-card {
  min-width: clamp(155px, 14vw, 235px);
  height: clamp(84px, 8vw, 118px);
  border-radius: 1.2rem;
  border-color: rgba(255, 255, 255, 0.1);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07), 0 18px 55px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
  transition: transform 420ms var(--bl-ease), border-color 300ms ease, background 300ms ease, box-shadow 420ms ease;
}

.collab-card:hover {
  transform: translateY(-8px) scale(1.025);
  border-color: rgba(207, 255, 86, 0.45);
  background: rgba(255, 255, 255, 0.11);
  box-shadow: 0 24px 68px rgba(0, 0, 0, 0.43), 0 0 36px rgba(207, 255, 86, 0.06);
}

/* Who we are */
#about {
  padding-block: clamp(5rem, 10vw, 10rem) !important;
}

.who-split {
  min-height: min(780px, 78svh);
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.45fr);
  border-radius: var(--bl-radius-xl);
  border-color: rgba(255, 255, 255, 0.13);
  background: rgba(9, 9, 13, 0.72);
  box-shadow: var(--bl-shadow-deep), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transform: none !important;
  opacity: 1 !important;
}

.who-left {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(2rem, 4vw, 4.3rem);
  background:
    radial-gradient(32rem 28rem at 22% 12%, rgba(207, 255, 86, 0.25), transparent 58%),
    linear-gradient(145deg, #ff4d3d, #dd2937 58%, #74183d);
}

.who-left::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 26rem;
  aspect-ratio: 1;
  right: -15rem;
  bottom: -12rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  box-shadow: 0 0 0 3rem rgba(255, 255, 255, 0.025), 0 0 0 7rem rgba(255, 255, 255, 0.018);
}

.who-left h2 {
  max-width: 7ch;
  font-size: clamp(3.1rem, 7vw, 7.6rem);
  line-height: 0.82;
  letter-spacing: -0.07em;
  text-transform: uppercase;
}

.who-left .who-arrow {
  width: fit-content;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.23);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(12px);
}

.who-right {
  min-height: 100%;
  border-radius: 0;
  background: #060608;
}

.who-right-image {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(calc(1.04 + var(--bl-local-p, 0) * 0.04));
  transition: transform 100ms linear;
}

.who-right::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 48%, rgba(0, 0, 0, 0.16) 62%, rgba(0, 0, 0, 0.88) 100%);
}

.who-overlay {
  position: absolute;
  z-index: 3;
  left: clamp(1rem, 4vw, 3rem);
  right: clamp(1rem, 4vw, 3rem);
  bottom: clamp(1rem, 4vw, 3rem);
  margin: 0;
  max-width: 45rem;
  padding: clamp(1.2rem, 2.5vw, 2rem);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 1.35rem;
  background: rgba(7, 7, 10, 0.63);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(24px) saturate(135%);
  -webkit-backdrop-filter: blur(24px) saturate(135%);
  color: rgba(242, 239, 246, 0.82);
  font-size: clamp(0.93rem, 1.25vw, 1.15rem);
  line-height: 1.75;
}

/* Motion and Creative Director scenes */
#motion-feature,
#creative-director-message {
  padding-block: clamp(4.5rem, 8vw, 8.5rem) !important;
}

.motion-feature-card,
.creative-message-card {
  min-height: min(780px, 76svh);
  border-radius: var(--bl-radius-xl);
  border-color: rgba(255, 255, 255, 0.14);
  background: #050507;
  box-shadow: var(--bl-shadow-deep), inset 0 1px 0 rgba(255, 255, 255, 0.07);
  transform: translateZ(0);
}

.motion-feature-card::before,
.creative-message-card::before {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.03) 25%, rgba(0, 0, 0, 0.82) 100%),
    radial-gradient(48rem 26rem at 85% 12%, rgba(207, 255, 86, 0.09), transparent 65%);
}

.motion-feature-card::after,
.creative-message-card::after {
  border-color: rgba(255, 255, 255, 0.13);
}

.motion-feature-video,
.creative-message-video {
  transform: scale(calc(1.025 + var(--bl-local-p, 0) * 0.035));
  transition: transform 100ms linear, filter 400ms ease;
}

.motion-feature-copy,
.creative-message-copy {
  left: clamp(1rem, 4vw, 3.5rem);
  right: clamp(1rem, 4vw, 3.5rem);
  bottom: clamp(1rem, 4vw, 3.5rem);
  padding: 0;
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.85);
}

.motion-feature-kicker,
.creative-message-kicker {
  color: var(--bl-lime);
}

.motion-feature-title,
.creative-message-title {
  max-width: 13ch;
  font-size: clamp(2.3rem, 5.6vw, 6.5rem);
  line-height: 0.92;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.motion-feature-subline {
  max-width: 52rem;
  color: rgba(240, 236, 244, 0.72);
  font-size: clamp(0.9rem, 1.2vw, 1.1rem);
  line-height: 1.65;
}

.creative-message-play-overlay {
  width: clamp(76px, 8vw, 112px);
  height: clamp(76px, 8vw, 112px);
  border-color: rgba(255, 255, 255, 0.64);
  background: rgba(6, 6, 9, 0.35);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.48), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(18px);
}

.creative-message-controls {
  top: auto;
  right: clamp(1rem, 3vw, 2.4rem);
  bottom: clamp(1rem, 3vw, 2.4rem);
  border-color: rgba(255, 255, 255, 0.13);
  background: rgba(7, 7, 10, 0.62);
  backdrop-filter: blur(18px);
}

/* Portfolio / podcast / team editorial road */
#portfolio,
#podcasts,
#team {
  transform: none !important;
  opacity: 1 !important;
  transform-origin: center top;
  padding-block: clamp(6rem, 11vw, 11rem) !important;
}

#portfolio > .wrapper,
#podcasts > .wrapper,
#team > .wrapper {
  display: grid;
  grid-template-columns: minmax(240px, 0.34fr) minmax(0, 1fr);
  gap: clamp(2rem, 6vw, 7rem);
  align-items: start;
}

#portfolio > .wrapper > .section-header,
#podcasts > .wrapper > .section-header,
#team > .wrapper > .section-header {
  position: sticky;
  top: 8.5rem;
  margin-bottom: 0;
  padding: clamp(1.2rem, 2.5vw, 2.2rem);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.5rem;
  background: linear-gradient(145deg, rgba(17, 17, 23, 0.74), rgba(6, 6, 9, 0.58));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(22px) saturate(130%);
  -webkit-backdrop-filter: blur(22px) saturate(130%);
}

#portfolio .section-title,
#podcasts .section-title,
#team .section-title {
  margin-top: 0.9rem;
  font-size: clamp(2rem, 4vw, 4.6rem);
}

#portfolio .section-description,
#podcasts .section-description,
#team .section-description {
  margin-top: 1.2rem;
}

#portfolio > .wrapper > .pillars-grid,
#team > .wrapper > .team-grid,
#podcasts > .wrapper > .pillars-grid > .pillars-grid {
  min-width: 0;
}

#portfolio > .wrapper > .pillars-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 54px;
  grid-auto-flow: dense;
  gap: clamp(0.75rem, 1.2vw, 1.2rem);
}

#portfolio .video-card {
  grid-column: span 4;
  grid-row: span 4;
  min-height: 0;
  border-radius: var(--bl-radius-lg);
  border-color: rgba(255, 255, 255, 0.105);
  background:
    radial-gradient(circle at var(--bl-x, 50%) var(--bl-y, 50%), rgba(255, 255, 255, 0.08), transparent 38%),
    linear-gradient(145deg, #0d0d12, #040405);
  box-shadow: 0 22px 68px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.055);
  transition: transform 520ms var(--bl-ease), border-color 300ms ease, box-shadow 520ms var(--bl-ease);
  transform: perspective(900px) rotateX(var(--bl-rx, 0deg)) rotateY(var(--bl-ry, 0deg)) translateY(var(--bl-lift, 0));
}

#portfolio .video-card:nth-child(9n + 1),
#portfolio .video-card:nth-child(9n + 6) {
  grid-column: span 8;
  grid-row: span 7;
}

#portfolio .video-card:nth-child(9n + 2),
#portfolio .video-card:nth-child(9n + 3) {
  grid-column: span 4;
  grid-row: span 3;
}

#portfolio .video-card:nth-child(9n + 4),
#portfolio .video-card:nth-child(9n + 5),
#portfolio .video-card:nth-child(9n + 7),
#portfolio .video-card:nth-child(9n + 8),
#portfolio .video-card:nth-child(9n + 9) {
  grid-column: span 4;
  grid-row: span 4;
}

#portfolio .video-card::after,
#podcasts .podcast-card::after,
#team .team-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: radial-gradient(24rem circle at var(--bl-x, 50%) var(--bl-y, 50%), rgba(207, 255, 86, 0.11), transparent 42%);
  opacity: 0;
  transition: opacity 300ms ease;
}

#portfolio .video-card:hover,
#podcasts .podcast-card:hover,
#team .team-card:hover {
  --bl-lift: -8px;
  border-color: rgba(207, 255, 86, 0.34);
  box-shadow: 0 32px 95px rgba(0, 0, 0, 0.58), 0 0 45px rgba(207, 255, 86, 0.045);
  z-index: 3;
}

#portfolio .video-card:hover::after,
#podcasts .podcast-card:hover::after,
#team .team-card:hover::after {
  opacity: 1;
}

#portfolio .video-card img {
  width: calc(100% - 1.2rem);
  height: calc(100% - 1.2rem);
  max-width: calc(100% - 1.2rem);
  max-height: calc(100% - 1.2rem);
  border-radius: calc(var(--bl-radius-lg) - 0.35rem);
  object-fit: contain;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.65);
  transition: transform 650ms var(--bl-ease), filter 400ms ease;
}

#portfolio .video-card:hover img {
  transform: scale(1.035);
  filter: saturate(1.08) contrast(1.03);
}

/* Podcasts */
#podcasts > .wrapper > .pillars-grid {
  display: block;
}

#podcasts > .wrapper > .pillars-grid > .pillars-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(0.8rem, 1.5vw, 1.4rem);
}

#podcasts .podcast-card {
  min-height: 0;
  aspect-ratio: 16 / 10;
  border-radius: var(--bl-radius-lg);
  border-color: rgba(255, 255, 255, 0.11);
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.055);
  transform: perspective(900px) rotateX(var(--bl-rx, 0deg)) rotateY(var(--bl-ry, 0deg)) translateY(var(--bl-lift, 0));
  transition: transform 520ms var(--bl-ease), border-color 300ms ease, box-shadow 520ms var(--bl-ease);
}

#podcasts .podcast-thumb img {
  transition: transform 700ms var(--bl-ease), filter 400ms ease;
}

#podcasts .podcast-card:hover .podcast-thumb img {
  transform: scale(1.045);
}

.podcast-caption {
  padding: 4.3rem 1.25rem 1.1rem;
  background: linear-gradient(180deg, transparent, rgba(2, 2, 4, 0.9));
}

.podcast-name {
  font-size: clamp(0.72rem, 1vw, 0.9rem);
}

.podcast-play-btn {
  width: clamp(58px, 5vw, 78px);
  height: clamp(58px, 5vw, 78px);
  border-width: 1px;
  background: rgba(6, 6, 9, 0.42);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(16px);
}

.podcast-play-btn:hover,
.podcast-card.is-playing .podcast-play-btn {
  background: linear-gradient(135deg, var(--bl-red), #d62c62);
}

/* Team */
#team > .wrapper > .team-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.75rem, 1.2vw, 1.15rem);
}

#team .team-card {
  min-height: 0;
  aspect-ratio: 0.72;
  border-radius: var(--bl-radius-lg);
  border-color: rgba(255, 255, 255, 0.105);
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.055);
  transform: perspective(900px) rotateX(var(--bl-rx, 0deg)) rotateY(var(--bl-ry, 0deg)) translateY(var(--bl-lift, 0));
  transition: transform 520ms var(--bl-ease), border-color 300ms ease, box-shadow 520ms var(--bl-ease);
}

#team .team-card:nth-child(7n + 1),
#team .team-card:nth-child(7n + 5) {
  grid-column: span 2;
  aspect-ratio: 1.35;
}

#team .team-thumb > img:not(.team-badge-logo) {
  transition: transform 700ms var(--bl-ease), filter 400ms ease;
}

#team .team-card:hover .team-thumb > img:not(.team-badge-logo) {
  transform: scale(1.035);
  filter: brightness(1.07) saturate(1.05);
}

#team .team-caption,
#team .team-grid .team-card:nth-child(n) .team-caption {
  min-height: 0 !important;
  padding: clamp(4.5rem, 8vw, 7rem) 1rem 1rem !important;
  justify-content: flex-end;
  background: linear-gradient(180deg, transparent 12%, rgba(3, 3, 5, 0.94) 100%);
}

#team .team-name,
#team .team-grid .team-card:nth-child(n) .team-name {
  white-space: normal;
  font-size: clamp(0.62rem, 0.82vw, 0.78rem);
  line-height: 1.12 !important;
}

#team .team-title,
#team .team-title[data-i18n-html="teamTitle.darryl"],
#team .team-grid .team-card:nth-child(n) .team-title {
  font-size: clamp(0.58rem, 0.72vw, 0.7rem) !important;
  line-height: 1.25 !important;
  letter-spacing: 0.13em !important;
}

#team .team-badge-logo,
#team .team-thumb .team-badge-logo {
  z-index: 30 !important;
}

/* Contact and newsletter */
#contact {
  padding-block: clamp(6rem, 12vw, 12rem) clamp(3.5rem, 7vw, 7rem) !important;
}

.cta-banner,
.newsletter-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--bl-radius-xl);
  border-color: rgba(255, 255, 255, 0.13);
  background:
    radial-gradient(38rem 28rem at 12% 18%, rgba(255, 77, 61, 0.18), transparent 68%),
    radial-gradient(36rem 25rem at 88% 80%, rgba(141, 124, 255, 0.15), transparent 72%),
    linear-gradient(145deg, rgba(20, 18, 24, 0.88), rgba(5, 5, 8, 0.9));
  box-shadow: var(--bl-shadow-deep), inset 0 1px 0 rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(22px);
}

.cta-banner::before,
.newsletter-card::before {
  content: "";
  position: absolute;
  width: 22rem;
  aspect-ratio: 1;
  right: -9rem;
  top: -10rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  box-shadow: 0 0 0 3rem rgba(255, 255, 255, 0.018), 0 0 0 7rem rgba(255, 255, 255, 0.012);
  pointer-events: none;
}

.cta-banner {
  min-height: clamp(420px, 52vw, 690px);
  padding: clamp(2rem, 6vw, 6rem);
  align-items: flex-end;
}

.cta-title {
  max-width: 12ch;
}

.cta-text {
  max-width: 45rem;
  margin-top: 1.5rem;
}

.cta-actions {
  align-self: flex-end;
}

.btn-primary,
.btn-ghost {
  min-height: 3.2rem;
  border-radius: 999px;
  padding-inline: 1.25rem;
}

.btn-primary {
  border: 0;
  color: #090909;
  background: linear-gradient(100deg, var(--bl-lime), #f3d741 45%, var(--bl-orange) 72%, var(--bl-red));
  box-shadow: 0 16px 46px rgba(255, 77, 61, 0.24);
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.045);
  backdrop-filter: blur(14px);
}

.newsletter-card {
  padding: clamp(2rem, 5vw, 5rem);
  gap: clamp(2rem, 5vw, 5rem);
}

.newsletter-title {
  margin-top: 0.8rem;
  max-width: 11ch;
}

.newsletter-form {
  padding: clamp(1.2rem, 2.5vw, 2rem);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 1.5rem;
  background: rgba(4, 4, 7, 0.46);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(18px);
}

.newsletter-input {
  min-height: 3.35rem;
  border-radius: 999px;
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.045);
  padding-inline: 1.2rem;
}

.newsletter-input:focus {
  outline: 0;
  border-color: rgba(207, 255, 86, 0.65);
  box-shadow: 0 0 0 4px rgba(207, 255, 86, 0.08);
}

/* Legal */
#legal {
  padding-block: clamp(6rem, 10vw, 10rem) !important;
}

#legal > .wrapper {
  max-width: 1260px;
}

#legal .section-header {
  max-width: 62rem;
}

.legal-card {
  border-radius: var(--bl-radius-xl);
  border-color: rgba(255, 255, 255, 0.12);
  background: linear-gradient(145deg, rgba(15, 15, 20, 0.82), rgba(5, 5, 8, 0.88));
  box-shadow: var(--bl-shadow), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.legal-header-row {
  min-height: 5.2rem;
  padding-inline: clamp(1.2rem, 3vw, 2.5rem);
  border-radius: var(--bl-radius-xl);
  background: transparent;
}

.legal-toggle-icon {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.045);
}

.legal-panel-inner {
  padding: clamp(1rem, 3vw, 2.5rem);
}

.legal-video-card {
  min-height: 0;
  aspect-ratio: 16 / 9;
  border-radius: var(--bl-radius-lg);
  border-color: rgba(255, 255, 255, 0.12);
}

.legal-text {
  max-width: 78ch;
  margin-inline: auto;
  color: rgba(232, 228, 238, 0.76);
  line-height: 1.8;
}

.legal-text h3,
.legal-text h4 {
  color: var(--bl-text);
  letter-spacing: -0.02em;
}

.legal-text h3 {
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.legal-text h4 {
  margin-top: 2.4rem;
  font-size: clamp(1.15rem, 1.7vw, 1.45rem);
}

.legal-text a {
  color: var(--bl-lime);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

/* Footer */
footer {
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(48rem 30rem at 12% 100%, rgba(255, 77, 61, 0.09), transparent 70%),
    #030304;
  padding-block: clamp(4rem, 8vw, 7rem) max(2rem, env(safe-area-inset-bottom));
}

.footer-grid {
  gap: clamp(2rem, 5vw, 5rem);
}

.footer-email {
  font-size: clamp(1.25rem, 2vw, 2rem);
  color: var(--bl-text);
}

/* Cookie / privacy UI */
.bl-cookie-consent {
  background: rgba(0, 0, 0, 0.68);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.bl-cookie-box {
  border-radius: 1.6rem;
  border-color: rgba(255, 255, 255, 0.14);
  background:
    radial-gradient(28rem 22rem at 0% 0%, rgba(255, 77, 61, 0.12), transparent 70%),
    rgba(7, 7, 10, 0.93);
  box-shadow: 0 40px 150px rgba(0, 0, 0, 0.74), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.bl-cookie-btn {
  border-radius: 999px;
}

.bl-cookie-btn--primary {
  color: #090909;
  background: linear-gradient(100deg, var(--bl-lime), var(--bl-orange), var(--bl-red));
}

.bl-cookie-floating {
  border-color: rgba(255, 255, 255, 0.17);
  background: rgba(6, 6, 9, 0.72);
  backdrop-filter: blur(16px);
}

/* Reveal system */
.bl-reveal {
  opacity: 0;
  transform: translate3d(0, 34px, 0) scale(0.985);
  filter: blur(7px);
  transition:
    opacity 900ms var(--bl-ease),
    transform 1050ms var(--bl-ease),
    filter 900ms var(--bl-ease);
  transition-delay: calc(var(--bl-order, 0) * 35ms);
}

.bl-reveal.bl-inview {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

/* Focus and accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid var(--bl-lime) !important;
  outline-offset: 4px;
}

/* Large tablet */
@media (max-width: 1180px) {
  #portfolio > .wrapper,
  #podcasts > .wrapper,
  #team > .wrapper {
    grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
    gap: 2.2rem;
  }

  #team > .wrapper > .team-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  #team .team-card:nth-child(7n + 1),
  #team .team-card:nth-child(7n + 5) {
    grid-column: span 1;
    aspect-ratio: 0.72;
  }
}

/* Tablet and compact desktop */
@media (max-width: 960px) {
  html {
    scroll-padding-top: 6rem;
  }

  .nav {
    border-radius: 1.25rem;
  }

  #portfolio > .wrapper,
  #podcasts > .wrapper,
  #team > .wrapper {
    display: block;
  }

  #portfolio > .wrapper > .section-header,
  #podcasts > .wrapper > .section-header,
  #team > .wrapper > .section-header {
    position: relative;
    top: auto;
    margin-bottom: 2rem;
  }

  #portfolio > .wrapper > .pillars-grid {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }

  #portfolio .video-card,
  #portfolio .video-card:nth-child(n) {
    grid-column: span 4;
    grid-row: span 4;
  }

  #portfolio .video-card:nth-child(6n + 1) {
    grid-column: span 8;
    grid-row: span 6;
  }

  #team > .wrapper > .team-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .who-split {
    grid-template-columns: minmax(220px, 0.75fr) minmax(0, 1.35fr);
  }
}

/* Mobile */
@media (max-width: 720px) {
  :root {
    --bl-radius-xl: 1.45rem;
    --bl-radius-lg: 1rem;
  }

  html {
    scroll-padding-top: 5.5rem;
  }

  body {
    overflow-x: hidden;
  }

  .wrapper {
    padding-inline: 1rem;
  }

  section {
    padding-block: 4.8rem;
  }

  header {
    top: max(0.5rem, env(safe-area-inset-top));
    padding-inline: 0.55rem;
  }

  .nav {
    min-height: 3.7rem;
    border-radius: 1.15rem;
    padding: 0.55rem 0.6rem 0.55rem 0.75rem;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .brand-title {
    font-size: 0.84rem;
  }

  .brand-subtitle {
    font-size: 0.52rem;
    letter-spacing: 0.2em;
  }

  .nav-toggle {
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.6rem 0.85rem;
  }

  .nav-links {
    top: calc(100% + 0.55rem);
    left: 0;
    right: 0;
    margin-inline: 0;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 1.2rem;
    background: rgba(8, 8, 12, 0.94);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.62);
    backdrop-filter: blur(22px);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links > a:not(.nav-youtube) {
    width: 100%;
  }

  .nav-cta {
    justify-content: center;
  }

  .hero {
    min-height: auto;
    padding: 5.8rem 0 4.2rem !important;
  }

  .genai-announcement-wrap {
    padding: 0 1rem 1.25rem;
  }

  .genai-announcement {
    border-radius: 1.15rem;
  }

  .hero-cinema {
    width: calc(100% - 2rem);
    max-width: none;
    aspect-ratio: 16 / 9;
    border-radius: 1.25rem;
    clip-path: inset(0 round 1.25rem);
    transform: none !important;
    opacity: 1 !important;
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.58), 0 0 0 1px rgba(255, 255, 255, 0.08);
  }

  .hero-cinema-bg {
    display: none !important;
  }

  .hero-video-shell {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    border-radius: inherit;
  }

  .hero-bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.01) !important;
  }

  .hero-text-area {
    margin-top: 2rem;
    padding-inline: 1.25rem;
  }

  .hero-tagline {
    font-size: 0.83rem;
    line-height: 1.5;
    letter-spacing: 0.19em;
  }

  .hero-subline {
    font-size: 0.9rem;
    line-height: 1.65;
  }

  .scroll-line {
    width: 36px;
    height: 64px;
  }

  #collaborations {
    padding-block: 2.6rem !important;
  }

  .collab-card {
    min-width: 145px;
    height: 84px;
  }

  #about {
    padding-block: 4.8rem !important;
  }

  .who-split {
    display: grid;
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .who-left {
    min-height: 330px;
    padding: 1.8rem;
  }

  .who-left h2 {
    font-size: clamp(3.4rem, 17vw, 5.2rem);
  }

  .who-right {
    min-height: 520px;
  }

  .who-right-image {
    height: 100%;
    object-fit: cover;
  }

  .who-overlay {
    left: 0.8rem;
    right: 0.8rem;
    bottom: 0.8rem;
    padding: 1rem;
    font-size: 0.88rem;
    line-height: 1.58;
  }

  .motion-feature-card,
  .creative-message-card {
    min-height: 560px;
    border-radius: 1.35rem;
  }

  .motion-feature-video,
  .creative-message-video {
    object-fit: cover;
  }

  .motion-feature-copy,
  .creative-message-copy {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
  }

  .motion-feature-title,
  .creative-message-title {
    font-size: clamp(2.2rem, 11vw, 4rem);
  }

  .creative-message-controls {
    right: 0.8rem;
    bottom: 0.8rem;
  }

  #portfolio,
  #podcasts,
  #team {
    padding-block: 5.5rem !important;
  }

  #portfolio > .wrapper > .section-header,
  #podcasts > .wrapper > .section-header,
  #team > .wrapper > .section-header {
    padding: 1.2rem;
    border-radius: 1.2rem;
  }

  #portfolio > .wrapper > .pillars-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: auto;
    gap: 0.75rem;
  }

  #portfolio .video-card,
  #portfolio .video-card:nth-child(n) {
    grid-column: span 1;
    grid-row: auto;
    aspect-ratio: 16 / 11;
  }

  #portfolio .video-card:nth-child(5n + 1) {
    grid-column: 1 / -1;
    aspect-ratio: 16 / 9;
  }

  #portfolio .video-card img {
    width: calc(100% - 0.7rem);
    height: calc(100% - 0.7rem);
    max-width: calc(100% - 0.7rem);
    max-height: calc(100% - 0.7rem);
  }

  #podcasts > .wrapper > .pillars-grid > .pillars-grid {
    display: flex;
    gap: 0.8rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    overscroll-behavior-inline: contain;
    padding: 0.2rem 1rem 1rem 0;
    scrollbar-width: none;
  }

  #podcasts > .wrapper > .pillars-grid > .pillars-grid::-webkit-scrollbar {
    display: none;
  }

  #podcasts .podcast-card {
    flex: 0 0 min(82vw, 360px);
    scroll-snap-align: start;
    aspect-ratio: 16 / 11;
  }

  #team > .wrapper > .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }

  #team .team-card,
  #team .team-card:nth-child(n) {
    grid-column: span 1;
    aspect-ratio: 0.72;
  }

  #team .team-card:nth-child(5n + 1) {
    grid-column: 1 / -1;
    aspect-ratio: 1.15;
  }

  #team .team-caption,
  #team .team-grid .team-card:nth-child(n) .team-caption {
    padding: 4rem 0.7rem 0.7rem !important;
  }

  #team .team-name,
  #team .team-grid .team-card:nth-child(n) .team-name {
    font-size: 0.58rem;
  }

  #team .team-title,
  #team .team-title[data-i18n-html="teamTitle.darryl"],
  #team .team-grid .team-card:nth-child(n) .team-title {
    font-size: 0.52rem !important;
    letter-spacing: 0.1em !important;
  }

  #team .team-thumb .team-badge-logo--forbes {
    width: 118px !important;
    height: 38px !important;
  }

  .cta-banner {
    display: flex;
    flex-direction: column;
    min-height: 560px;
    padding: 1.4rem;
    align-items: flex-start;
    justify-content: flex-end;
  }

  .cta-actions {
    width: 100%;
    align-self: stretch;
  }

  .cta-actions a {
    width: 100%;
    justify-content: center;
  }

  .newsletter-card {
    padding: 1.3rem;
  }

  .newsletter-form {
    padding: 1rem;
  }

  .legal-header-row {
    min-height: 4.5rem;
  }

  .legal-toggle-label {
    font-size: 0.72rem;
    line-height: 1.4;
  }

  .bl-cookie-box {
    border-radius: 1.25rem;
  }

  .bl-cookie-floating {
    left: 0.65rem;
    bottom: max(0.65rem, env(safe-area-inset-bottom));
  }
}

@media (max-width: 430px) {
  #portfolio > .wrapper > .pillars-grid {
    grid-template-columns: 1fr;
  }

  #portfolio .video-card,
  #portfolio .video-card:nth-child(n) {
    grid-column: 1;
    aspect-ratio: 16 / 10;
  }

  #team > .wrapper > .team-grid {
    grid-template-columns: 1fr;
  }

  #team .team-card,
  #team .team-card:nth-child(n) {
    grid-column: 1;
    aspect-ratio: 0.88;
  }

  #team .team-card:nth-child(5n + 1) {
    aspect-ratio: 1.05;
  }
}

@media (hover: none), (pointer: coarse) {
  .bl-cursor,
  .bl-cursor-ring {
    display: none !important;
  }

  #portfolio .video-card,
  #podcasts .podcast-card,
  #team .team-card {
    transform: none !important;
  }

  #portfolio .video-card:hover,
  #podcasts .podcast-card:hover,
  #team .team-card:hover {
    --bl-lift: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html.bl-immersive {
    scroll-behavior: auto;
  }

  .bl-ambient::after,
  .scroll-line::after,
  .genai-announcement::before,
  .collab-track {
    animation: none !important;
  }

  .bl-reveal {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }

  .hero-cinema,
  .who-right-image,
  .motion-feature-video,
  .creative-message-video,
  #portfolio .video-card,
  #podcasts .podcast-card,
  #team .team-card {
    transform: none !important;
    transition: none !important;
  }
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .nav,
  .genai-announcement,
  .who-overlay,
  #portfolio > .wrapper > .section-header,
  #podcasts > .wrapper > .section-header,
  #team > .wrapper > .section-header,
  .bl-cookie-box {
    background: rgba(8, 8, 11, 0.96);
  }
}

/* Final cross-browser refinements */
header:not(.header-visible) {
  transform: translateY(calc(-100% - 2rem));
}

.nav-links > a.bl-active:not(.nav-cta):not(.nav-youtube) {
  color: var(--bl-text);
}

.nav-links > a.bl-active:not(.nav-cta):not(.nav-youtube)::after {
  width: 100%;
}

.hero-video-shell {
  background: #050506 url("../img/cinema-stage.jpg") center / cover no-repeat;
}

#team .team-thumb > img:not(.team-badge-logo) {
  object-fit: contain !important;
  object-position: center bottom !important;
  background: #000;
}

/* ============================================================
   V2 REVISION — user feedback pass
   1. Section titles are guaranteed to remain inside their cards.
   2. Every team member uses the same 9:16 card geometry.
   ============================================================ */

#portfolio > .wrapper,
#podcasts > .wrapper,
#team > .wrapper {
  grid-template-columns: clamp(280px, 23vw, 370px) minmax(0, 1fr);
  gap: clamp(2rem, 4.8vw, 6rem);
}

#portfolio > .wrapper > .section-header,
#podcasts > .wrapper > .section-header,
#team > .wrapper > .section-header {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
  container-type: inline-size;
}

#portfolio .section-title,
#podcasts .section-title,
#team .section-title {
  max-width: 100%;
  margin-inline: 0;
  font-size: clamp(2.15rem, 2.55vw, 3.15rem);
  line-height: 0.98;
  letter-spacing: -0.065em;
  text-wrap: balance;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: auto;
}

#portfolio .section-description,
#podcasts .section-description,
#team .section-description {
  max-width: 31ch;
  font-size: clamp(0.92rem, 1.1vw, 1.12rem);
  line-height: 1.65;
}

html[lang="uk"] #portfolio .section-title,
html[lang="uk"] #podcasts .section-title,
html[lang="uk"] #team .section-title {
  font-size: clamp(1.95rem, 2.35vw, 2.95rem);
  overflow-wrap: anywhere;
}

/* Strict equal casting-wall geometry: no hero cards, no spans. */
#team > .wrapper > .team-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: start;
}

#team .team-card,
#team .team-card:nth-child(n),
#team .team-card:nth-child(7n + 1),
#team .team-card:nth-child(7n + 5),
#team .team-card:nth-child(5n + 1) {
  grid-column: span 1 !important;
  grid-row: auto !important;
  width: 100%;
  aspect-ratio: 9 / 16 !important;
  min-height: 0 !important;
}

#team .team-thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

#team .team-thumb > img:not(.team-badge-logo) {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center bottom !important;
  background: #000 !important;
}

#team .team-caption,
#team .team-grid .team-card:nth-child(n) .team-caption {
  min-height: clamp(5.4rem, 7.2vw, 7rem) !important;
  padding: clamp(5rem, 8vw, 7.5rem) clamp(0.72rem, 1vw, 1rem) clamp(0.75rem, 1vw, 1rem) !important;
  justify-content: flex-end !important;
}

#team .team-name,
#team .team-grid .team-card:nth-child(n) .team-name {
  white-space: normal !important;
  overflow-wrap: anywhere;
}

@media (max-width: 1180px) {
  #portfolio > .wrapper,
  #podcasts > .wrapper,
  #team > .wrapper {
    grid-template-columns: clamp(250px, 27vw, 330px) minmax(0, 1fr);
  }

  #portfolio .section-title,
  #podcasts .section-title,
  #team .section-title {
    font-size: clamp(2rem, 3.2vw, 2.85rem);
  }

  #team > .wrapper > .team-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 960px) {
  #portfolio .section-title,
  #podcasts .section-title,
  #team .section-title {
    font-size: clamp(2.65rem, 7vw, 4.6rem);
    max-width: 15ch;
  }

  #portfolio .section-description,
  #podcasts .section-description,
  #team .section-description {
    max-width: 52ch;
  }
}

@media (max-width: 720px) {
  #portfolio .section-title,
  #podcasts .section-title,
  #team .section-title,
  html[lang="uk"] #portfolio .section-title,
  html[lang="uk"] #podcasts .section-title,
  html[lang="uk"] #team .section-title {
    font-size: clamp(2.25rem, 12.2vw, 3.8rem);
    line-height: 0.98;
    letter-spacing: -0.055em;
    overflow-wrap: anywhere;
  }

  #team > .wrapper > .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #team .team-caption,
  #team .team-grid .team-card:nth-child(n) .team-caption {
    min-height: 0 !important;
    padding: 5.2rem 0.72rem 0.72rem !important;
  }
}

@media (max-width: 380px) {
  #team > .wrapper > .team-grid {
    grid-template-columns: 1fr;
  }

  #team .team-card,
  #team .team-card:nth-child(n) {
    max-width: 310px;
    margin-inline: auto;
  }
}
