/* ==========================================================================
   BrandwayLabs — dark cinematic one-pager
   ========================================================================== */

:root {
	--bwl-black: #070707;
	--bwl-ink: #0d0d0d;
	--bwl-panel: #111111;
	--bwl-panel-2: #161616;
	--bwl-line: #242424;
	--bwl-line-soft: #1c1c1c;
	--bwl-white: #ffffff;
	--bwl-grey: #9b9b9b;
	--bwl-grey-2: #6e6e6e;
	--bwl-radius: 18px;
	--bwl-font-display: "Space Grotesk", "Inter", -apple-system, sans-serif;
	--bwl-font-body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
	--bwl-max: 1240px;
	--bwl-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset-ish ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
	margin: 0;
	background: var(--bwl-black);
	color: var(--bwl-white);
	font-family: var(--bwl-font-body);
	font-size: 17px;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}
body.bwl-dark {
	background-image:
		radial-gradient(1200px 600px at 80% -10%, rgba(255,255,255,0.05), transparent 60%),
		radial-gradient(900px 500px at 10% 30%, rgba(255,255,255,0.025), transparent 60%);
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--bwl-font-display); margin: 0 0 0.5em; line-height: 1.08; letter-spacing: -0.015em; }
p { margin: 0 0 1em; }
button { font-family: inherit; }

.screen-reader-text {
	position: absolute !important;
	width: 1px; height: 1px;
	clip: rect(1px, 1px, 1px, 1px);
	overflow: hidden;
}
.skip-link:focus {
	clip: auto; width: auto; height: auto;
	position: fixed; top: 10px; left: 10px;
	background: var(--bwl-white); color: var(--bwl-black);
	padding: 10px 16px; z-index: 10000; border-radius: 8px;
}

.bwl-container { max-width: var(--bwl-max); margin: 0 auto; padding: 0 28px; }

/* ---------- Selection ---------- */
::selection { background: var(--bwl-white); color: var(--bwl-black); }

/* ---------- Progress bar ---------- */
.bwl-progress {
	position: fixed; top: 0; left: 0; right: 0; height: 2px;
	background: rgba(255,255,255,0.07); z-index: 9999;
}
#bwl-progress-bar {
	display: block; height: 100%; width: 0;
	background: var(--bwl-white);
	transition: width 0.08s linear;
}

/* ---------- Header ---------- */
.bwl-header {
	position: fixed; top: 2px; left: 0; right: 0; z-index: 9000;
	transition: background 0.35s var(--bwl-ease), box-shadow 0.35s var(--bwl-ease);
}
.bwl-header.is-scrolled {
	background: rgba(7,7,7,0.82);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	box-shadow: 0 1px 0 var(--bwl-line-soft);
}
.bwl-header__inner {
	display: flex; align-items: center; gap: 28px;
	min-height: 76px;
}
.bwl-header__logo { flex: 0 0 auto; }
.bwl-header__logo img, .bwl-logo img, .custom-logo { height: 30px; width: auto; max-width: none; }
.bwl-nav { margin-left: auto; }
.bwl-nav__list {
	display: flex; gap: 30px; list-style: none; margin: 0; padding: 0;
	font-size: 14px; font-weight: 500; letter-spacing: 0.04em;
}
.bwl-nav__list a { color: var(--bwl-grey); transition: color 0.25s; position: relative; }
.bwl-nav__list a::after {
	content: ""; position: absolute; left: 0; bottom: -6px; height: 1px; width: 0;
	background: var(--bwl-white); transition: width 0.3s var(--bwl-ease);
}
.bwl-nav__list a:hover { color: var(--bwl-white); }
.bwl-nav__list a:hover::after { width: 100%; }

.bwl-burger {
	display: none; background: none; border: 0; cursor: pointer; padding: 8px;
}
.bwl-burger span {
	display: block; width: 24px; height: 2px; background: var(--bwl-white);
	margin: 5px 0; transition: transform 0.3s, opacity 0.3s;
}
.bwl-burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.bwl-burger.is-open span:nth-child(2) { opacity: 0; }
.bwl-burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.bwl-mobile-menu {
	display: none;
	background: rgba(7,7,7,0.97);
	border-top: 1px solid var(--bwl-line-soft);
	padding: 20px 28px 30px;
}
.bwl-mobile-menu.is-open { display: block; }
.bwl-mobile-menu ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 18px; }
.bwl-mobile-menu a { font-size: 18px; font-weight: 600; }

/* ---------- Buttons ---------- */
.bwl-btn {
	display: inline-flex; align-items: center; gap: 10px;
	padding: 15px 28px;
	border: 1px solid var(--bwl-white);
	border-radius: 999px;
	font-weight: 600; font-size: 15px; letter-spacing: 0.01em;
	color: var(--bwl-white);
	transition: transform 0.25s var(--bwl-ease), background 0.25s, color 0.25s, box-shadow 0.25s;
	cursor: pointer;
	white-space: nowrap;
}
.bwl-btn--primary {
	background: var(--bwl-white); color: var(--bwl-black);
	box-shadow: 0 0 0 0 rgba(255,255,255,0.35);
}
.bwl-btn--primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 40px -8px rgba(255,255,255,0.35);
}
.bwl-btn--ghost { border-color: var(--bwl-line); color: var(--bwl-grey); }
.bwl-btn--ghost:hover { border-color: var(--bwl-white); color: var(--bwl-white); }
.bwl-btn--small { padding: 10px 20px; font-size: 13px; }
.bwl-btn--big { padding: 19px 38px; font-size: 17px; }
.bwl-btn__arrow { transition: transform 0.25s var(--bwl-ease); }
.bwl-btn:hover .bwl-btn__arrow { transform: translateX(5px); }

/* ---------- Type helpers ---------- */
.bwl-eyebrow {
	font-family: var(--bwl-font-display);
	font-size: 12.5px; font-weight: 600; letter-spacing: 0.28em;
	color: var(--bwl-grey);
	display: flex; align-items: center; gap: 14px;
	margin-bottom: 22px;
}
.bwl-eyebrow::before {
	content: ""; width: 34px; height: 1px; background: var(--bwl-grey-2); flex: 0 0 auto;
}
.bwl-h2 {
	font-size: clamp(30px, 4.6vw, 54px);
	font-weight: 700;
	max-width: 20ch;
}
.bwl-h2--big { font-size: clamp(34px, 5.4vw, 64px); max-width: 18ch; }
.bwl-lead { font-size: clamp(17px, 1.6vw, 20px); color: var(--bwl-grey); max-width: 62ch; }

/* ---------- Reveal on scroll ---------- */
.bwl-reveal {
	opacity: 0;
	transform: translateY(34px);
	transition: opacity 0.9s var(--bwl-ease), transform 0.9s var(--bwl-ease);
	transition-delay: var(--bwl-delay, 0ms);
	will-change: opacity, transform;
}
.bwl-reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
	.bwl-reveal { opacity: 1; transform: none; transition: none; }
	html { scroll-behavior: auto; }
}

/* ---------- Sections ---------- */
.bwl-section { padding: clamp(90px, 11vw, 150px) 0; position: relative; }

/* ==========================================================================
   HERO
   ========================================================================== */
.bwl-hero {
	position: relative;
	padding: clamp(150px, 18vw, 210px) 0 clamp(60px, 7vw, 90px);
	text-align: center;
	overflow: hidden;
}
.bwl-hero__glow {
	position: absolute; inset: 0; pointer-events: none;
	background:
		radial-gradient(720px 340px at 50% 0%, rgba(255,255,255,0.09), transparent 70%);
}
.bwl-hero .bwl-eyebrow { justify-content: center; }
.bwl-hero .bwl-eyebrow::before { display: none; }
.bwl-hero__title {
	font-size: clamp(36px, 6vw, 76px);
	font-weight: 700;
	max-width: 22ch;
	margin: 0 auto 24px;
}
.bwl-hero__sub {
	font-size: clamp(16px, 1.7vw, 20px);
	color: var(--bwl-grey);
	max-width: 64ch;
	margin: 0 auto 36px;
}
.bwl-hero__actions {
	display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
	margin-bottom: clamp(48px, 6vw, 74px);
}

/* Video frame */
.bwl-hero__video { max-width: 940px; margin: 0 auto; }
.bwl-hero__video-inner {
	position: relative;
	aspect-ratio: 16 / 9;
	border-radius: var(--bwl-radius);
	border: 1px solid var(--bwl-line);
	background:
		radial-gradient(600px 300px at 50% 110%, rgba(255,255,255,0.07), transparent 65%),
		linear-gradient(180deg, #101010, #0a0a0a);
	overflow: hidden;
	display: flex; align-items: center; justify-content: center;
	box-shadow: 0 40px 120px -40px rgba(0,0,0,0.9);
}
.bwl-hero__video-inner iframe,
.bwl-hero__video-inner video {
	position: absolute; inset: 0; width: 100%; height: 100%; border: 0;
	object-fit: cover;
}
.bwl-play {
	position: relative; z-index: 3;
	width: 92px; height: 92px; border-radius: 50%;
	background: var(--bwl-white); color: var(--bwl-black);
	border: 0; cursor: pointer;
	display: flex; align-items: center; justify-content: center;
	transition: transform 0.3s var(--bwl-ease);
}
.bwl-play:hover { transform: scale(1.08); }
.bwl-play svg { margin-left: 4px; }
.bwl-play__ring {
	position: absolute; inset: -12px; border-radius: 50%;
	border: 1px solid rgba(255,255,255,0.4);
	animation: bwl-pulse 2.4s infinite;
}
@keyframes bwl-pulse {
	0% { transform: scale(0.9); opacity: 0.9; }
	70% { transform: scale(1.35); opacity: 0; }
	100% { opacity: 0; }
}
.bwl-hero__video-meta {
	position: absolute; left: 24px; bottom: 20px; z-index: 3;
	display: flex; flex-direction: column; align-items: flex-start; gap: 6px;
	text-align: left;
}
.bwl-hero__video-badge {
	font-size: 10.5px; font-weight: 700; letter-spacing: 0.22em;
	background: rgba(255,255,255,0.1); border: 1px solid var(--bwl-line);
	padding: 5px 10px; border-radius: 999px;
}
.bwl-hero__video-note { font-size: 14px; color: var(--bwl-grey); }
.bwl-hero__video-hint { font-size: 11.5px; color: var(--bwl-grey-2); }
.bwl-hero__video.is-playing .bwl-play,
.bwl-hero__video.is-playing .bwl-hero__video-meta,
.bwl-hero__video.is-playing .bwl-hero__chart { display: none; }

.bwl-hero__chart { position: absolute; inset: auto 0 0 0; height: 46%; opacity: 0.5; z-index: 1; }
.bwl-hero__chart svg { width: 100%; height: 100%; }
.bwl-hero__chart-line {
	fill: none; stroke: var(--bwl-white); stroke-width: 2;
	stroke-dasharray: 1000; stroke-dashoffset: 1000;
	animation: bwl-draw 3s 0.8s var(--bwl-ease) forwards;
}
@keyframes bwl-draw { to { stroke-dashoffset: 0; } }

/* Scroll cue */
.bwl-scrollcue {
	display: inline-flex; flex-direction: column; align-items: center; gap: 12px;
	margin-top: clamp(40px, 5vw, 64px);
	color: var(--bwl-grey);
	font-size: 12px; letter-spacing: 0.22em; font-weight: 600;
	text-transform: uppercase;
}
.bwl-scrollcue:hover { color: var(--bwl-white); }
.bwl-scrollcue__line {
	width: 1px; height: 64px;
	background: linear-gradient(var(--bwl-white), transparent);
	position: relative; overflow: hidden;
}
.bwl-scrollcue__line::after {
	content: ""; position: absolute; top: -30%; left: 0; width: 100%; height: 30%;
	background: var(--bwl-white);
	animation: bwl-drip 1.8s infinite var(--bwl-ease);
}
@keyframes bwl-drip { to { top: 110%; } }

/* ==========================================================================
   TICKER
   ========================================================================== */
.bwl-ticker {
	border-top: 1px solid var(--bwl-line-soft);
	border-bottom: 1px solid var(--bwl-line-soft);
	padding: 20px 0;
	overflow: hidden;
	background: var(--bwl-ink);
}
.bwl-ticker__track { display: flex; width: max-content; animation: bwl-marquee 36s linear infinite; }
.bwl-ticker__group { display: flex; align-items: center; }
.bwl-ticker__item {
	font-family: var(--bwl-font-display);
	font-size: 15px; font-weight: 600; letter-spacing: 0.14em;
	white-space: nowrap;
	padding: 0 18px;
}
.bwl-ticker__dot { color: var(--bwl-grey-2); }
@keyframes bwl-marquee { to { transform: translateX(-50%); } }

/* ==========================================================================
   PROBLEM
   ========================================================================== */
.bwl-problem__grid {
	display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
	margin-top: clamp(40px, 5vw, 64px);
}
.bwl-card {
	background: var(--bwl-panel);
	border: 1px solid var(--bwl-line-soft);
	border-radius: var(--bwl-radius);
	padding: 34px 30px;
	position: relative;
	transition: transform 0.35s var(--bwl-ease), border-color 0.35s;
}
.bwl-card:hover { transform: translateY(-6px); border-color: #3a3a3a; }
.bwl-card__num {
	font-family: var(--bwl-font-display);
	font-size: 13px; font-weight: 700; letter-spacing: 0.2em;
	color: var(--bwl-grey-2);
	display: block; margin-bottom: 18px;
}
.bwl-card h3 { font-size: 21px; }
.bwl-card p { color: var(--bwl-grey); font-size: 15.5px; margin: 0; }

.bwl-bridge {
	margin-top: clamp(56px, 7vw, 84px);
	text-align: center;
	display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.bwl-bridge p {
	font-family: var(--bwl-font-display);
	font-size: clamp(18px, 2vw, 23px); font-weight: 500;
	max-width: 46ch; color: var(--bwl-white);
}
.bwl-bridge__arrow { color: var(--bwl-grey); animation: bwl-bob 2.2s infinite var(--bwl-ease); }
@keyframes bwl-bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(10px); } }

/* ==========================================================================
   PROOF
   ========================================================================== */
.bwl-proof { background: var(--bwl-ink); border-top: 1px solid var(--bwl-line-soft); border-bottom: 1px solid var(--bwl-line-soft); }
.bwl-counters {
	display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
	margin: clamp(44px, 5vw, 64px) 0;
}
.bwl-counter {
	border: 1px solid var(--bwl-line-soft);
	background: linear-gradient(180deg, var(--bwl-panel-2), var(--bwl-panel));
	border-radius: var(--bwl-radius);
	padding: 28px 24px;
}
.bwl-counter__value {
	font-family: var(--bwl-font-display);
	font-size: clamp(30px, 3.4vw, 46px);
	font-weight: 700; letter-spacing: -0.02em;
	display: block; margin-bottom: 6px;
	font-variant-numeric: tabular-nums;
}
.bwl-counter__label { color: var(--bwl-grey); font-size: 14px; line-height: 1.45; display: block; }

.bwl-shot { margin: 0 0 26px; }
.bwl-shot__frame {
	border: 1px solid var(--bwl-line);
	border-radius: var(--bwl-radius);
	overflow: hidden;
	background: var(--bwl-panel);
	box-shadow: 0 30px 90px -30px rgba(0,0,0,0.85);
	transition: transform 0.4s var(--bwl-ease), box-shadow 0.4s var(--bwl-ease);
}
.bwl-shot:hover .bwl-shot__frame {
	transform: translateY(-6px) scale(1.005);
	box-shadow: 0 44px 110px -30px rgba(0,0,0,0.95);
}
.bwl-shot figcaption {
	margin-top: 14px;
	font-size: 14.5px; color: var(--bwl-grey);
	max-width: 70ch;
}
.bwl-shot figcaption strong { color: var(--bwl-white); }
.bwl-shot--hero { margin-top: 10px; }
.bwl-shot-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; margin: 26px 0; }

/* ==========================================================================
   PROCESS
   ========================================================================== */
.bwl-phases { position: relative; margin-top: clamp(48px, 6vw, 72px); padding-left: 40px; }
.bwl-phases__line {
	position: absolute; left: 27px; top: 8px; bottom: 8px; width: 2px;
	background: var(--bwl-line-soft);
	overflow: hidden; border-radius: 2px;
}
.bwl-phases__line-fill {
	display: block; width: 100%; height: 0;
	background: var(--bwl-white);
}
.bwl-phase {
	position: relative;
	padding: 0 0 clamp(44px, 5vw, 64px) 40px;
}
.bwl-phase:last-child { padding-bottom: 0; }
.bwl-phase__marker {
	position: absolute; left: -40px; top: 0;
	width: 56px; height: 56px; border-radius: 50%;
	background: var(--bwl-black);
	border: 1px solid var(--bwl-line);
	display: flex; align-items: center; justify-content: center;
	font-family: var(--bwl-font-display); font-weight: 700; font-size: 15px;
	z-index: 2;
}
.bwl-phase__body { max-width: 760px; }
.bwl-phase__when {
	font-size: 11.5px; font-weight: 700; letter-spacing: 0.24em;
	color: var(--bwl-grey-2); display: block; margin-bottom: 10px; margin-top: 8px;
}
.bwl-phase__body h3 { font-size: clamp(23px, 2.6vw, 32px); }
.bwl-phase__body p { color: var(--bwl-grey); max-width: 66ch; }
.bwl-phase__chip {
	display: inline-block;
	font-size: 13px; font-weight: 600;
	border: 1px solid var(--bwl-line);
	background: var(--bwl-panel);
	border-radius: 999px;
	padding: 9px 16px;
	margin-top: 6px;
}

/* ==========================================================================
   CASES
   ========================================================================== */
.bwl-cases { background: var(--bwl-ink); border-top: 1px solid var(--bwl-line-soft); border-bottom: 1px solid var(--bwl-line-soft); }
.bwl-tabs {
	display: flex; gap: 12px; flex-wrap: wrap;
	margin: clamp(36px, 4vw, 52px) 0 34px;
}
.bwl-tab {
	background: none;
	border: 1px solid var(--bwl-line);
	color: var(--bwl-grey);
	padding: 12px 26px;
	border-radius: 999px;
	font-family: var(--bwl-font-display);
	font-size: 15px; font-weight: 600;
	cursor: pointer;
	transition: all 0.3s var(--bwl-ease);
}
.bwl-tab:hover { color: var(--bwl-white); border-color: #3a3a3a; }
.bwl-tab.is-active { background: var(--bwl-white); color: var(--bwl-black); border-color: var(--bwl-white); }

.bwl-case { display: none; }
.bwl-case.is-active { display: block; animation: bwl-fadein 0.6s var(--bwl-ease); }
@keyframes bwl-fadein { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }

.bwl-case__head { max-width: 800px; }
.bwl-case__niche {
	font-size: 12px; font-weight: 700; letter-spacing: 0.2em;
	color: var(--bwl-grey-2); text-transform: uppercase;
	display: block; margin-bottom: 12px;
}
.bwl-case__head h3 { font-size: clamp(25px, 3vw, 38px); }
.bwl-case__head p { color: var(--bwl-grey); }

.bwl-case__stats {
	display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
	margin: 34px 0;
}
.bwl-stat {
	border-left: 2px solid var(--bwl-white);
	padding: 6px 0 6px 18px;
}
.bwl-stat__value {
	font-family: var(--bwl-font-display);
	font-size: clamp(24px, 2.6vw, 36px); font-weight: 700;
	display: block;
	font-variant-numeric: tabular-nums;
}
.bwl-stat__label { color: var(--bwl-grey); font-size: 13.5px; line-height: 1.4; display: block; margin-top: 4px; }

.bwl-case__shots { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }

/* ==========================================================================
   CREATIVES (marquee)
   ========================================================================== */
.bwl-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: clamp(38px, 4vw, 54px); }
.bwl-chip {
	font-family: var(--bwl-font-display);
	font-size: 13px; font-weight: 700; letter-spacing: 0.1em;
	border: 1px solid var(--bwl-line);
	background: var(--bwl-panel);
	padding: 9px 16px; border-radius: 999px;
}
.bwl-marquee { overflow: hidden; display: grid; gap: 22px; }
.bwl-marquee__track { display: flex; width: max-content; gap: 22px; }
.bwl-marquee__track--left { animation: bwl-marquee 52s linear infinite; }
.bwl-marquee__track--right { animation: bwl-marquee-rev 52s linear infinite; }
.bwl-marquee__track:hover { animation-play-state: paused; }
.bwl-marquee__group { display: flex; gap: 22px; }
.bwl-marquee__item {
	width: clamp(420px, 44vw, 640px);
	border-radius: var(--bwl-radius);
	overflow: hidden;
	border: 1px solid var(--bwl-line);
	flex: 0 0 auto;
	transition: transform 0.35s var(--bwl-ease);
}
.bwl-marquee__item:hover { transform: scale(1.02); }
@keyframes bwl-marquee-rev { from { transform: translateX(-50%); } to { transform: translateX(0); } }

/* ==========================================================================
   WINS
   ========================================================================== */
.bwl-wins { background: var(--bwl-ink); border-top: 1px solid var(--bwl-line-soft); border-bottom: 1px solid var(--bwl-line-soft); }
.bwl-wins__grid {
	display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
	margin-top: clamp(40px, 5vw, 60px);
}
.bwl-win { margin: 0; }
.bwl-win__frame {
	position: relative;
	border: 1px solid var(--bwl-line);
	border-radius: var(--bwl-radius);
	overflow: hidden;
	background: var(--bwl-panel);
	padding-top: 40px;
	transition: transform 0.35s var(--bwl-ease);
}
.bwl-win:hover .bwl-win__frame { transform: translateY(-5px); }
.bwl-win__dots {
	position: absolute; top: 0; left: 0; right: 0; height: 40px;
	display: flex; align-items: center; gap: 7px; padding: 0 18px;
	border-bottom: 1px solid var(--bwl-line-soft);
	background: var(--bwl-panel-2);
}
.bwl-win__dots i {
	width: 10px; height: 10px; border-radius: 50%;
	background: #2e2e2e; display: block;
}

/* ==========================================================================
   BEFORE / AFTER
   ========================================================================== */
.bwl-ba__rows { display: grid; gap: 34px; margin-top: clamp(44px, 5vw, 64px); max-width: 900px; }
.bwl-ba__meta { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; margin-bottom: 12px; }
.bwl-ba__label { font-family: var(--bwl-font-display); font-weight: 600; font-size: 17px; }
.bwl-ba__badge {
	font-family: var(--bwl-font-display); font-weight: 700; font-size: 15px;
	border: 1px solid var(--bwl-white); border-radius: 999px; padding: 4px 14px;
	font-variant-numeric: tabular-nums;
}
.bwl-ba__bar { position: relative; height: 42px; margin-bottom: 8px; }
.bwl-ba__fill {
	position: absolute; inset: 0 auto 0 0; width: 0;
	border-radius: 8px;
	transition: width 1.4s var(--bwl-ease) 0.15s;
}
.bwl-ba__bar--before .bwl-ba__fill { background: #222222; border: 1px solid var(--bwl-line); }
.bwl-ba__bar--after .bwl-ba__fill { background: var(--bwl-white); }
.bwl-reveal.is-visible .bwl-ba__fill,
.bwl-ba__row.is-visible .bwl-ba__fill { width: var(--w); }
.bwl-ba__value {
	position: relative; z-index: 2;
	display: inline-flex; align-items: center; height: 100%;
	padding: 0 16px;
	font-size: 13.5px; font-weight: 600;
	font-variant-numeric: tabular-nums;
	white-space: nowrap;
}
.bwl-ba__bar--after .bwl-ba__value { color: var(--bwl-black); font-weight: 700; }

/* ==========================================================================
   CTA
   ========================================================================== */
.bwl-cta { text-align: center; overflow: hidden; }
.bwl-cta__glow {
	position: absolute; inset: 0; pointer-events: none;
	background: radial-gradient(760px 380px at 50% 100%, rgba(255,255,255,0.08), transparent 70%);
}
.bwl-cta .bwl-eyebrow { justify-content: center; }
.bwl-cta .bwl-eyebrow::before { display: none; }
.bwl-cta .bwl-h2, .bwl-cta .bwl-lead { margin-left: auto; margin-right: auto; }
.bwl-cta__actions {
	display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
	margin-top: 36px;
}
.bwl-cta__trust { margin-top: 26px; font-size: 13.5px; color: var(--bwl-grey-2); letter-spacing: 0.02em; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.bwl-footer {
	border-top: 1px solid var(--bwl-line-soft);
	padding: clamp(56px, 7vw, 84px) 0 34px;
	background: var(--bwl-ink);
}
.bwl-footer__top {
	display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 44px;
	padding-bottom: 44px;
}
.bwl-footer__brand p { color: var(--bwl-grey); font-size: 14.5px; max-width: 40ch; margin-top: 18px; }
.bwl-footer__col h4 {
	font-size: 12px; letter-spacing: 0.22em; color: var(--bwl-grey-2);
	text-transform: uppercase; margin-bottom: 18px;
}
.bwl-footer__nav { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; font-size: 14.5px; }
.bwl-footer__nav a { color: var(--bwl-grey); transition: color 0.25s; }
.bwl-footer__nav a:hover { color: var(--bwl-white); }
.bwl-footer__bottom {
	border-top: 1px solid var(--bwl-line-soft);
	padding-top: 24px;
	font-size: 13px; color: var(--bwl-grey-2);
}
.bwl-footer__bottom p { margin: 0; }

/* ==========================================================================
   Blog / inner pages fallback
   ========================================================================== */
.bwl-page { padding: 150px 0 90px; }
.bwl-entry { margin-bottom: 44px; }
.bwl-entry__title { font-size: clamp(26px, 3.4vw, 42px); }
.bwl-entry__title a:hover { text-decoration: underline; }
.bwl-entry__content { color: var(--bwl-grey); }
.bwl-entry__content a { text-decoration: underline; }
.bwl-archive-header h1 { font-size: clamp(28px, 4vw, 48px); }

/* Elementor full-bleed friendliness */
.elementor-page .bwl-main { padding: 0; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
	.bwl-problem__grid { grid-template-columns: 1fr 1fr; }
	.bwl-counters { grid-template-columns: 1fr 1fr; }
	.bwl-case__stats { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 820px) {
	.bwl-nav, .bwl-header__cta { display: none; }
	.bwl-burger { display: block; margin-left: auto; }
	.bwl-shot-grid, .bwl-case__shots, .bwl-wins__grid { grid-template-columns: 1fr; }
	.bwl-footer__top { grid-template-columns: 1fr; gap: 30px; }
}
@media (max-width: 620px) {
	body { font-size: 16px; }
	.bwl-container { padding: 0 20px; }
	.bwl-problem__grid { grid-template-columns: 1fr; }
	.bwl-counters { grid-template-columns: 1fr 1fr; gap: 12px; }
	.bwl-counter { padding: 20px 16px; }
	.bwl-phases { padding-left: 30px; }
	.bwl-phases__line { left: 21px; }
	.bwl-phase__marker { left: -30px; width: 44px; height: 44px; font-size: 13px; }
	.bwl-marquee__item { width: 82vw; }
	.bwl-ba__meta { flex-direction: column; align-items: flex-start; gap: 6px; }
	.bwl-btn--big { padding: 16px 26px; font-size: 15.5px; }
	.bwl-play { width: 60px; height: 60px; }
	.bwl-play svg { width: 22px; height: 22px; }
	.bwl-hero__video-meta { left: 14px; bottom: 10px; gap: 4px; }
	.bwl-hero__video-badge { font-size: 9px; padding: 4px 8px; }
	.bwl-hero__video-note { font-size: 12px; }
	.bwl-hero__video-hint { display: none; }
}
