/* =====================================================================
   Vanya Goel — Media Kit
   Light, friendly, card-forward design system (Beacons-inspired).
   ===================================================================== */

:root {
	/* ---- theme-invariant ---- */
	--font-display: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--font-body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	--container: 1080px;
	--r: 24px; --r-md: 18px; --r-sm: 13px; --pill: 999px;
	--ease: cubic-bezier(.22,1,.36,1);
	--ease-out: cubic-bezier(.16,1,.3,1);
	--yt: #ff3d46; --li: #2f6bff; --ig: #e1306c;

	/* ---- LIGHT theme (default) ---- */
	--bg: #f5f3ee; --bg-2: #fbfaf7; --bg-tint: #efece4; --card: #ffffff;
	--ink: #17161c; --ink-2: #3d3a44; --muted: #6f6b74; --faint: #a29daa;
	--line: #eae5db; --line-2: #ddd6c9;
	--accent: #3d5afe; --accent-ink: #2a3fd6; --accent-soft: #e9ecff; --accent-2: #6f83ff;
	--spark: #ffb020; --spark-soft: #fff3db;
	--green: #11a97a; --green-soft: #e3f6ef; --danger: #e5484d;
	--shadow: 0 10px 34px -12px rgba(43,36,20,.16), 0 2px 6px rgba(43,36,20,.05);
	--shadow-lg: 0 28px 60px -18px rgba(43,36,20,.24), 0 6px 16px rgba(43,36,20,.08);
	--shadow-accent: 0 14px 30px -10px rgba(61,90,254,.45);
	/* component tokens */
	--hero-bg: #f5f3ee;
	--hero-glow-1: rgba(61,90,254,.16); --hero-glow-2: rgba(255,150,90,.2);
	--glass-bg: rgba(255,255,255,.82); --glass-brd: rgba(255,255,255,.9); --glass-2: rgba(255,255,255,.55);
	--nav-bg: rgba(255,255,255,.72);
	--featured-bg: linear-gradient(180deg, #ffffff, #fbfaff);
	--panel-bg: linear-gradient(135deg, #e9ecff 0%, #f3f0ff 45%, #fff3db 100%);
	--grain-blend: multiply; --grain-op: .03;
	--scroll-thumb: #d8d6ea;
	--logo-chip: #ffffff;
	color-scheme: light;
}

/* ---- DARK theme values (shared) ---- */
:root[data-theme="dark"] {
	--bg: #0c0b13; --bg-2: #131120; --bg-tint: #1b1829; --card: #16141f;
	--ink: #f4f3f9; --ink-2: #cbc8d8; --muted: #9a97ab; --faint: #6e6b80;
	--line: rgba(255,255,255,.09); --line-2: rgba(255,255,255,.16);
	--accent: #5f6dff; --accent-ink: #aeb6ff; --accent-soft: rgba(95,109,255,.16); --accent-2: #8e97ff;
	--spark: #ffc24d; --spark-soft: rgba(255,194,77,.16);
	--green: #34d399; --green-soft: rgba(52,211,153,.16); --danger: #f2555a;
	--shadow: 0 14px 38px -14px rgba(0,0,0,.6), 0 2px 8px rgba(0,0,0,.4);
	--shadow-lg: 0 32px 66px -20px rgba(0,0,0,.72), 0 10px 24px rgba(0,0,0,.45);
	--shadow-accent: 0 16px 36px -10px rgba(95,109,255,.5);
	--hero-bg: #0b0a13;
	--hero-glow-1: rgba(150,90,255,.45); --hero-glow-2: rgba(90,110,255,.32);
	--glass-bg: rgba(30,26,50,.6); --glass-brd: rgba(255,255,255,.14); --glass-2: rgba(30,26,50,.55);
	--nav-bg: rgba(16,14,24,.74);
	--featured-bg: linear-gradient(180deg, rgba(95,109,255,.12), #16141f);
	--panel-bg: linear-gradient(135deg, rgba(95,109,255,.16) 0%, rgba(142,151,255,.08) 45%, rgba(255,194,77,.1) 100%);
	--grain-blend: screen; --grain-op: .05;
	--scroll-thumb: #2c2a3a;
	--logo-chip: #ffffff;
	color-scheme: dark;
}
@media (prefers-color-scheme: dark) {
	:root:not([data-theme="light"]) {
		--bg: #0c0b13; --bg-2: #131120; --bg-tint: #1b1829; --card: #16141f;
		--ink: #f4f3f9; --ink-2: #cbc8d8; --muted: #9a97ab; --faint: #6e6b80;
		--line: rgba(255,255,255,.09); --line-2: rgba(255,255,255,.16);
		--accent: #5f6dff; --accent-ink: #aeb6ff; --accent-soft: rgba(95,109,255,.16); --accent-2: #8e97ff;
		--spark: #ffc24d; --spark-soft: rgba(255,194,77,.16);
		--green: #34d399; --green-soft: rgba(52,211,153,.16); --danger: #f2555a;
		--shadow: 0 14px 38px -14px rgba(0,0,0,.6), 0 2px 8px rgba(0,0,0,.4);
		--shadow-lg: 0 32px 66px -20px rgba(0,0,0,.72), 0 10px 24px rgba(0,0,0,.45);
		--shadow-accent: 0 16px 36px -10px rgba(95,109,255,.5);
		--hero-bg: #0b0a13;
		--hero-glow-1: rgba(150,90,255,.45); --hero-glow-2: rgba(90,110,255,.32);
		--glass-bg: rgba(30,26,50,.6); --glass-brd: rgba(255,255,255,.14); --glass-2: rgba(30,26,50,.55);
		--nav-bg: rgba(16,14,24,.74);
		--featured-bg: linear-gradient(180deg, rgba(95,109,255,.12), #16141f);
		--panel-bg: linear-gradient(135deg, rgba(95,109,255,.16) 0%, rgba(142,151,255,.08) 45%, rgba(255,194,77,.1) 100%);
		--grain-blend: screen; --grain-op: .05;
		--scroll-thumb: #2c2a3a;
		--logo-chip: #ffffff;
		color-scheme: dark;
	}
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 84px; overflow-x: clip; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
	margin: 0;
	background: var(--bg);
	color: var(--ink);
	font-family: var(--font-body);
	font-size: 17px;
	line-height: 1.6;
	letter-spacing: -0.006em;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--accent-soft); color: var(--accent-ink); }

::-webkit-scrollbar { width: 12px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--scroll-thumb); border-radius: 20px; border: 3px solid var(--bg); }
::-webkit-scrollbar-thumb:hover { background: #3a3850; }

.vmk-container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 clamp(18px, 5vw, 40px); }

/* ---------- Typography ---------- */
.vmk-eyebrow {
	font-family: var(--font-body);
	font-size: .8rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
	color: var(--accent-ink); background: var(--accent-soft);
	padding: .45em 1em; border-radius: var(--pill); display: inline-block; margin: 0 0 1.1rem;
}
.vmk-h1, .vmk-profile__name {
	font-family: var(--font-display); font-weight: 800;
	font-size: clamp(2.4rem, 6vw, 4rem); line-height: 1.02; letter-spacing: -0.03em; margin: 0;
}
.vmk-h2 {
	font-family: var(--font-display); font-weight: 800;
	font-size: clamp(1.8rem, 4vw, 2.9rem); line-height: 1.08; letter-spacing: -0.025em; margin: 0 0 .7rem;
}
.vmk-h3 { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.35rem, 2.6vw, 1.9rem); letter-spacing: -.02em; margin: 0 0 .5rem; line-height: 1.15; }
.vmk-lede { font-size: clamp(1.02rem, 1.8vw, 1.2rem); color: var(--muted); }
strong { color: var(--ink); font-weight: 700; }

/* ---------- Buttons ---------- */
.vmk-btn {
	position: relative; display: inline-flex; align-items: center; justify-content: center; gap: .5em;
	padding: .92em 1.7em; border-radius: var(--pill); font-family: var(--font-display);
	font-weight: 700; font-size: .98rem; letter-spacing: -.01em; cursor: pointer; border: none;
	color: #fff; background: linear-gradient(180deg, #4a64ff, var(--accent)); box-shadow: var(--shadow-accent);
	transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, filter .25s;
}
.vmk-btn:hover { transform: translateY(-3px); filter: saturate(1.08); background: linear-gradient(180deg, #7c86ff, var(--accent)); box-shadow: 0 20px 40px -10px rgba(95,109,255,.6); }
.vmk-btn:active { transform: translateY(-1px) scale(.99); }
.vmk-btn__arrow { transition: transform .25s var(--ease); }
.vmk-btn:hover .vmk-btn__arrow { transform: translateX(4px); }
.vmk-btn--lg { padding: 1.05em 2em; font-size: 1.02rem; }
.vmk-btn--sm { padding: .62em 1.25em; font-size: .9rem; }
.vmk-btn--block { width: 100%; }
.vmk-btn--ghost { color: var(--ink); background: var(--card); box-shadow: var(--shadow); border: 1px solid var(--line-2); }
.vmk-btn--ghost:hover { background: #fff; color: var(--accent-ink); border-color: var(--accent); box-shadow: var(--shadow-lg); }

/* ---------- Nav ---------- */
.vmk-nav { position: fixed; inset: 0 0 auto 0; z-index: 120; transition: transform .4s var(--ease); }
.vmk-nav.is-stuck .vmk-nav__inner { background: var(--nav-bg); backdrop-filter: saturate(160%) blur(16px); -webkit-backdrop-filter: saturate(180%) blur(16px); box-shadow: var(--shadow); }
.vmk-nav.is-hidden { transform: translateY(-115%); }
.vmk-nav__inner {
	max-width: calc(var(--container) + 40px); margin: 12px auto 0; padding: 10px 12px 10px 22px;
	display: flex; align-items: center; justify-content: space-between; gap: 20px;
	border-radius: var(--pill); transition: background .35s, box-shadow .35s;
}
.vmk-nav__brand { font-family: var(--font-display); font-weight: 800; font-size: 1.12rem; letter-spacing: -.02em; }
.vmk-nav__links { display: flex; gap: 26px; }
.vmk-nav__links a { font-size: .92rem; color: var(--muted); font-weight: 600; position: relative; transition: color .2s; }
.vmk-nav__links a:hover { color: var(--ink); }
@media (max-width: 900px) { .vmk-nav__links { display: none; } .vmk-nav__inner { margin-top: 8px; } }

/* ---------- Section rhythm ---------- */
.vmk-section { position: relative; padding: clamp(56px, 9vh, 104px) 0; }
.vmk-section__head { max-width: 680px; margin: 0 auto clamp(36px, 5vw, 60px); text-align: center; }
.vmk-section__intro { color: var(--muted); font-size: clamp(1rem, 1.6vw, 1.12rem); margin: .3rem auto 0; max-width: 56ch; }

/* ---------- Reveal ---------- */
.vmk-reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
.vmk-reveal.is-in { opacity: 1; transform: none; }
.no-js .vmk-reveal { opacity: 1; transform: none; }

/* =====================================================================
   HERO — editorial
   ===================================================================== */
.vmk-hero { position: relative; background: var(--hero-bg); color: var(--ink); padding: 132px 0 72px; overflow: hidden; transition: background .4s ease; }
.vmk-hero__bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.vmk-hero__glow { position: absolute; top: -20%; right: -4%; width: 46vw; height: 46vw; max-width: 640px; max-height: 640px; border-radius: 50%; background: radial-gradient(circle, var(--hero-glow-1), transparent 64%); filter: blur(24px); will-change: transform, translate; }
.vmk-hero__gridlines { position: absolute; inset: 0; opacity: .5; background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px); background-size: 72px 72px; -webkit-mask: radial-gradient(70% 60% at 65% 35%, #000 14%, transparent 78%); mask: radial-gradient(70% 60% at 65% 35%, #000 14%, transparent 78%); }

.vmk-hero__top { position: relative; z-index: 1; display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(32px, 6vw, 84px); align-items: center; }
@media (max-width: 900px) { .vmk-hero__top { grid-template-columns: 1fr; gap: 44px; } }

/* eyebrow */
.vmk-hero__eyebrow { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin: 0 0 24px; }
.vmk-hero__badge { font-size: .74rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--accent-ink); background: var(--accent-soft); padding: .5em 1em; border-radius: var(--pill); }
.vmk-hero__roles { font-size: .86rem; font-weight: 500; color: var(--muted); }

/* headline — restrained size */
.vmk-hero__name { margin: 0; font-family: var(--font-display); font-weight: 800; font-size: clamp(1.8rem, 3.3vw, 2.85rem); line-height: 1.14; letter-spacing: -.025em; color: var(--ink); text-wrap: balance; max-width: 17ch; }
.vmk-hero__accent { font-style: italic; background: linear-gradient(100deg, var(--accent), #8b5cff); -webkit-background-clip: text; background-clip: text; color: transparent; }
.vmk-hero__name .vmk-hero__accent:nth-of-type(2) { background: linear-gradient(100deg, #8b5cff, #ff7a55); -webkit-background-clip: text; background-clip: text; color: transparent; }
.vmk-hero__tagline { color: var(--muted); font-size: clamp(1rem, 1.4vw, 1.1rem); line-height: 1.6; max-width: 48ch; margin: 20px 0 0; }
.vmk-hero__cta { display: flex; gap: 12px; flex-wrap: wrap; margin: 28px 0 0; }
@media (max-width: 460px) { .vmk-hero__cta { flex-direction: column; } .vmk-hero__cta .vmk-btn { width: 100%; } }
.vmk-btn--grad { color: #fff; background: linear-gradient(100deg, var(--accent), #7c5cff); box-shadow: var(--shadow-accent); }
.vmk-btn--grad:hover { filter: brightness(1.06); background: linear-gradient(100deg, var(--accent), #6a4cff); }
.vmk-btn--outline { color: var(--ink); background: var(--card); border: 1px solid var(--line-2); box-shadow: var(--shadow); }
.vmk-btn--outline:hover { color: var(--accent-ink); border-color: var(--accent); box-shadow: var(--shadow-lg); }

/* clean inline stat row */
.vmk-hero__stats { list-style: none; display: flex; flex-wrap: wrap; gap: 0; padding: 28px 0 0; margin: 34px 0 0; border-top: 1px solid var(--line); }
.vmk-hero__stats li { position: relative; padding: 0 clamp(12px, 1.7vw, 22px); }
.vmk-hero__stats li:first-child { padding-left: 0; }
.vmk-hero__stats li + li::before { content: ""; position: absolute; left: 0; top: 4px; bottom: 4px; width: 1px; background: var(--line); }
.vmk-hero__stat-value { display: block; font-family: var(--font-display); font-weight: 800; font-size: clamp(1.2rem, 1.7vw, 1.45rem); letter-spacing: -.02em; color: var(--ink); }
@media (max-width: 560px) { .vmk-hero__stats { flex-wrap: wrap; } .vmk-hero__stats li { flex: 0 0 calc(50% - 1px); padding: 8px 0 0; } .vmk-hero__stats li:nth-child(2)::before, .vmk-hero__stats li + li::before { display: none; } }
.vmk-hero__stat-label { font-size: .74rem; color: var(--muted); margin-top: 3px; }

/* single clean visual card (portrait + platform stats) */
.vmk-hero__visual { justify-self: center; width: 100%; max-width: 400px; will-change: transform, translate; }
.vmk-hero__card { position: relative; border-radius: 26px; background: var(--card); border: 1px solid var(--line); box-shadow: var(--shadow-lg); overflow: hidden; }
.vmk-hero__card::before { content: ""; position: absolute; inset: -30% -20% auto -20%; height: 60%; z-index: 0; background: radial-gradient(60% 100% at 60% 0%, var(--hero-glow-1), transparent 70%); filter: blur(20px); }
.vmk-hero__portrait { position: relative; z-index: 1; aspect-ratio: 5 / 4; overflow: hidden; }
.vmk-hero__portrait img { width: 100%; height: 100%; object-fit: cover; }
.vmk-hero__portrait.is-mono { display: grid; place-items: center; background: linear-gradient(150deg, var(--accent), #7c5cff 55%, #a15bff); }
.vmk-hero__mono { font-family: var(--font-display); font-weight: 800; font-size: clamp(3.4rem, 8vw, 5rem); color: #fff; letter-spacing: -.03em; line-height: 1; }
.vmk-hero__ph-name { position: absolute; bottom: 16px; left: 0; right: 0; text-align: center; font-family: var(--font-display); font-style: italic; font-weight: 600; font-size: 1.1rem; color: rgba(255,255,255,.9); }
.vmk-hero__pstats { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; padding: 16px clamp(14px, 2vw, 20px); }
.vmk-hero__pstat { display: flex; align-items: center; gap: 9px; position: relative; }
.vmk-hero__pstat + .vmk-hero__pstat::before { content: ""; position: absolute; left: -4px; top: 50%; transform: translateY(-50%); width: 1px; height: 26px; background: var(--line); }
.vmk-hero__pic { width: 30px; height: 30px; border-radius: 8px; display: grid; place-items: center; color: #fff; background: var(--accent); flex: 0 0 auto; }
.vmk-hero__pic svg { width: 17px; height: 17px; }
.vmk-hero__pic[data-platform="youtube"] { background: #ff3d46; } .vmk-hero__pic[data-platform="linkedin"] { background: #2f6bff; } .vmk-hero__pic[data-platform="instagram"] { background: linear-gradient(135deg, #feda75, #fa7e1e 35%, #d62976 65%, #962fbf); }
.vmk-hero__pmeta { display: flex; flex-direction: column; line-height: 1.1; min-width: 0; }
.vmk-hero__pnum { font-family: var(--font-display); font-weight: 800; font-size: .98rem; color: var(--ink); }
.vmk-hero__plabel { font-size: .66rem; color: var(--muted); }

.vmk-in { opacity: 0; animation: heroIn .8s var(--ease-out) forwards; animation-delay: var(--d, 0s); }
@keyframes heroIn { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }

/* =====================================================================
   WELCOME
   ===================================================================== */
.vmk-welcome__grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(24px, 5vw, 64px); align-items: start; }
@media (max-width: 820px) { .vmk-welcome__grid { grid-template-columns: 1fr; } }
.vmk-welcome__aside { position: sticky; top: 100px; }
@media (max-width: 820px) { .vmk-welcome__aside { position: static; } }
.vmk-prose p { font-size: clamp(1.1rem, 2vw, 1.4rem); line-height: 1.5; color: var(--ink-2); margin: 0 0 1.1rem; font-weight: 400; }
.vmk-prose p:first-child { color: var(--ink); font-weight: 500; }
.vmk-welcome__sign { font-family: var(--font-display); font-style: italic; font-weight: 700; font-size: 1.5rem; margin-top: 1.2rem; color: var(--accent); }

/* =====================================================================
   VENTURES
   ===================================================================== */
.vmk-ventures__list { border-top: 1px solid var(--line); }
.vmk-venture { position: relative; display: grid; grid-template-columns: 58px minmax(170px, 1fr) 2.1fr auto; align-items: center; gap: clamp(14px, 2.4vw, 32px); padding: 26px 20px; border-bottom: 1px solid var(--line); border-radius: 16px; transition: background .35s var(--ease); }
.vmk-venture::before { content: ""; position: absolute; left: 0; top: 10px; bottom: 10px; width: 3px; border-radius: 3px; background: linear-gradient(var(--accent), #8b5cff); transform: scaleY(0); transform-origin: center; transition: transform .35s var(--ease); }
.vmk-venture:hover { background: color-mix(in srgb, var(--accent) 7%, transparent); }
.vmk-venture:hover::before { transform: scaleY(1); }
.vmk-venture__logo { width: 58px; height: 58px; border-radius: 16px; display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; color: var(--accent-ink); background: var(--accent-soft); overflow: hidden; flex: 0 0 auto; transition: transform .35s var(--ease); }
.vmk-venture:hover .vmk-venture__logo { transform: scale(1.06); }
.vmk-venture__logo.has-logo { background: #fff; border: 1px solid var(--line); padding: 10px; }
.vmk-venture__logo img { width: 100%; height: 100%; object-fit: contain; display: block; }
.vmk-venture__body { min-width: 0; }
.vmk-venture__name { font-family: var(--font-display); font-size: 1.35rem; font-weight: 800; letter-spacing: -.02em; margin: 0; line-height: 1.15; }
.vmk-venture__tag { font-size: .8rem; color: var(--accent); font-weight: 700; margin: .28rem 0 0; }
.vmk-venture__desc { font-size: .94rem; color: var(--muted); line-height: 1.55; margin: 0; max-width: 46ch; }
.vmk-venture__aside { display: flex; flex-direction: column; align-items: flex-end; gap: 12px; text-align: right; }
.vmk-venture__metric { font-size: .72rem; font-weight: 700; letter-spacing: .02em; padding: .42em .9em; border-radius: var(--pill); background: var(--accent-soft); color: var(--accent-ink); white-space: nowrap; }
.vmk-venture__link { font-size: .82rem; font-weight: 700; color: var(--muted); display: inline-flex; align-items: center; gap: .42em; transition: color .25s; white-space: nowrap; }
.vmk-venture.is-linked { cursor: pointer; }
.vmk-venture.is-linked:hover .vmk-venture__link { color: var(--accent-ink); }
.vmk-venture__link svg { width: 15px; height: 15px; transition: transform .25s var(--ease); }
.vmk-venture.is-linked:hover .vmk-venture__link svg { transform: translate(2px,-2px); }
.vmk-venture__stretch::after { content: ""; position: absolute; inset: 0; z-index: 2; }
@media (max-width: 880px) {
  .vmk-venture { grid-template-columns: 52px 1fr auto; grid-template-areas: "logo body aside" "desc desc desc"; row-gap: 14px; padding: 24px 16px; }
  .vmk-venture__logo { grid-area: logo; width: 52px; height: 52px; }
  .vmk-venture__body { grid-area: body; }
  .vmk-venture__desc { grid-area: desc; max-width: none; }
  .vmk-venture__aside { grid-area: aside; }
}
@media (max-width: 520px) {
  .vmk-venture { grid-template-columns: 46px 1fr; grid-template-areas: "logo body" "desc desc" "aside aside"; }
  .vmk-venture__aside { flex-direction: row; align-items: center; justify-content: flex-start; }
}

/* =====================================================================
   PLATFORMS
   ===================================================================== */
.vmk-platforms__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 820px) { .vmk-platforms__grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; } }
.vmk-platform { padding: 30px 28px; border-radius: var(--r); background: var(--card); border: 1px solid var(--line); box-shadow: var(--shadow); position: relative; display: flex; flex-direction: column; transition: transform .3s var(--ease), box-shadow .3s; }
.vmk-platform:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.vmk-platform__head { display: flex; align-items: center; gap: 12px; margin-bottom: 22px; }
.vmk-platform__icon { width: 46px; height: 46px; border-radius: 14px; display: grid; place-items: center; color: #fff; background: var(--accent); }
.vmk-platform__icon svg { width: 24px; height: 24px; }
.vmk-platform__icon[data-platform="youtube"] { background: var(--yt); }
.vmk-platform__icon[data-platform="linkedin"] { background: var(--li); }
.vmk-platform__icon[data-platform="instagram"] { background: linear-gradient(135deg, #f9a03f, var(--ig)); }
.vmk-platform__name { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; margin: 0; }
.vmk-platform__name a:hover { color: var(--accent-ink); }
.vmk-platform__big { margin-bottom: 22px; }
.vmk-platform__foll { display: block; font-family: var(--font-display); font-size: clamp(2.2rem, 4.5vw, 2.9rem); font-weight: 800; line-height: 1; letter-spacing: -.03em; }
.vmk-platform__foll-label { font-size: .82rem; color: var(--muted); }
.vmk-platform__stats { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 0; margin-top: auto; padding-top: 18px; border-top: 1px solid var(--line); }
.vmk-platform__stats dt { font-size: .72rem; text-transform: uppercase; letter-spacing: .06em; color: var(--faint); margin-bottom: 4px; font-weight: 600; }
.vmk-platform__stats dd { margin: 0; font-family: var(--font-display); font-size: 1.4rem; font-weight: 800; }

/* =====================================================================
   BRANDS — marquee
   ===================================================================== */
.vmk-brands__count { font-weight: 600; color: var(--ink-2); }
@keyframes marquee { to { transform: translateX(-50%); } }
/* Card-less brand logo marquee — logo + name lockups, very slow */
.vmk-logos { position: relative; width: 100%; overflow: hidden; padding: 12px 0; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.vmk-logos + .vmk-logos { margin-top: 6px; }
.vmk-logos__track { display: flex; align-items: center; gap: 58px; width: max-content; animation: marquee 165s linear infinite; }
.vmk-logos--rev .vmk-logos__track { animation-direction: reverse; animation-duration: 195s; }
.vmk-logos:hover .vmk-logos__track { animation-play-state: paused; }
.vmk-brand { display: inline-flex; align-items: center; gap: 13px; flex: 0 0 auto; opacity: .86; transition: opacity .35s var(--ease), transform .35s var(--ease); }
.vmk-brand:hover { opacity: 1; transform: translateY(-3px); }
.vmk-brand__logo { width: 40px; height: 40px; border-radius: 11px; object-fit: contain; flex: 0 0 auto; background: #fff; padding: 5px; }
.vmk-brand__name { font-family: var(--font-display); font-weight: 700; font-size: 1.18rem; color: var(--ink-2); white-space: nowrap; letter-spacing: -.01em; }

/* =====================================================================
   TESTIMONIALS
   ===================================================================== */
/* Chat-style testimonial cards with a real-time typing animation */
.vmk-testi__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 900px) { .vmk-testi__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .vmk-testi__grid { grid-template-columns: 1fr; } }
.vmk-testi { display: flex; flex-direction: column; padding: 22px 22px 18px; border-radius: 22px; background: var(--card); border: 1px solid var(--line); box-shadow: var(--shadow); transition: transform .35s var(--ease), box-shadow .35s; }
.vmk-testi:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.vmk-testi__head { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.vmk-testi__avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; flex: 0 0 auto; }
.vmk-testi__avatar--initial { display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; font-size: 1.05rem; color: #fff; background: linear-gradient(135deg, var(--accent), #7d6bff); }
.vmk-testi__who { display: flex; flex-direction: column; min-width: 0; flex: 1; }
.vmk-testi__who strong { font-size: .96rem; color: var(--ink); }
.vmk-testi__src { font-size: .76rem; color: var(--muted); }
.vmk-testi__online { width: 9px; height: 9px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 3px var(--green-soft); flex: 0 0 auto; }
.vmk-testi__msg { position: relative; margin: 0; font-size: 1.02rem; line-height: 1.55; color: var(--ink); }
.vmk-testi__full { color: transparent; }
.vmk-testi__typed { position: absolute; inset: 0; color: var(--ink); }
.vmk-testi__typed::after { content: ""; display: inline-block; width: 2px; height: 1.05em; background: var(--accent); margin-left: 2px; vertical-align: -.18em; animation: caretBlink 1s steps(1) infinite; }
.vmk-testi.is-done .vmk-testi__typed::after { display: none; }
@keyframes caretBlink { 50% { opacity: 0; } }
.no-js .vmk-testi__full { color: var(--ink); }
.no-js .vmk-testi__typed { display: none; }
.vmk-testi__bar { display: flex; align-items: center; gap: 10px; margin-top: 18px; padding: 7px 7px 7px 16px; border-radius: 14px; background: var(--bg); border: 1px solid var(--line); }
.vmk-testi__reply { flex: 1; font-size: .85rem; color: var(--faint); min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.vmk-testi__send { width: 34px; height: 34px; border-radius: 50%; background: var(--accent); color: #fff; display: grid; place-items: center; flex: 0 0 auto; box-shadow: var(--shadow-accent); }
.vmk-testi__send svg { width: 17px; height: 17px; transform: rotate(-90deg); }

/* =====================================================================
   AUDIENCE — charts
   ===================================================================== */
.vmk-audience__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
@media (max-width: 760px) { .vmk-audience__grid { grid-template-columns: 1fr; } }
.vmk-card { padding: 28px 26px; border-radius: var(--r); background: var(--card); border: 1px solid var(--line); box-shadow: var(--shadow); display: flex; flex-direction: column; }
.vmk-card__title { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; margin: 0 0 20px; }
.vmk-bars { display: flex; flex-direction: column; gap: 16px; flex: 1; justify-content: center; }
.vmk-bar { display: grid; grid-template-columns: 130px 1fr 52px; align-items: center; gap: 14px; }
.vmk-bar__label { font-size: .9rem; color: var(--muted); font-weight: 500; }
.vmk-bar__track { height: 10px; border-radius: 10px; background: var(--bg-tint); overflow: hidden; }
.vmk-bar__fill { display: block; height: 100%; width: 0; border-radius: 10px; background: linear-gradient(90deg, var(--accent), var(--accent-2)); transition: width 1.1s var(--ease-out); }
.vmk-bar__val { font-family: var(--font-display); font-size: .92rem; font-weight: 800; text-align: right; font-variant-numeric: tabular-nums; }
@media (max-width: 480px) { .vmk-bar { grid-template-columns: 92px 1fr 44px; gap: 10px; } .vmk-bar__label { font-size: .82rem; } }

.vmk-card--gender { display: flex; flex-direction: column; align-items: center; }
.vmk-donut { position: relative; width: 186px; height: 186px; margin: 4px 0 18px; }
.vmk-donut__ring { width: 100%; height: 100%; border-radius: 50%; background: conic-gradient(var(--accent) 0deg, var(--bg-tint) 0deg); transition: background 1.2s var(--ease-out); }
.vmk-donut__ring::after { content: ""; position: absolute; inset: 20px; border-radius: 50%; background: var(--card); }
.vmk-donut__center { position: absolute; inset: 0; display: grid; place-content: center; text-align: center; }
.vmk-donut__center strong { font-family: var(--font-display); font-size: 2rem; font-weight: 800; display: block; line-height: 1; }
.vmk-donut__center span { font-size: .8rem; color: var(--muted); }
.vmk-donut__legend { list-style: none; margin: 0; padding: 0; display: flex; gap: 20px; flex-wrap: wrap; justify-content: center; }
.vmk-donut__legend li { font-size: .86rem; color: var(--muted); display: flex; align-items: center; gap: 7px; font-weight: 500; }
.vmk-dot { width: 11px; height: 11px; border-radius: 4px; }
.vmk-dot--a { background: var(--accent); }
.vmk-dot--b { background: var(--line-2); }

/* =====================================================================
   FAQ
   ===================================================================== */
.vmk-faqs__wrap { max-width: 800px; margin: 0 auto; }
.vmk-faq-list { display: flex; flex-direction: column; gap: 12px; }
.vmk-faq { border: 1px solid var(--line); border-radius: var(--r-md); background: var(--card); box-shadow: var(--shadow); overflow: hidden; transition: box-shadow .3s; }
.vmk-faq[open] { box-shadow: var(--shadow-lg); }
.vmk-faq__q { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 20px 24px; font-family: var(--font-display); font-size: clamp(1.02rem, 2vw, 1.18rem); font-weight: 700; color: var(--ink); }
.vmk-faq__q::-webkit-details-marker { display: none; }
.vmk-faq__icon { position: relative; width: 20px; height: 20px; flex: 0 0 auto; border-radius: 50%; background: var(--accent-soft); }
.vmk-faq__icon::before, .vmk-faq__icon::after { content: ""; position: absolute; background: var(--accent); border-radius: 2px; transition: transform .3s var(--ease), opacity .3s; }
.vmk-faq__icon::before { top: 50%; left: 5px; right: 5px; height: 2px; transform: translateY(-50%); }
.vmk-faq__icon::after { left: 50%; top: 5px; bottom: 5px; width: 2px; transform: translateX(-50%); }
.vmk-faq[open] .vmk-faq__icon::after { transform: translateX(-50%) scaleY(0); opacity: 0; }
.vmk-faq__answer { padding: 0 24px 22px; color: var(--muted); font-size: 1rem; line-height: 1.6; animation: faqIn .35s var(--ease); }
.vmk-faq__answer p { margin: 0 0 .7em; } .vmk-faq__answer p:last-child { margin: 0; }
@keyframes faqIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }

/* =====================================================================
   COLLABORATE + booking
   ===================================================================== */
.vmk-collab__bg { display: none; }
/* Card-less collaborate offers — clean columns with divider rules, no pills */
.vmk-collab__offers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-bottom: 30px; }
@media (max-width: 760px) { .vmk-collab__offers { grid-template-columns: 1fr; } }
.vmk-collab__offer { position: relative; padding: 6px clamp(24px, 3vw, 44px); }
.vmk-collab__offer:first-child { padding-left: 0; }
.vmk-collab__offer:last-child { padding-right: 0; }
.vmk-collab__offer + .vmk-collab__offer::before { content: ""; position: absolute; left: 0; top: 8px; bottom: 8px; width: 1px; background: var(--line); }
@media (max-width: 760px) { .vmk-collab__offer { padding: 26px 0; } .vmk-collab__offer:first-child { padding-top: 0; } .vmk-collab__offer + .vmk-collab__offer::before { left: 0; right: 0; top: 0; bottom: auto; width: auto; height: 1px; } }
.vmk-collab__ic { display: inline-grid; place-items: center; width: 54px; height: 54px; border-radius: 16px; color: var(--accent); background: var(--accent-soft); margin-bottom: 20px; }
.vmk-collab__ic svg { width: 27px; height: 27px; }
.vmk-collab__offer h3 { font-family: var(--font-display); font-size: 1.35rem; font-weight: 800; margin: 0 0 12px; letter-spacing: -.02em; }
.vmk-collab__offer p { color: var(--muted); font-size: .98rem; line-height: 1.6; margin: 0; }
.vmk-collab__list { color: var(--ink-2); font-weight: 500; }

.vmk-cta-panel { position: relative; margin-top: 30px; padding: clamp(28px, 4vw, 46px); border-radius: var(--r); background: var(--panel-bg); border: 1px solid var(--line-2); box-shadow: var(--shadow); overflow: hidden; }
@media (min-width: 861px) { .vmk-cta-panel { display: grid; grid-template-columns: 1fr 1.05fr; gap: 44px; align-items: stretch; } }
.vmk-cta-panel__text { position: relative; display: flex; flex-direction: column; }
.vmk-cta-panel__lede { color: var(--ink-2); margin: .3rem 0 1.1rem; max-width: 34ch; }
.vmk-cta-panel__contact { display: flex; flex-direction: column; gap: 8px; margin-top: 8px; }
.vmk-cta-panel__contact a { font-size: 1.02rem; font-weight: 600; display: inline-flex; align-items: center; gap: 10px; color: var(--ink); transition: color .25s; }
.vmk-cta-panel__contact a span { color: var(--accent); }
.vmk-cta-panel__contact a:hover { color: var(--accent-ink); }
.vmk-cta-panel__hint { font-size: .9rem; color: var(--muted); }
.vmk-trust-row { list-style: none; display: flex; flex-wrap: wrap; gap: 16px; padding: 22px 0 0; margin: auto 0 0; border-top: 1px solid rgba(23,22,28,.08); }
.vmk-trust-row li { font-size: .84rem; color: var(--ink-2); font-weight: 600; }

.vmk-lead-form { background: var(--card); border: 1px solid var(--line-2); border-radius: var(--r-md); padding: clamp(20px, 3vw, 28px); box-shadow: var(--shadow); display: flex; flex-direction: column; gap: 14px; }
.vmk-lead-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 460px) { .vmk-lead-form__row { grid-template-columns: 1fr; } }
.vmk-field { display: flex; flex-direction: column; gap: 7px; }
.vmk-field > span { font-size: .78rem; font-weight: 700; letter-spacing: .01em; color: var(--ink-2); }
.vmk-field input, .vmk-field textarea, .vmk-select select { width: 100%; font: inherit; font-size: .96rem; color: var(--ink); background: var(--bg); border: 1px solid var(--line-2); border-radius: 12px; padding: 12px 14px; transition: border-color .2s, box-shadow .2s, background .2s; outline: none; }
.vmk-field textarea { resize: vertical; min-height: 96px; }
.vmk-field input::placeholder, .vmk-field textarea::placeholder { color: var(--faint); }
.vmk-field input:focus, .vmk-field textarea:focus, .vmk-select select:focus { border-color: var(--accent); background: #fff; box-shadow: 0 0 0 3px var(--accent-soft); }
.vmk-select { position: relative; }
.vmk-select::after { content: "▾"; position: absolute; right: 16px; top: 50%; transform: translateY(-50%); color: var(--muted); pointer-events: none; }
.vmk-select select { appearance: none; -webkit-appearance: none; cursor: pointer; padding-right: 38px; }
.vmk-lead-form button { margin-top: 4px; }
.vmk-lead-form.is-sending button { opacity: .7; pointer-events: none; }
.vmk-lead-form__status { margin: 4px 0 0; font-size: .9rem; min-height: 1.2em; text-align: center; font-weight: 600; }
.vmk-lead-form__status.is-ok { color: var(--green); }
.vmk-lead-form__status.is-err { color: var(--yt); }
.vmk-lead-form.is-done { border-color: var(--green); }
/* mobile number: country code + national number */
.vmk-phone { display: grid; grid-template-columns: 140px 1fr; gap: 8px; }
@media (max-width: 360px) { .vmk-phone { grid-template-columns: 116px 1fr; } }
.vmk-select--cc select { font-size: .88rem; padding: 12px 28px 12px 12px; }
.vmk-select--cc::after { right: 11px; }
/* booking banner (shown when a service is chosen from a card) */
.vmk-lead-form__booking { display: flex; align-items: center; gap: 9px; margin: 0; padding: 11px 14px; border-radius: 12px; background: var(--accent-soft); color: var(--accent-ink); font-size: .9rem; font-weight: 600; }
.vmk-lead-form__booking[hidden] { display: none; }
.vmk-lead-form__booking svg { width: 17px; height: 17px; flex: 0 0 auto; }
.vmk-lead-form__booking strong { font-weight: 800; }
.vmk-lead-form__booking-x { margin-left: auto; background: none; border: 0; color: var(--accent-ink); font-size: 1.25rem; line-height: 1; cursor: pointer; padding: 0 4px; opacity: .65; transition: opacity .2s; }
.vmk-lead-form__booking-x:hover { opacity: 1; }

/* =====================================================================
   FOOTER + sticky CTA
   ===================================================================== */
.vmk-footer { position: relative; margin-top: clamp(40px, 8vh, 90px); padding: clamp(48px, 7vw, 84px) 0 0; border-top: 1px solid var(--line); overflow: hidden; }
.vmk-footer::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 340px; z-index: -1; background: radial-gradient(60% 100% at 50% 0%, rgba(61,90,254,.10), transparent 70%); }
.vmk-footer__cta { display: grid; grid-template-columns: 1fr auto; gap: clamp(24px, 5vw, 60px); align-items: center; padding-bottom: clamp(40px, 6vw, 64px); }
@media (max-width: 720px) { .vmk-footer__cta { grid-template-columns: 1fr; align-items: start; } }
.vmk-footer__headline { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.9rem, 5vw, 3.4rem); line-height: 1.05; letter-spacing: -.03em; margin: 0; max-width: 18ch; }
.vmk-footer__contact { display: flex; flex-wrap: wrap; gap: 12px 26px; margin: 22px 0 0; }
.vmk-footer__contact a { display: inline-flex; align-items: center; gap: 9px; color: var(--ink-2); font-weight: 600; transition: color .25s; }
.vmk-footer__contact a svg { width: 18px; height: 18px; color: var(--accent); }
.vmk-footer__contact a:hover { color: var(--accent-ink); }
.vmk-footer__btn { justify-self: start; }
.vmk-footer__bar { display: flex; align-items: center; justify-content: space-between; gap: 20px 30px; flex-wrap: wrap; padding: 26px 0 clamp(90px, 10vh, 40px); border-top: 1px solid var(--line); }
.vmk-footer__name { font-family: var(--font-display); font-size: 1.35rem; font-weight: 800; letter-spacing: -.02em; }
.vmk-footer__social { display: flex; flex-wrap: wrap; gap: 22px; }
.vmk-footer__social a { color: var(--muted); font-weight: 600; font-size: .92rem; transition: color .25s; }
.vmk-footer__social a:hover { color: var(--accent-ink); }
.vmk-footer__hint { color: var(--faint); font-size: .88rem; }

.vmk-sticky-cta { position: fixed; left: 14px; right: 14px; bottom: 14px; z-index: 110; display: none; transform: translateY(140%); transition: transform .45s var(--ease); }
.vmk-sticky-cta.is-show { transform: none; }
.vmk-sticky-cta .vmk-btn { box-shadow: 0 14px 40px -8px rgba(108,92,246,.6); }
@media (max-width: 720px) { .vmk-sticky-cta { display: block; } .vmk-footer { padding-bottom: 110px; } }

/* =====================================================================
   ICONS + polish pass
   ===================================================================== */
.vmk-icon { display: inline-block; vertical-align: middle; flex: 0 0 auto; }

/* Amber "gold" verified badge — the single warm spark on the cobalt avatar */
.vmk-profile__badge { background: var(--spark); }
.vmk-profile__badge svg { width: 16px; height: 16px; color: #4a2c00; }

/* Collaborate card icon tiles */
.vmk-collab__emoji { color: var(--accent); }
.vmk-collab__emoji svg { width: 26px; height: 26px; }

/* Trust row — icon + label */
.vmk-trust-row li { display: inline-flex; align-items: center; gap: 7px; }
.vmk-trust-row li svg { width: 16px; height: 16px; color: var(--accent); }

/* Contact links (mail / phone) */
.vmk-cta-panel__contact a .vmk-icon { width: 18px; height: 18px; color: var(--accent); }

/* Section banding for vertical rhythm (cards still separate via shadow) */
.vmk-welcome, .vmk-brands, .vmk-faqs, .vmk-podcasts { background: var(--bg-2); }

/* =====================================================================
   PODCASTS — in-page media player
   ===================================================================== */
.vmk-player { display: grid; grid-template-columns: 1.72fr 1fr; gap: 20px; align-items: stretch; }
@media (max-width: 900px) { .vmk-player { grid-template-columns: 1fr; } }

/* Featured stage — crisp 16:9, drives the row height, soft cobalt glow */
.vmk-player__stage { position: relative; align-self: start; border-radius: var(--r); overflow: hidden; background: #0b0b10; aspect-ratio: 16 / 9; box-shadow: var(--shadow-lg), 0 44px 90px -34px rgba(61,90,254,.5); }
.vmk-player__facade { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; padding: 0; margin: 0; cursor: pointer; background: #0b0b10; display: block; }
.vmk-player__thumb { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease), filter .4s; }
.vmk-player__facade:hover .vmk-player__thumb { transform: scale(1.05); filter: brightness(.8); }
.vmk-player__scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.3), transparent 30%, transparent 46%, rgba(0,0,0,.82)); }
.vmk-player__play { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 84px; height: 84px; border-radius: 50%; background: rgba(255,255,255,.16); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); border: 1.5px solid rgba(255,255,255,.55); display: grid; place-items: center; color: #fff; transition: transform .3s var(--ease), background .3s, border-color .3s; }
.vmk-player__facade:hover .vmk-player__play { transform: translate(-50%, -50%) scale(1.09); background: var(--accent); border-color: var(--accent); box-shadow: 0 12px 40px -6px rgba(61,90,254,.7); }
.vmk-player__play svg { width: 32px; height: 32px; margin-left: 4px; }
.vmk-player__badge { position: absolute; top: 18px; left: 18px; display: inline-flex; align-items: center; gap: 7px; font-size: .72rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: #fff; background: rgba(0,0,0,.5); backdrop-filter: blur(6px); padding: .45em .9em; border-radius: var(--pill); }
.vmk-player__badge svg { width: 15px; height: 15px; color: #ff3d46; }
.vmk-player__meta { position: absolute; left: 26px; right: 26px; bottom: 24px; display: flex; flex-direction: column; gap: 11px; align-items: flex-start; }
.vmk-player__count { font-size: .7rem; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; color: #fff; background: rgba(255,255,255,.18); backdrop-filter: blur(6px); padding: .32em .8em; border-radius: var(--pill); }
.vmk-player__title { color: #fff; font-family: var(--font-display); font-weight: 800; font-size: clamp(1.15rem, 2vw, 1.6rem); line-height: 1.16; letter-spacing: -.01em; text-shadow: 0 2px 24px rgba(0,0,0,.6); }
.vmk-player__stage.is-playing .vmk-player__facade { display: none; }
.vmk-player__stage iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* Playlist column — height matches the stage; scrolls internally so the bottoms line up */
.vmk-player__aside { position: relative; min-height: 0; }
.vmk-player__list { position: absolute; inset: 0; display: flex; flex-direction: column; gap: 10px; overflow-y: auto; padding-right: 6px; }
.vmk-player__list::-webkit-scrollbar { width: 8px; }
.vmk-player__list::-webkit-scrollbar-thumb { background: var(--line-2); border-radius: 10px; border: 2px solid var(--bg-2); }
@media (max-width: 900px) {
	.vmk-player__aside { position: static; }
	.vmk-player__list { position: static; flex-direction: row; overflow-x: auto; padding: 2px 0 8px; }
	.vmk-plitem { min-width: 268px; }
}
.vmk-plitem { flex: 0 0 auto; position: relative; display: flex; gap: 13px; align-items: center; text-align: left; border: 1px solid var(--line); background: var(--card); border-radius: 16px; padding: 10px; cursor: pointer; overflow: hidden; transition: border-color .25s, box-shadow .25s, transform .25s; }
.vmk-plitem:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.vmk-plitem.is-active { border-color: var(--accent); box-shadow: 0 0 0 2px var(--accent-soft), var(--shadow); }
.vmk-plitem.is-active::before { content: ""; position: absolute; left: 0; top: 10px; bottom: 10px; width: 3px; border-radius: 0 3px 3px 0; background: var(--accent); }
.vmk-plitem__thumb { position: relative; width: 116px; aspect-ratio: 16 / 9; border-radius: 11px; overflow: hidden; flex: 0 0 auto; background: #0b0b10; }
.vmk-plitem__thumb img { width: 100%; height: 100%; object-fit: cover; }
.vmk-plitem__play { position: absolute; inset: 0; display: grid; place-items: center; color: #fff; background: rgba(0,0,0,.3); opacity: 0; transition: opacity .25s; }
.vmk-plitem__play svg { width: 22px; height: 22px; margin-left: 2px; }
.vmk-plitem:hover .vmk-plitem__play { opacity: 1; }
.vmk-plitem.is-active:hover .vmk-plitem__play { opacity: 0; }
/* now-playing equalizer on the active episode */
.vmk-plitem__eq { position: absolute; inset: 0; display: none; align-items: flex-end; justify-content: center; gap: 3px; padding: 15px 0; background: rgba(61,90,254,.42); }
.vmk-plitem.is-active .vmk-plitem__eq { display: flex; }
.vmk-plitem__eq i { width: 3px; height: 100%; background: #fff; border-radius: 3px; transform-origin: bottom; animation: vmk-eq 1s ease-in-out infinite; }
.vmk-plitem__eq i:nth-child(1) { animation-delay: 0s; }
.vmk-plitem__eq i:nth-child(2) { animation-delay: .18s; }
.vmk-plitem__eq i:nth-child(3) { animation-delay: .36s; }
.vmk-plitem__eq i:nth-child(4) { animation-delay: .54s; }
@keyframes vmk-eq { 0%, 100% { transform: scaleY(.28); } 50% { transform: scaleY(1); } }
.vmk-plitem__meta { display: flex; flex-direction: column; gap: 5px; min-width: 0; }
.vmk-plitem__title { font-family: var(--font-display); font-weight: 700; font-size: .93rem; line-height: 1.28; color: var(--ink); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.vmk-plitem__sub { display: flex; align-items: center; gap: 7px; font-size: .74rem; color: var(--muted); font-weight: 500; }
.vmk-plitem__num { display: inline-grid; place-items: center; min-width: 22px; height: 20px; padding: 0 6px; border-radius: 7px; background: var(--accent-soft); color: var(--accent-ink); font-family: var(--font-display); font-weight: 800; font-size: .68rem; }
.vmk-plitem.is-active .vmk-plitem__num { background: var(--accent); color: #fff; }
.vmk-podcasts__cta { text-align: center; margin-top: 30px; }
.vmk-btn--yt { background: #ff0000; box-shadow: 0 14px 30px -10px rgba(255,0,0,.5); }
.vmk-btn--yt:hover { background: #e00000; filter: none; box-shadow: 0 18px 36px -10px rgba(255,0,0,.6); }
.vmk-btn--yt svg { width: 20px; height: 20px; }

/* =====================================================================
   AWARDS & EVENTS — mosaic gallery + lightbox
   ===================================================================== */
.vmk-gallery { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 218px; gap: 16px; grid-auto-flow: dense; }
@media (max-width: 900px) { .vmk-gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 188px; } }
@media (max-width: 520px) { .vmk-gallery { grid-template-columns: 1fr; grid-auto-rows: 220px; } }
/* first tile is the feature (2×2); with 3 columns, 6 items fill the grid exactly */
.vmk-gallery > *:nth-child(1) { grid-column: span 2; grid-row: span 2; }
@media (max-width: 900px) { .vmk-gallery > *:nth-child(1) { grid-column: span 2; grid-row: span 1; } }
@media (max-width: 520px) { .vmk-gallery > * { grid-column: span 1 !important; grid-row: span 1 !important; } }

.vmk-gtile { position: relative; border: 0; padding: 0; margin: 0; border-radius: var(--r-md); overflow: hidden; cursor: pointer; background: var(--bg-tint); box-shadow: var(--shadow); display: block; width: 100%; height: 100%; }
.vmk-gtile img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.vmk-gtile.has-img:hover img { transform: scale(1.06); }
.vmk-gtile__scrim { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 38%, rgba(12,11,18,.85)); }
.vmk-gtile__cap { position: absolute; left: 18px; right: 18px; bottom: 16px; text-align: left; color: #fff; z-index: 1; }
.vmk-gtile__year { display: inline-block; font-size: .68rem; font-weight: 800; letter-spacing: .05em; color: #fff; background: rgba(255,255,255,.22); backdrop-filter: blur(4px); padding: .28em .7em; border-radius: var(--pill); margin-bottom: 9px; }
.vmk-gtile__title { display: block; font-family: var(--font-display); font-weight: 800; font-size: clamp(1rem, 1.5vw, 1.3rem); line-height: 1.14; letter-spacing: -.01em; }
.vmk-gtile__org { display: block; font-size: .82rem; color: rgba(255,255,255,.82); margin-top: 3px; }
.vmk-gtile__zoom { position: absolute; top: 14px; right: 14px; width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.16); backdrop-filter: blur(6px); border: 1px solid rgba(255,255,255,.4); display: grid; place-items: center; color: #fff; opacity: 0; transform: scale(.8); transition: opacity .3s, transform .3s; }
.vmk-gtile__zoom svg { width: 16px; height: 16px; }
.vmk-gtile:hover .vmk-gtile__zoom { opacity: 1; transform: scale(1); }
/* placeholder tiles (no photo yet) */
.vmk-gtile.is-placeholder { color: #fff; }
.vmk-gtile.is-placeholder .vmk-gtile__cap { bottom: 18px; }
.vmk-gtile.is-placeholder .vmk-gtile__year { background: rgba(255,255,255,.24); }
.vmk-gtile__icon { position: absolute; top: 18px; left: 18px; width: 42px; height: 42px; border-radius: 12px; background: rgba(255,255,255,.2); display: grid; place-items: center; color: #fff; }
.vmk-gtile__icon svg { width: 21px; height: 21px; }
.vmk-gtile__hint { position: absolute; top: 24px; right: 18px; display: inline-flex; align-items: center; gap: 6px; font-size: .72rem; font-weight: 600; color: rgba(255,255,255,.9); }
.vmk-gtile__hint svg { width: 14px; height: 14px; }
.vmk-gtile.is-placeholder:nth-child(4n+1) { background: linear-gradient(150deg, #4a64ff, #7d6bff); }
.vmk-gtile.is-placeholder:nth-child(4n+2) { background: linear-gradient(150deg, #5b50f0, #a15bff); }
.vmk-gtile.is-placeholder:nth-child(4n+3) { background: linear-gradient(150deg, #3d5afe, #22b8cf); }
.vmk-gtile.is-placeholder:nth-child(4n)   { background: linear-gradient(150deg, #6a5cff, #ff8f6b); }

.vmk-lightbox { position: fixed; inset: 0; z-index: 1000; display: flex; align-items: center; justify-content: center; padding: 5vw; background: rgba(10,9,16,.88); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); opacity: 0; visibility: hidden; transition: opacity .3s, visibility .3s; }
.vmk-lightbox.is-open { opacity: 1; visibility: visible; }
.vmk-lightbox__fig { margin: 0; max-width: 92vw; max-height: 86vh; display: flex; flex-direction: column; align-items: center; gap: 14px; transform: scale(.96); transition: transform .35s var(--ease); }
.vmk-lightbox.is-open .vmk-lightbox__fig { transform: scale(1); }
.vmk-lightbox__img { max-width: 100%; max-height: 80vh; border-radius: 14px; box-shadow: 0 30px 90px rgba(0,0,0,.65); object-fit: contain; background: #0b0b10; }
.vmk-lightbox__cap { color: #fff; font-weight: 600; font-size: .95rem; text-align: center; opacity: .95; }
.vmk-lightbox__close { position: absolute; top: 20px; right: 22px; width: 46px; height: 46px; }
.vmk-lightbox__nav { position: absolute; top: 50%; transform: translateY(-50%); width: 54px; height: 54px; }
.vmk-lightbox__close, .vmk-lightbox__nav { border-radius: 50%; border: 1px solid rgba(255,255,255,.3); background: rgba(255,255,255,.12); color: #fff; display: grid; place-items: center; cursor: pointer; transition: background .25s, transform .25s; }
.vmk-lightbox__close:hover, .vmk-lightbox__nav:hover { background: rgba(255,255,255,.26); }
.vmk-lightbox__nav:hover { transform: translateY(-50%) scale(1.06); }
.vmk-lightbox__prev { left: 3vw; } .vmk-lightbox__next { right: 3vw; }
.vmk-lightbox__close svg, .vmk-lightbox__nav svg { width: 22px; height: 22px; }
@media (max-width: 600px) { .vmk-lightbox__prev { left: 8px; } .vmk-lightbox__next { right: 8px; } .vmk-lightbox__nav { width: 44px; height: 44px; } }

/* Eyebrow gets a subtle amber tick to feel bespoke, not templated */
.vmk-section__head .vmk-eyebrow { position: relative; }

/* Focus-visible for keyboard users */
a:focus-visible, button:focus-visible, summary:focus-visible,
input:focus-visible, select:focus-visible, textarea:focus-visible {
	outline: 2px solid var(--accent); outline-offset: 2px; border-radius: 4px;
}

/* Instagram brand tile keeps its signature gradient */
.vmk-social-chip[data-platform="instagram"] .vmk-social-chip__icon,
.vmk-platform__icon[data-platform="instagram"] { background: linear-gradient(135deg, #feda75, #fa7e1e 35%, #d62976 65%, #962fbf); }

/* =====================================================================
   CONTENT PILLARS
   ===================================================================== */
.vmk-pillars__list { display: grid; grid-template-columns: repeat(3, 1fr); column-gap: clamp(28px, 4.5vw, 68px); border-bottom: 1px solid var(--line); }
@media (max-width: 820px) { .vmk-pillars__list { grid-template-columns: repeat(2, 1fr); column-gap: clamp(24px, 5vw, 44px); } }
@media (max-width: 520px) { .vmk-pillars__list { grid-template-columns: 1fr; } }
.vmk-pillar { position: relative; padding: 30px 0 32px; border-top: 1px solid var(--line); transition: padding-left .4s var(--ease); }
.vmk-pillar::before { content: ""; position: absolute; left: 0; top: -1px; width: 0; height: 2px; background: linear-gradient(90deg, var(--accent), #8b5cff); transition: width .45s var(--ease); }
.vmk-pillar:hover::before { width: 100%; }
.vmk-pillar:hover { padding-left: 10px; }
.vmk-pillar__ic { display: inline-grid; place-items: center; width: 32px; height: 32px; color: var(--accent); margin-bottom: 15px; transition: transform .4s var(--ease); }
.vmk-pillar:hover .vmk-pillar__ic { transform: translateY(-3px); }
.vmk-pillar__ic svg { width: 26px; height: 26px; }
.vmk-pillar__title { font-family: var(--font-display); font-size: 1.22rem; font-weight: 800; margin: 0 0 .5rem; letter-spacing: -.02em; transition: color .3s; }
.vmk-pillar:hover .vmk-pillar__title { color: var(--accent-ink); }
.vmk-pillar__desc { color: var(--muted); font-size: .93rem; margin: 0; line-height: 1.6; max-width: 34ch; }

/* =====================================================================
   FEATURED CAMPAIGNS
   ===================================================================== */
.vmk-campaigns__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
@media (max-width: 760px) { .vmk-campaigns__grid { grid-template-columns: 1fr; } }
.vmk-campaign { display: flex; flex-direction: column; border-radius: var(--r); background: var(--card); border: 1px solid var(--line); box-shadow: var(--shadow); overflow: hidden; transition: transform .3s var(--ease), box-shadow .3s; }
.vmk-campaign:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.vmk-campaign__media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: var(--bg-tint); }
.vmk-campaign__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.vmk-campaign:hover .vmk-campaign__media img { transform: scale(1.05); }
.vmk-campaign__media.is-mono { display: grid; place-items: center; }
.vmk-campaign__media.is-mono[style*="--i:1"], .vmk-campaign__media.is-mono { background: linear-gradient(150deg, var(--accent), #7d6bff); }
.vmk-campaigns__grid .vmk-campaign:nth-child(2) .vmk-campaign__media.is-mono { background: linear-gradient(150deg, #5b50f0, #a15bff); }
.vmk-campaigns__grid .vmk-campaign:nth-child(3) .vmk-campaign__media.is-mono { background: linear-gradient(150deg, #3d5afe, #22b8cf); }
.vmk-campaigns__grid .vmk-campaign:nth-child(4) .vmk-campaign__media.is-mono { background: linear-gradient(150deg, #6a5cff, #ff8f6b); }
.vmk-campaign__mono { font-family: var(--font-display); font-weight: 800; font-size: 4rem; color: rgba(255,255,255,.95); }
.vmk-campaign__hint { position: absolute; bottom: 14px; right: 14px; display: inline-flex; align-items: center; gap: 6px; font-size: .72rem; font-weight: 600; color: rgba(255,255,255,.9); background: rgba(0,0,0,.22); padding: .35em .7em; border-radius: var(--pill); }
.vmk-campaign__hint svg { width: 14px; height: 14px; }
.vmk-campaign__body { padding: 24px 26px 26px; display: flex; flex-direction: column; flex: 1; }
.vmk-campaign__top { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; margin-bottom: 12px; }
.vmk-campaign__brand { font-weight: 800; font-family: var(--font-display); color: var(--ink); }
.vmk-campaign__cat { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--accent-ink); background: var(--accent-soft); padding: .32em .8em; border-radius: var(--pill); }
.vmk-campaign__title { font-family: var(--font-display); font-size: 1.35rem; font-weight: 800; margin: 0 0 .5rem; letter-spacing: -.02em; line-height: 1.15; }
.vmk-campaign__summary { color: var(--muted); font-size: .95rem; margin: 0 0 20px; line-height: 1.55; }
.vmk-campaign__metrics { list-style: none; display: flex; flex-wrap: wrap; gap: 14px 28px; padding: 20px 0 0; margin: auto 0 0; border-top: 1px solid var(--line); }
.vmk-campaign__mv { display: block; font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; color: var(--accent-ink); letter-spacing: -.02em; }
.vmk-campaign__ml { font-size: .75rem; color: var(--muted); }
.vmk-campaign__link { margin-top: 16px; font-weight: 700; font-size: .88rem; color: var(--accent-ink); display: inline-flex; align-items: center; gap: .4em; align-self: flex-start; }
.vmk-campaign__link svg { width: 15px; height: 15px; transition: transform .25s var(--ease); }
.vmk-campaign__link:hover svg { transform: translate(2px,-2px); }

/* =====================================================================
   AS FEATURED IN
   ===================================================================== */
.vmk-press { padding: clamp(44px, 7vh, 76px) 0; background: var(--bg-2); }
.vmk-press__head { text-align: center; margin-bottom: 32px; }
.vmk-press__head .vmk-eyebrow { display: inline-block; }
.vmk-press__title { color: var(--ink-2); max-width: 22ch; margin: 0 auto; font-weight: 700; }
.vmk-press__marquee { overflow: hidden; -webkit-mask: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); mask: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.vmk-press__track { display: flex; align-items: center; width: max-content; animation: marquee 42s linear infinite; }
.vmk-press__marquee:hover .vmk-press__track { animation-play-state: paused; }
.vmk-press__item { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.2rem, 2.6vw, 1.95rem); color: var(--ink-2); white-space: nowrap; letter-spacing: -.02em; padding: 0 28px; opacity: .72; }
.vmk-press__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); flex: 0 0 auto; }

/* =====================================================================
   SERVICES & RATE CARD
   ===================================================================== */
.vmk-services__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; align-items: stretch; }
@media (max-width: 1000px) { .vmk-services__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .vmk-services__grid { grid-template-columns: 1fr; } }
.vmk-service { position: relative; display: flex; flex-direction: column; padding: 32px 26px; border-radius: var(--r); background: var(--card); border: 1px solid var(--line); box-shadow: var(--shadow); transition: transform .3s var(--ease), box-shadow .3s; }
.vmk-service:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.vmk-service.is-featured { border-color: var(--accent); box-shadow: 0 0 0 2px var(--accent-soft), var(--shadow-lg); background: var(--featured-bg); }
@media (min-width: 1001px) { .vmk-service.is-featured { transform: translateY(-8px); } .vmk-service.is-featured:hover { transform: translateY(-14px); } }
.vmk-service__badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); display: inline-flex; align-items: center; gap: 6px; font-size: .68rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; color: #fff; background: var(--accent); padding: .5em 1em; border-radius: var(--pill); box-shadow: var(--shadow-accent); white-space: nowrap; }
.vmk-service__badge svg { width: 12px; height: 12px; }
.vmk-service__name { font-family: var(--font-display); font-size: 1.22rem; font-weight: 800; margin: 0 0 .3rem; letter-spacing: -.01em; }
.vmk-service__desc { color: var(--muted); font-size: .88rem; margin: 0 0 16px; line-height: 1.5; }
.vmk-service__price { font-family: var(--font-display); font-size: 1.65rem; font-weight: 800; letter-spacing: -.02em; margin: 0 0 4px; color: var(--ink); }
.vmk-service__features { list-style: none; padding: 18px 0 22px; margin: 16px 0 0; border-top: 1px solid var(--line); display: flex; flex-direction: column; gap: 11px; flex: 1; }
.vmk-service__features li { display: flex; gap: 10px; align-items: flex-start; font-size: .89rem; color: var(--ink-2); line-height: 1.4; }
.vmk-service__features li svg { width: 17px; height: 17px; color: var(--green); flex: 0 0 auto; margin-top: 1px; }
.vmk-service__cta { margin-top: auto; }

/* =====================================================================
   PREMIUM FEEL — loader, custom cursor, film grain, download button
   ===================================================================== */
/* Branded intro loader */
.vmk-loader { position: fixed; inset: 0; z-index: 9999; display: grid; place-items: center; background: var(--bg); transition: opacity .6s var(--ease), visibility .6s; }
.vmk-loader.is-done { opacity: 0; visibility: hidden; }
.vmk-loader__inner { display: flex; flex-direction: column; align-items: center; gap: 18px; }
.vmk-loader__mark { width: 74px; height: 74px; border-radius: 20px; display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; font-size: 2rem; color: #fff; background: linear-gradient(150deg, var(--accent), #7c5cff); box-shadow: var(--shadow-accent); animation: loaderPop .55s var(--ease) both; }
.vmk-loader__name { font-family: var(--font-display); font-weight: 800; font-size: 1.1rem; letter-spacing: -.01em; color: var(--ink); opacity: 0; animation: heroIn .6s var(--ease-out) .18s forwards; }
.vmk-loader__track { width: 120px; height: 3px; border-radius: 3px; background: var(--line-2); overflow: hidden; }
.vmk-loader__bar { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--accent), #7c5cff); animation: loaderBar 1s var(--ease-out) .1s forwards; }
@keyframes loaderPop { from { transform: scale(.72); opacity: 0; } to { transform: none; opacity: 1; } }
@keyframes loaderBar { to { width: 100%; } }

/* Custom cursor (desktop fine-pointer only) */
.vmk-cursor { position: fixed; top: 0; left: 0; z-index: 9990; pointer-events: none; opacity: 0; transition: opacity .3s; mix-blend-mode: normal; }
.vmk-cursor.is-active { opacity: 1; }
.vmk-cursor__dot { position: fixed; top: 0; left: 0; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); transform: translate(-50%, -50%); }
.vmk-cursor__ring { position: fixed; top: 0; left: 0; width: 34px; height: 34px; border-radius: 50%; border: 1.5px solid var(--accent); transform: translate(-50%, -50%); opacity: .55; transition: width .25s var(--ease), height .25s var(--ease), background .25s, border-color .25s, opacity .25s; }
.vmk-cursor.is-hover .vmk-cursor__ring { width: 54px; height: 54px; background: rgba(61,90,254,.12); border-color: transparent; opacity: 1; }
@media (hover: none), (pointer: coarse) { .vmk-cursor { display: none !important; } }

/* Film-grain art-direction overlay */
.vmk-grain { position: fixed; inset: 0; z-index: 95; pointer-events: none; opacity: var(--grain-op); mix-blend-mode: var(--grain-blend); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); background-size: 200px; }

/* Nav download-kit button */
.vmk-nav__actions { display: flex; align-items: center; gap: 10px; }
.vmk-nav__download { display: inline-flex; align-items: center; gap: 7px; font-family: var(--font-display); font-weight: 700; font-size: .88rem; color: var(--ink); background: transparent; border: 1px solid var(--line-2); border-radius: var(--pill); padding: .55em 1.05em; cursor: pointer; transition: border-color .25s, color .25s, background .25s; }
.vmk-nav__download:hover { border-color: var(--accent); color: var(--accent-ink); background: var(--card); }
.vmk-nav__download svg { width: 15px; height: 15px; }
@media (max-width: 640px) { .vmk-nav__download span { display: none; } .vmk-nav__download { padding: .55em; } }

/* Theme toggle */
.vmk-theme-toggle { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; color: var(--ink); background: transparent; border: 1px solid var(--line-2); cursor: pointer; transition: border-color .25s, color .25s, background .25s, transform .25s; }
.vmk-theme-toggle:hover { border-color: var(--accent); color: var(--accent-ink); transform: rotate(-15deg); }
.vmk-theme-toggle svg { width: 17px; height: 17px; }
.vmk-nav:not(.is-stuck) .vmk-theme-toggle { background: var(--glass-2); }
.vmk-theme-toggle .vmk-ic--sun { display: none; }
.vmk-theme-toggle .vmk-ic--moon { display: grid; place-items: center; }
:root[data-theme="dark"] .vmk-theme-toggle .vmk-ic--sun { display: grid; place-items: center; }
:root[data-theme="dark"] .vmk-theme-toggle .vmk-ic--moon { display: none; }
@media (prefers-color-scheme: dark) {
	:root:not([data-theme="light"]) .vmk-theme-toggle .vmk-ic--sun { display: grid; place-items: center; }
	:root:not([data-theme="light"]) .vmk-theme-toggle .vmk-ic--moon { display: none; }
}

@media (prefers-reduced-motion: reduce) {
	.vmk-loader__mark, .vmk-loader__name, .vmk-loader__bar { animation: none !important; opacity: 1 !important; width: 100%; }
	.vmk-cursor { display: none !important; }
}

/* =====================================================================
   PRINT — clean, branded PDF export ("Download Media Kit")
   ===================================================================== */
@media print {
	.vmk-loader, .vmk-cursor, .vmk-grain, .vmk-nav, .vmk-sticky-cta, .vmk-hero__scroll,
	.vmk-hero__bg, .vmk-hero__chip, .vmk-fcard, .vmk-hero__signature,
	.vmk-lead-form, .vmk-player__list, .vmk-marquee, .vmk-logos, .vmk-press__marquee,
	.vmk-faq__icon, .vmk-btn__arrow { display: none !important; }

	html, body { background: #fff !important; }
	* { color: #111 !important; box-shadow: none !important; text-shadow: none !important; -webkit-print-color-adjust: exact; print-color-adjust: exact; }
	.vmk-reveal, .vmk-in { opacity: 1 !important; transform: none !important; animation: none !important; }
	@page { margin: 14mm; }

	.vmk-hero { background: #fff !important; padding: 0 0 16px !important; min-height: auto !important; }
	.vmk-hero__top { display: block !important; }
	.vmk-hero__stage { max-width: 200px; margin: 12px 0; }
	.vmk-hero__portrait { aspect-ratio: 1 / 1; border: 1px solid #ddd !important; }
	.vmk-hero__accent { color: var(--accent-ink) !important; -webkit-text-fill-color: var(--accent-ink); }
	.vmk-hero__statbar, .vmk-hero__trusted { border: 1px solid #ddd !important; background: #fff !important; }

	.vmk-section { padding: 14px 0 !important; page-break-inside: avoid; border-top: 1px solid #eee; }
	.vmk-testi, .vmk-venture, .vmk-platform, .vmk-service, .vmk-pillar, .vmk-campaign, .vmk-card, .vmk-collab__card, .vmk-faq, .vmk-cta-panel { border: 1px solid #ddd !important; background: #fff !important; break-inside: avoid; }
	.vmk-testi__full { color: #111 !important; }
	.vmk-testi__typed { display: none !important; }
	.vmk-bar__fill { background: #444 !important; }
	a { text-decoration: none; }
}

/* =====================================================================
   Reduced motion
   ===================================================================== */
@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
	.vmk-reveal { opacity: 1 !important; transform: none !important; }
	.vmk-blob { animation: none !important; }
}
