/* MUHtion Media front page 2026 — mm_front_2026_v1 */

@font-face {
	font-family: 'Space Grotesk';
	src: url('space-grotesk-latin.woff2') format('woff2');
	font-weight: 300 700;
	font-display: swap;
}

:root {
	--mm-bg: #0a0c10;
	--mm-bg-alt: #10131a;
	--mm-panel: #151923;
	--mm-line: #232a38;
	--mm-text: #e9ecf3;
	--mm-muted: #a3adbe;
	--mm-accent: #f5a940;
	--mm-accent-strong: #ffb84d;
	--mm-teal: #43c8ce;
	--mm-font: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* hard reset over whatever theme CSS survives */
html { scroll-behavior: smooth; }
body.mm2026 {
	margin: 0 !important;
	padding: 0 !important;
	background: var(--mm-bg) !important;
	color: var(--mm-text) !important;
	font-family: var(--mm-font) !important;
	font-size: 17px;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}
body.mm2026 h1, body.mm2026 h2, body.mm2026 h3, body.mm2026 p, body.mm2026 ul, body.mm2026 ol { margin: 0; padding: 0; }
body.mm2026 img { max-width: 100%; height: auto; display: block; }
body.mm2026 a { color: inherit; text-decoration: none; }
body.mm2026 #wpadminbar { display: none; }

.mm-wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

.mm-skip { position: absolute; left: -9999px; }
.mm-skip:focus { left: 12px; top: 12px; z-index: 999; background: var(--mm-accent); color: #14100a; padding: 8px 14px; border-radius: 6px; }

.mm-kicker {
	font-size: 13px; letter-spacing: .22em; text-transform: uppercase;
	color: var(--mm-accent); font-weight: 600; margin-bottom: 14px;
	display: flex; align-items: center; gap: 12px;
}
.mm-kicker::before { content: ''; width: 34px; height: 2px; background: var(--mm-accent); border-radius: 2px; flex: none; animation: mm-bar 3.2s ease-in-out infinite; }
@keyframes mm-bar { 0%,100% { width: 34px; opacity: 1; } 50% { width: 52px; opacity: .65; } }
@media (prefers-reduced-motion: reduce) { .mm-kicker::before { animation: none; } }
.mm-hero-inner .mm-kicker::before { background: var(--mm-accent-strong); }
.mm-accent { color: var(--mm-accent-strong); }

body.mm2026 h1 { font-size: clamp(40px, 6.5vw, 76px); line-height: 1.04; font-weight: 700; letter-spacing: -.02em; }
body.mm2026 h2 { font-size: clamp(28px, 3.6vw, 44px); line-height: 1.12; font-weight: 700; letter-spacing: -.015em; margin-bottom: 22px; }
body.mm2026 h3 { font-size: 19px; font-weight: 600; }

/* buttons */
.mm-btn {
	display: inline-flex; align-items: center; justify-content: center;
	text-align: center; padding: 0 30px; border-radius: 999px;
	font-weight: 600; font-size: 16px; line-height: 1.2;
	transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
	min-height: 48px; position: relative; overflow: hidden;
}
.mm-btn:hover { transform: translateY(-2px); }
/* shine sweep on hover */
.mm-btn::after {
	content: ''; position: absolute; top: 0; bottom: 0; left: -80%; width: 40%;
	background: linear-gradient(105deg, transparent, rgba(255,255,255,.45), transparent);
	transform: skewX(-20deg); transition: left .5s ease; pointer-events: none;
}
.mm-btn:hover::after { left: 130%; }
@media (prefers-reduced-motion: reduce) { .mm-btn::after { display: none; } }
body.mm2026 .mm-btn-accent { background: var(--mm-accent); color: #171104; box-shadow: 0 8px 28px rgba(245, 169, 64, .28); }
body.mm2026 .mm-btn-accent:hover { background: var(--mm-accent-strong); }
body.mm2026 .mm-btn-ghost { border: 1px solid rgba(233, 236, 243, .35); color: var(--mm-text); }
body.mm2026 .mm-btn-ghost:hover { border-color: var(--mm-accent); color: var(--mm-accent-strong); }
body.mm2026 .mm-btn-dark { background: #14100a; color: #ffd89a; }

/* header */
.mm-header {
	position: fixed; inset: 0 0 auto 0; z-index: 90;
	background: rgba(10, 12, 16, 0); transition: background .25s ease, box-shadow .25s ease;
}
.mm-header.is-solid { background: rgba(10, 12, 16, .92); backdrop-filter: blur(10px); box-shadow: 0 1px 0 var(--mm-line); }
.mm-header-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.mm-logo img { width: 150px; height: auto; }
.mm-nav { display: flex; align-items: center; gap: 30px; }
.mm-nav a:not(.mm-btn) { font-size: 15.5px; font-weight: 500; color: var(--mm-text); opacity: .88; padding: 6px 0; }
.mm-nav a:not(.mm-btn):hover { color: var(--mm-accent-strong); opacity: 1; }
.mm-nav-cta { padding: 0 24px; font-size: 15px; min-height: 40px; }
.mm-burger { display: none; background: none; border: 0; width: 44px; height: 44px; cursor: pointer; padding: 10px; }
.mm-burger span { display: block; height: 2px; background: var(--mm-text); margin: 5px 0; border-radius: 2px; transition: transform .2s ease, opacity .2s ease; }

/* hero */
.mm-hero { position: relative; min-height: 92vh; display: flex; align-items: center; overflow: hidden; }
.mm-hero-bg { position: absolute; inset: -4% 0; background-size: cover; background-position: center 70%; will-change: transform; animation: mm-kenburns 30s ease-in-out infinite alternate; }
@keyframes mm-kenburns {
	0%   { transform: scale(1.02) translateY(0); }
	100% { transform: scale(1.12) translateY(-1.5%); }
}
@media (prefers-reduced-motion: reduce) { .mm-hero-bg { animation: none; } }
/* hero entrance */
.mm-hero-inner > * { opacity: 0; transform: translateY(24px); animation: mm-rise .8s cubic-bezier(.2,.7,.2,1) forwards; }
.mm-hero-inner > .mm-kicker { animation-delay: .1s; }
.mm-hero-inner > h1 { animation-delay: .22s; }
.mm-hero-inner > .mm-lead { animation-delay: .38s; }
.mm-hero-inner > .mm-hero-cta { animation-delay: .52s; }
@keyframes mm-rise { to { opacity: 1; transform: none; } }
@keyframes mm-cow-in { from { opacity: 0; } to { opacity: 1; } }
@media (prefers-reduced-motion: reduce) {
	.mm-hero-inner > *, .mm-hero-cow { opacity: 1; transform: none; animation: none; }
}
.mm-hero-shade {
	position: absolute; inset: 0;
	background:
		linear-gradient(180deg, rgba(10,12,16,.62) 0%, rgba(10,12,16,.30) 45%, rgba(10,12,16,.88) 100%),
		linear-gradient(100deg, rgba(10,12,16,.82) 0%, rgba(10,12,16,.35) 55%, rgba(10,12,16,.15) 100%);
}
.mm-hero-inner { position: relative; z-index: 2; padding-top: 120px; padding-bottom: 170px; max-width: 1180px; }
.mm-hero-inner h1 { max-width: 13em; text-shadow: 0 2px 30px rgba(0,0,0,.55); }
.mm-lead { max-width: 34em; margin-top: 22px; font-size: clamp(17px, 1.6vw, 20px); color: var(--mm-text); opacity: .92; }
.mm-hero-cta { margin-top: 34px; display: flex; gap: 16px; flex-wrap: wrap; }
.mm-hero-cow {
	position: absolute; z-index: 2; right: 4vw; bottom: 96px;
	width: clamp(150px, 19vw, 290px); height: auto;
	filter: drop-shadow(0 18px 34px rgba(0,0,0,.55));
	opacity: 0;
	animation: mm-float 5.5s ease-in-out infinite, mm-cow-in .9s ease-out .6s forwards;
}
@keyframes mm-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@media (prefers-reduced-motion: reduce) { .mm-hero-cow { animation: none; } }

/* stats strip */
.mm-stats { position: absolute; left: 0; right: 0; bottom: 0; z-index: 3; background: rgba(13, 16, 22, .86); backdrop-filter: blur(8px); border-top: 1px solid var(--mm-line); }
.mm-stats-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; padding-top: 20px; padding-bottom: 20px; }
.mm-stat strong { display: block; font-size: 26px; font-weight: 700; color: var(--mm-accent-strong); letter-spacing: -.01em; }
.mm-stat span { font-size: 14px; color: var(--mm-muted); line-height: 1.4; display: block; margin-top: 2px; }

/* keyword ticker */
.mm-ticker { background: var(--mm-bg-alt); border-bottom: 1px solid var(--mm-line); overflow: hidden; padding: 18px 0; position: relative; }
.mm-ticker::before, .mm-ticker::after {
	content: ''; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2; pointer-events: none;
}
.mm-ticker::before { left: 0; background: linear-gradient(90deg, var(--mm-bg-alt), transparent); }
.mm-ticker::after { right: 0; background: linear-gradient(270deg, var(--mm-bg-alt), transparent); }
.mm-ticker-track { display: flex; width: max-content; animation: mm-marquee 36s linear infinite; }
.mm-ticker-track span {
	white-space: nowrap; font-size: 15px; font-weight: 600; letter-spacing: .14em;
	text-transform: uppercase; color: var(--mm-muted); padding: 0 28px; position: relative;
}
.mm-ticker-track span::after { content: '·'; color: var(--mm-accent); position: absolute; right: -6px; }
@keyframes mm-marquee { to { transform: translateX(-50%); } }
.mm-ticker:hover .mm-ticker-track { animation-play-state: paused; }
@media (prefers-reduced-motion: reduce) { .mm-ticker-track { animation: none; } }

/* ambient glow blobs */
.mm-glow { position: absolute; width: 480px; height: 480px; border-radius: 50%; filter: blur(90px); opacity: .16; pointer-events: none; animation: mm-drift 18s ease-in-out infinite alternate; }
.mm-glow-amber { background: radial-gradient(circle, #f5a940, transparent 65%); }
.mm-glow-teal { background: radial-gradient(circle, #43c8ce, transparent 65%); animation-delay: -9s; }
@keyframes mm-drift {
	0%   { transform: translate(0, 0) scale(1); }
	100% { transform: translate(60px, -40px) scale(1.15); }
}
@media (prefers-reduced-motion: reduce) { .mm-glow { animation: none; } }

/* sections */
.mm-section { padding: 110px 0; position: relative; overflow: hidden; }
.mm-section > .mm-wrap { position: relative; z-index: 1; }
.mm-section-alt { background: var(--mm-bg-alt); border-top: 1px solid var(--mm-line); border-bottom: 1px solid var(--mm-line); }
body.mm2026 .mm-section p { color: var(--mm-muted); }
body.mm2026 .mm-section p + p { margin-top: 16px; }

/* about split */
.mm-split { display: grid; grid-template-columns: 1.15fr .85fr; gap: 64px; align-items: center; }
.mm-split-text .mm-btn { margin-top: 30px; }
.mm-checks { list-style: none; margin: 26px 0 0; }
.mm-checks li { position: relative; padding: 7px 0 7px 34px; color: var(--mm-text); }
.mm-checks li::before {
	content: ''; position: absolute; left: 0; top: 11px; width: 20px; height: 20px;
	border-radius: 50%; background: rgba(245, 169, 64, .14);
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f5a940' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 13l4 4 10-10'/%3E%3C/svg%3E");
	background-size: 12px; background-position: center; background-repeat: no-repeat;
}
.mm-cow-card {
	background: radial-gradient(120% 120% at 30% 20%, #1c2230 0%, var(--mm-panel) 60%);
	border: 1px solid var(--mm-line); border-radius: 24px;
	padding: 34px 24px 0; display: flex; justify-content: center; overflow: hidden;
	box-shadow: 0 30px 60px rgba(0, 0, 0, .35);
}
.mm-cow-card img { width: min(100%, 420px); transform: translateY(6px); }

/* process */
.mm-process { list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 42px; counter-reset: step; }
.mm-process li { background: var(--mm-panel); border: 1px solid var(--mm-line); border-radius: 18px; padding: 26px 24px; position: relative; transition: transform .2s ease, border-color .2s ease; }
.mm-process li:hover { transform: translateY(-4px); border-color: rgba(245, 169, 64, .45); }
.mm-process li > span { font-size: 13px; font-weight: 700; letter-spacing: .18em; color: var(--mm-teal); }
.mm-process h3 { margin: 8px 0 8px; }
.mm-process p { font-size: 15px; }

/* service cards */
.mm-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 42px; }
.mm-card { background: var(--mm-panel); border: 1px solid var(--mm-line); border-radius: 18px; padding: 30px 26px; transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; }
.mm-card:hover { transform: translateY(-5px); border-color: rgba(245, 169, 64, .5); box-shadow: 0 24px 44px rgba(0, 0, 0, .35); }
.mm-card-ico { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; background: rgba(245, 169, 64, .12); color: var(--mm-accent-strong); margin-bottom: 20px; transition: background .25s ease, box-shadow .25s ease, transform .25s ease; }
.mm-card-ico svg { width: 26px; height: 26px; }
.mm-card:hover .mm-card-ico { background: rgba(245, 169, 64, .24); box-shadow: 0 0 26px rgba(245, 169, 64, .35); transform: scale(1.08) rotate(-4deg); }
.mm-process li > span { display: inline-block; transition: transform .25s ease, color .25s ease; }
.mm-process li:hover > span { transform: scale(1.25); color: var(--mm-accent-strong); }
.mm-card h3 { margin-bottom: 10px; }
.mm-card p { font-size: 15.5px; }

/* CTA band */
.mm-cta { background: linear-gradient(115deg, #f0a138 0%, #ffbe63 55%, #f8cf8b 100%); color: #171104; padding: 74px 0; }
.mm-cta-inner { display: flex; align-items: center; gap: 54px; }
.mm-cta .mm-kicker { color: #4e3006; }
.mm-cta h2 { color: #171104; }
.mm-cta .mm-btn { margin-top: 26px; }
.mm-cta-cow { width: clamp(160px, 18vw, 240px); flex: none; filter: drop-shadow(0 16px 26px rgba(90, 55, 0, .35)); }

/* footer */
.mm-footer { background: #07090c; border-top: 1px solid var(--mm-line); padding: 64px 0 28px; }
.mm-footer-inner { display: flex; justify-content: space-between; gap: 44px; flex-wrap: wrap; }
.mm-footer-brand p { color: var(--mm-muted); font-size: 15px; margin-top: 16px; max-width: 30em; }
.mm-footer-brand img { width: 150px; }
.mm-social { display: flex; gap: 18px; margin-top: 18px; }
.mm-social a { font-size: 14px; color: var(--mm-muted); border: 1px solid var(--mm-line); padding: 8px 16px; border-radius: 999px; }
.mm-social a:hover { color: var(--mm-accent-strong); border-color: rgba(245, 169, 64, .5); }
.mm-footer-nav { display: flex; flex-direction: column; gap: 12px; }
.mm-footer-nav a { color: var(--mm-muted); font-size: 15px; }
.mm-footer-nav a:hover { color: var(--mm-accent-strong); }
.mm-copy { margin-top: 46px; padding-top: 22px; border-top: 1px solid var(--mm-line); color: #8a93a5; font-size: 13.5px; }

/* ── subpages (Kuhstall / Portfolio) ─────────── */
.mm-page-hero { position: relative; overflow: hidden; padding: 170px 0 70px; background: radial-gradient(130% 100% at 80% 0%, #141a26 0%, var(--mm-bg) 60%); border-bottom: 1px solid var(--mm-line); }
.mm-page-hero-inner { display: grid; grid-template-columns: 1.4fr .6fr; gap: 40px; align-items: center; position: relative; z-index: 1; }
.mm-page-hero h1 { font-size: clamp(34px, 5vw, 58px); }
.mm-page-hero .mm-lead { margin-top: 18px; }
.mm-page-hero .mm-checks { margin-top: 24px; }
.mm-page-hero-text > * { opacity: 0; transform: translateY(22px); animation: mm-rise .8s cubic-bezier(.2,.7,.2,1) forwards; }
.mm-page-hero-text > .mm-kicker { animation-delay: .08s; }
.mm-page-hero-text > h1 { animation-delay: .2s; }
.mm-page-hero-text > .mm-lead { animation-delay: .34s; }
.mm-page-hero-text > .mm-checks { animation-delay: .48s; }
.mm-page-hero-cow { width: min(100%, 330px); height: auto; justify-self: center; filter: drop-shadow(0 18px 34px rgba(0,0,0,.55)); opacity: 0; animation: mm-float 5.5s ease-in-out infinite, mm-cow-in .9s ease-out .5s forwards; }
@media (prefers-reduced-motion: reduce) { .mm-page-hero-text > *, .mm-page-hero-cow { opacity: 1; transform: none; animation: none; } }

/* form card (Cognito) */
.mm-form-card { background: #f4f5f8; border-radius: 20px; padding: 34px; margin-top: 36px; box-shadow: 0 30px 60px rgba(0, 0, 0, .4); }
.mm-form-card .cognito { color: #1c2230; }
.mm-form-note { margin-top: 18px; font-size: 14px; color: var(--mm-muted); }

/* case studies */
.mm-cases { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.mm-case { background: var(--mm-panel); border: 1px solid var(--mm-line); border-radius: 20px; padding: 34px 30px; transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; }
.mm-case:hover { transform: translateY(-5px); border-color: rgba(245, 169, 64, .5); box-shadow: 0 24px 44px rgba(0, 0, 0, .35); }
.mm-case-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.mm-case-num { font-size: 14px; font-weight: 700; letter-spacing: .2em; color: var(--mm-teal); }
.mm-badge { font-size: 12px; font-weight: 700; letter-spacing: .08em; color: var(--mm-accent-strong); border: 1px solid rgba(245, 169, 64, .5); border-radius: 999px; padding: 3px 10px; }
.mm-case h3 { font-size: 21px; margin-bottom: 12px; }
.mm-case p { font-size: 15.5px; }
.mm-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.mm-tags span { font-size: 12.5px; font-weight: 600; letter-spacing: .04em; color: var(--mm-muted); background: rgba(163, 173, 190, .08); border: 1px solid var(--mm-line); border-radius: 999px; padding: 5px 12px; }

/* tech strip */
.mm-tech { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }
.mm-tech span { font-size: 15px; font-weight: 600; color: var(--mm-text); background: var(--mm-panel); border: 1px solid var(--mm-line); border-radius: 12px; padding: 12px 18px; transition: border-color .2s ease, transform .2s ease; }
.mm-tech span:hover { border-color: rgba(67, 200, 206, .55); transform: translateY(-2px); }

/* reveal on scroll */
.mm-reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.mm-reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .mm-reveal { opacity: 1; transform: none; transition: none; } }

/* ── responsive ─────────────────────────────── */
@media (max-width: 980px) {
	.mm-split { grid-template-columns: 1fr; gap: 44px; }
	.mm-process, .mm-cards { grid-template-columns: repeat(2, 1fr); }
	.mm-stats-inner { grid-template-columns: repeat(2, 1fr); }
	.mm-hero-cow { right: 2vw; bottom: 150px; }
}
@media (max-width: 760px) {
	.mm-burger { display: block; }
	.mm-nav {
		position: fixed; top: 76px; left: 0; right: 0; z-index: 89;
		flex-direction: column; align-items: flex-start; gap: 4px;
		background: rgba(10, 12, 16, .98); border-bottom: 1px solid var(--mm-line);
		padding: 10px 24px 22px; display: none;
	}
	.mm-nav.is-open { display: flex; }
	.mm-nav a:not(.mm-btn) { padding: 12px 0; font-size: 17px; width: 100%; }
	.mm-nav-cta { margin-top: 10px; }
	.mm-header { background: rgba(10, 12, 16, .92); }
	.mm-hero { min-height: 100svh; flex-direction: column; justify-content: center; }
	.mm-hero-inner { padding-top: 110px; padding-bottom: 0; }
	.mm-hero-cta { flex-direction: column; align-items: stretch; }
	.mm-hero-cta .mm-btn { width: 100%; }
	.mm-hero-cow { position: static; order: 2; margin: 28px auto 230px; width: 160px; }
	.mm-stats-inner { grid-template-columns: 1fr 1fr; gap: 12px; }
	.mm-stat strong { font-size: 20px; }
	.mm-stat span { font-size: 12.5px; }
	.mm-section { padding: 74px 0; }
	.mm-process, .mm-cards { grid-template-columns: 1fr; }
	.mm-cta-inner { flex-direction: column; text-align: center; }
	.mm-cta .mm-kicker { justify-content: center; }
	.mm-footer-inner { flex-direction: column; }
	.mm-glow { width: 300px; height: 300px; filter: blur(70px); }
	.mm-page-hero { padding: 130px 0 50px; }
	.mm-page-hero-inner { grid-template-columns: 1fr; }
	.mm-page-hero-cow { width: 180px; margin-top: 8px; }
	.mm-cases { grid-template-columns: 1fr; }
	.mm-form-card { padding: 20px 14px; }
}

/* portfolio — featured named case (WeTakeItDown), added 2026-07-21 */
.mm-case-feat { grid-column: 1 / -1; background: linear-gradient(145deg, rgba(67,200,206,.10), rgba(245,169,64,.07)), var(--mm-panel); border-color: rgba(67,200,206,.45); }
.mm-case-feat:hover { border-color: rgba(67,200,206,.7); box-shadow: 0 24px 44px rgba(0,0,0,.35); }
body.mm2026 .mm-badge-alt { color: var(--mm-teal); border-color: rgba(67,200,206,.55); }
body.mm2026 .mm-case-brand { color: var(--mm-teal); }
body.mm2026 .mm-case-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 20px; font-weight: 600; font-size: 15.5px; color: var(--mm-accent-strong); border-bottom: 1px solid transparent; padding-bottom: 2px; transition: gap .18s ease, border-color .18s ease; }
body.mm2026 .mm-case-link:hover { gap: 12px; border-color: var(--mm-accent-strong); }
.mm-case-link .mm-arw { transition: transform .18s ease; }
body.mm2026 .mm-case-link:hover .mm-arw { transform: translateX(3px); }
@media (prefers-reduced-motion: reduce) { .mm-case-link, .mm-case-link .mm-arw { transition: none; } }
.mm-case-feat .mm-case-logo { width: 320px; max-width: 100%; height: auto; margin: 4px 0 14px; }
@media (max-width: 640px) { .mm-case-feat .mm-case-logo { width: 250px; } }
