/*
Theme Name: Media Plug X — Info
Theme URI: https://mediaplugx.com
Author: Media Plug X
Description: One-page informational/portfolio theme for Media Plug X — services, work proof, and contact. No orders, no accounts, no payments.
Version: 1.0.0
Text Domain: mpxinfo
*/

/* ==========================================================================
   0. Design Tokens
   ========================================================================== */
:root{
	--bg:            #0a0b0d;
	--bg-2:          #101216;
	--surface:       #14161b;
	--surface-hover: #191c22;

	--text:          #f4f5f7;
	--text-muted:    #a3a7b0;
	--text-label:    #757982;

	--accent:        #e31d45;
	--accent-2:      #ff3f68;
	--accent-soft:   rgba(227,29,69,0.12);
	--accent-glow:   rgba(227,29,69,0.30);

	--border:        rgba(255,255,255,0.08);
	--border-hover:  rgba(227,29,69,0.35);
	--line:          rgba(255,255,255,0.06);

	--ok:            #35d17e;

	--f-display: 'Plus Jakarta Sans', 'Noto Sans Bengali', sans-serif;
	--f-body:    'Inter', 'Noto Sans Bengali', sans-serif;
	--f-mono:    'JetBrains Mono', 'Roboto Mono', monospace;

	--radius-sm: 8px;
	--radius:    16px;
	--radius-lg: 22px;
	--container: 1160px;

	--shadow-md: 0 12px 34px rgba(0,0,0,0.42);
	--shadow-glow: 0 10px 30px var(--accent-glow);

	--ease: cubic-bezier(.2,.8,.2,1);
	--t-fast: 180ms;
	--t-med: 320ms;
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
@media (prefers-reduced-motion: reduce){ html{ scroll-behavior:auto; } }

body{
	margin:0; background:var(--bg); color:var(--text);
	font-family:var(--f-body); font-size:16px; line-height:1.7;
	-webkit-font-smoothing:antialiased; overflow-x:hidden;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
h1,h2,h3,h4{ font-family:var(--f-display); margin:0; font-weight:700; letter-spacing:-0.015em; color:var(--text); }
p{ margin:0; color:var(--text-muted); }
:focus-visible{ outline:2px solid var(--accent-2); outline-offset:3px; border-radius:4px; }

.mpx-wrap{ max-width:var(--container); margin:0 auto; padding:0 24px; }
.mpx-skip-link{
	position:absolute; left:12px; top:-60px; z-index:1000;
	background:var(--accent); color:#fff; padding:12px 18px; border-radius:var(--radius-sm);
	font-weight:600; font-size:0.9rem; transition:top var(--t-fast) var(--ease);
}
.mpx-skip-link:focus{ top:12px; }

/* ==========================================================================
   1. Header
   ========================================================================== */
.mpx-header{
	position:sticky; top:0; z-index:100; background:transparent;
	border-bottom:1px solid transparent;
	transition:background var(--t-med) var(--ease), border-color var(--t-med) var(--ease), backdrop-filter var(--t-med) var(--ease);
}
.mpx-header.is-scrolled{
	background:rgba(10,11,13,0.86); backdrop-filter:blur(14px); -webkit-backdrop-filter:blur(14px);
	border-bottom-color:var(--border);
}
.mpx-header-inner{ display:flex; align-items:center; justify-content:space-between; padding:14px 24px; }
.mpx-logo{ display:flex; align-items:center; gap:10px; }
.mpx-logo img{ height:38px; width:auto; }
.mpx-logo span{ font-family:var(--f-display); font-weight:700; font-size:1.05rem; letter-spacing:0.01em; }
.mpx-logo span b{ color:var(--accent-2); }

.mpx-nav{ display:flex; align-items:center; gap:30px; }
.mpx-nav a{ font-size:0.92rem; font-weight:500; color:var(--text-muted); transition:color var(--t-fast) var(--ease); }
.mpx-nav a:hover{ color:var(--text); }
.mpx-header-cta{
	background:var(--accent); color:#fff; padding:10px 20px; border-radius:var(--radius-sm);
	font-weight:600; font-size:0.88rem; transition:background var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
}
.mpx-header-cta:hover{ background:var(--accent-2); transform:translateY(-1px); }

.mpx-nav-close{ display:none; }
.mpx-burger{ display:none; background:none; border:0; color:var(--text); padding:8px; }
.mpx-burger svg{ width:24px; height:24px; }

@media (max-width:860px){
	.mpx-nav{
		position:fixed; inset:0 0 0 auto; width:78%; max-width:320px; height:100vh;
		background:var(--bg-2); border-left:1px solid var(--border);
		flex-direction:column; align-items:flex-start; justify-content:center; gap:26px;
		padding:32px; transform:translateX(100%); transition:transform var(--t-med) var(--ease);
		z-index:200;
	}
	.mpx-nav.is-open{ transform:translateX(0); }
	.mpx-nav a{ font-size:1.1rem; }
	.mpx-burger{ display:block; }
	.mpx-nav-close{ position:absolute; top:20px; right:20px; background:none; border:0; color:var(--text); display:block; }
}

/* ==========================================================================
   2. Hero
   ========================================================================== */
.mpx-hero{ position:relative; z-index:1; padding:88px 0 64px; overflow:hidden; }
.mpx-hero-grid{ display:grid; grid-template-columns:1.1fr 0.9fr; gap:48px; align-items:center; }
.mpx-eyebrow{
	display:inline-flex; align-items:center; gap:8px; font-size:0.82rem; font-weight:600;
	letter-spacing:0.05em; color:var(--accent-2); margin-bottom:18px; text-transform:uppercase;
}
.mpx-eyebrow::before{ content:""; width:6px; height:6px; background:var(--accent-2); border-radius:50%; }

.mpx-headline{
	font-size:clamp(2.1rem, 5vw, 3.6rem); line-height:1.08; margin-bottom:18px;
}
.mpx-headline .w{
	display:inline-block; opacity:0; filter:blur(6px); transform:translateY(18px);
	animation:mpxIn 1.1s var(--ease) forwards; animation-delay:var(--d, 0s);
}
.mpx-headline .hl{
	color:var(--accent-2);
	text-shadow:0 2px 10px rgba(227,29,69,0.35), 0 0 24px rgba(227,29,69,0.22);
}
@keyframes mpxIn{ to{ opacity:1; filter:blur(0); transform:translateY(0); } }
@media (prefers-reduced-motion: reduce){ .mpx-headline .w{ animation:none; opacity:1; filter:none; transform:none; } }

.mpx-hero p.lead{ font-size:1.06rem; max-width:520px; margin-bottom:30px; }
.mpx-hero-actions{ display:flex; gap:14px; flex-wrap:wrap; }
.mpx-btn{
	display:inline-flex; align-items:center; gap:8px; padding:13px 24px; border-radius:var(--radius-sm);
	font-weight:600; font-size:0.92rem; border:1px solid transparent; min-height:44px;
	transition:background var(--t-fast) var(--ease), transform var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease);
}
.mpx-btn-primary{ background:var(--accent); color:#fff; box-shadow:0 8px 24px rgba(227,29,69,0.25); }
.mpx-btn-primary:hover{ background:var(--accent-2); transform:translateY(-2px); box-shadow:var(--shadow-glow); }
.mpx-btn-ghost{ background:rgba(255,255,255,0.02); border-color:var(--border); color:var(--text); }
.mpx-btn-ghost:hover{ border-color:var(--border-hover); background:rgba(255,255,255,0.05); }

/* Hero visual: rotating logo mark card */
.mpx-hero-card{
	position:relative; background:var(--surface); border:1px solid var(--border); border-radius:var(--radius-lg);
	padding:40px; display:flex; align-items:center; justify-content:center; box-shadow:var(--shadow-md);
	perspective:900px;
}
.mpx-hero-card img{
	width:min(280px, 70%); filter:drop-shadow(0 10px 30px rgba(227,29,69,0.25));
	transform-style:preserve-3d; will-change:transform;
}
.mpx-hero-card::before{
	content:""; position:absolute; inset:0; border-radius:var(--radius-lg);
	background:radial-gradient(circle at 50% 40%, var(--accent-soft), transparent 65%);
	pointer-events:none;
}
@media (max-width:900px){ .mpx-hero-grid{ grid-template-columns:1fr; } .mpx-hero-card{ order:-1; padding:26px; } }

/* ==========================================================================
   3. Section shell
   ========================================================================== */
.mpx-section{ position:relative; z-index:1; padding:80px 0; }
.mpx-section-alt{ background:var(--bg-2); }
.mpx-section-head{ max-width:640px; margin:0 auto 46px; text-align:center; }
.mpx-section-head .mpx-eyebrow{ justify-content:center; }
.mpx-section-head h2{ font-size:clamp(1.7rem, 3vw, 2.25rem); margin-bottom:12px; }

/* Divider / signature X-mark — animated glowing spotlight, always "live" */
.mpx-x-divider{ display:flex; align-items:center; justify-content:center; gap:16px; margin:0 auto 8px; width:fit-content; }
.mpx-x-divider .line{ width:40px; height:1px; background:linear-gradient(90deg, transparent, var(--border)); }
.mpx-x-divider .line.right{ background:linear-gradient(90deg, var(--border), transparent); }
.mpx-x-mark{ position:relative; width:34px; height:34px; display:flex; align-items:center; justify-content:center; }
.mpx-x-mark::before{
	content:""; position:absolute; inset:-14px; border-radius:50%;
	background:radial-gradient(circle, rgba(255,63,104,0.35), transparent 68%);
	animation:mpxGlowPulse 2.6s ease-in-out infinite; filter:blur(2px);
}
.mpx-x-mark svg{ width:20px; height:20px; position:relative; z-index:1; animation:mpxSpin 7s linear infinite; }
.mpx-x-mark svg path{ stroke:var(--accent-2); }
@keyframes mpxGlowPulse{ 0%,100%{ opacity:0.45; transform:scale(0.9); } 50%{ opacity:1; transform:scale(1.15); } }
@keyframes mpxSpin{ 0%{ transform:rotate(0deg); } 50%{ transform:rotate(180deg); } 100%{ transform:rotate(360deg); } }
@media (prefers-reduced-motion: reduce){ .mpx-x-mark::before, .mpx-x-mark svg{ animation:none; } }

/* ==========================================================================
   4. Services
   ========================================================================== */
.mpx-cat-grid{ display:grid; grid-template-columns:repeat(auto-fit, minmax(300px,1fr)); gap:22px; }
.mpx-cat-card{
	background:var(--surface); border:1px solid var(--border); border-radius:var(--radius);
	padding:26px; transition:transform var(--t-med) var(--ease), border-color var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease);
	opacity:0; filter:blur(4px); transform:translateY(24px);
	transition:opacity 0.8s var(--ease), filter 0.8s var(--ease), transform 0.8s var(--ease);
}
.mpx-cat-card.is-inview{ opacity:1; filter:none; transform:none; }
.mpx-cat-card:hover{ border-color:var(--border-hover); box-shadow:var(--shadow-glow); transform:translateY(-4px); }
.mpx-cat-icon{
	width:44px; height:44px; border-radius:12px; background:var(--accent-soft); color:var(--accent-2);
	display:flex; align-items:center; justify-content:center; margin-bottom:16px;
}
.mpx-cat-icon svg{ width:22px; height:22px; }
.mpx-cat-card h3{ font-size:1.12rem; margin-bottom:10px; }
.mpx-cat-card ul{ display:flex; flex-direction:column; gap:9px; }
.mpx-cat-card li{
	font-size:0.92rem; color:var(--text-muted); padding-left:18px; position:relative;
}
.mpx-cat-card li::before{
	content:""; position:absolute; left:0; top:9px; width:6px; height:6px; border-radius:50%; background:var(--accent-2);
}

/* ==========================================================================
   4b. Shared "alive" icon glow — neon light glow directly on the icon glyph
   (pillar / category / contact icons), always faintly lit, breathing brighter
   ========================================================================== */
.mpx-icon-glow svg{
	animation:mpxIconLightGlow 3.6s ease-in-out infinite, mpxSpin 6s linear infinite;
	animation-delay:var(--glow-delay, 0s), var(--glow-delay, 0s);
}
@keyframes mpxIconLightGlow{
	0%,100%{ filter:drop-shadow(0 0 2px rgba(255,63,104,0.55)); }
	50%{ filter:drop-shadow(0 0 7px rgba(255,63,104,0.95)) drop-shadow(0 0 14px rgba(255,63,104,0.55)); }
}
@media (prefers-reduced-motion: reduce){
	.mpx-icon-glow svg{ animation:none; filter:drop-shadow(0 0 4px rgba(255,63,104,0.6)); }
}

.mpx-pillars .mpx-pillar:nth-child(1) .mpx-icon-glow{ --glow-delay:0s; }
.mpx-pillars .mpx-pillar:nth-child(2) .mpx-icon-glow{ --glow-delay:.9s; }
.mpx-pillars .mpx-pillar:nth-child(3) .mpx-icon-glow{ --glow-delay:1.8s; }
.mpx-cat-grid .mpx-cat-card:nth-child(1) .mpx-icon-glow{ --glow-delay:0s; }
.mpx-cat-grid .mpx-cat-card:nth-child(2) .mpx-icon-glow{ --glow-delay:.5s; }
.mpx-cat-grid .mpx-cat-card:nth-child(3) .mpx-icon-glow{ --glow-delay:1s; }
.mpx-cat-grid .mpx-cat-card:nth-child(4) .mpx-icon-glow{ --glow-delay:1.5s; }
.mpx-cat-grid .mpx-cat-card:nth-child(5) .mpx-icon-glow{ --glow-delay:2s; }
.mpx-cat-grid .mpx-cat-card:nth-child(6) .mpx-icon-glow{ --glow-delay:2.5s; }
.mpx-cat-grid .mpx-cat-card:nth-child(7) .mpx-icon-glow{ --glow-delay:3s; }
.mpx-contact-grid .mpx-contact-card:nth-child(1) .mpx-icon-glow{ --glow-delay:0s; }
.mpx-contact-grid .mpx-contact-card:nth-child(2) .mpx-icon-glow{ --glow-delay:.6s; }
.mpx-contact-grid .mpx-contact-card:nth-child(3) .mpx-icon-glow{ --glow-delay:1.2s; }
.mpx-contact-grid .mpx-contact-card:nth-child(4) .mpx-icon-glow{ --glow-delay:1.8s; }
.mpx-contact-grid .mpx-contact-card:nth-child(5) .mpx-icon-glow{ --glow-delay:2.4s; }
.mpx-contact-grid .mpx-contact-card:nth-child(6) .mpx-icon-glow{ --glow-delay:3s; }

.mpx-pillars{ display:grid; grid-template-columns:repeat(auto-fit, minmax(220px,1fr)); gap:20px; }
.mpx-pillar{ text-align:center; padding:28px 18px; }
.mpx-pillar-icon{
	width:52px; height:52px; margin:0 auto 16px; border-radius:14px; background:var(--accent-soft); color:var(--accent-2);
	display:flex; align-items:center; justify-content:center;
}
.mpx-pillar-icon svg{ width:24px; height:24px; }
.mpx-pillar h3{ font-size:1.02rem; margin-bottom:8px; }
.mpx-pillar p{ font-size:0.9rem; }

/* ==========================================================================
   6. Work / proof videos
   ========================================================================== */
.mpx-video-grid{ display:grid; grid-template-columns:repeat(auto-fit, minmax(280px,1fr)); gap:22px; }
.mpx-video-card{ background:var(--surface); border:1px solid var(--border); border-radius:var(--radius); overflow:hidden; }
.mpx-video-frame{ position:relative; aspect-ratio:16/9; background:#000; }
.mpx-video-frame iframe{ position:absolute; inset:0; width:100%; height:100%; border:0; }
.mpx-video-placeholder{
	position:absolute; inset:0; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:14px;
	color:var(--text-label); font-size:0.82rem; text-align:center; padding:20px;
	background:linear-gradient(155deg, var(--surface), var(--bg-2));
}
.mpx-mock-ui{ position:relative; width:78%; max-width:220px; }
.mpx-mock-bar{
	height:8px; border-radius:999px; background:rgba(255,255,255,0.08); overflow:hidden; position:relative;
}
.mpx-mock-bar::after{
	content:""; position:absolute; left:0; top:0; bottom:0; width:40%; border-radius:999px;
	background:linear-gradient(90deg, var(--accent), var(--accent-2));
	animation:mpxBarFill 3.2s ease-in-out infinite;
}
@keyframes mpxBarFill{ 0%{ width:8%; } 45%{ width:92%; } 60%{ width:92%; } 100%{ width:8%; } }
.mpx-mock-cursor{
	position:absolute; top:-13px; width:16px; height:16px; border-radius:50%;
	background:var(--accent-2); box-shadow:0 0 12px rgba(255,63,104,0.7);
	animation:mpxCursorMove 3.2s ease-in-out infinite;
}
@keyframes mpxCursorMove{ 0%{ left:0%; } 45%{ left:88%; } 60%{ left:88%; } 100%{ left:0%; } }
.mpx-mock-check{
	width:30px; height:30px; border-radius:50%; border:1.5px solid var(--ok); color:var(--ok);
	display:flex; align-items:center; justify-content:center; opacity:0;
	animation:mpxCheckPop 3.2s ease-in-out infinite;
}
.mpx-mock-check svg{ width:14px; height:14px; }
@keyframes mpxCheckPop{ 0%,55%{ opacity:0; transform:scale(0.7); } 65%,95%{ opacity:1; transform:scale(1); } 100%{ opacity:0; transform:scale(0.7); } }
@media (prefers-reduced-motion: reduce){
	.mpx-mock-bar::after, .mpx-mock-cursor, .mpx-mock-check{ animation:none; }
	.mpx-mock-bar::after{ width:60%; } .mpx-mock-check{ opacity:1; }
}
.mpx-video-card-body{ padding:16px 18px; }
.mpx-video-card-body h4{ font-size:0.98rem; margin-bottom:4px; }
.mpx-video-card-body p{ font-size:0.85rem; }

/* ==========================================================================
   7. Trust / social proof (honest, no fake reviews)
   ========================================================================== */
.mpx-trust-box{
	background:var(--surface); border:1px solid var(--border); border-radius:var(--radius-lg);
	padding:40px; text-align:center; max-width:720px; margin:0 auto;
}
.mpx-trust-box h3{ font-size:1.2rem; margin-bottom:12px; }
.mpx-trust-box p{ max-width:520px; margin:0 auto 22px; }
.mpx-trust-links{ display:flex; gap:14px; justify-content:center; flex-wrap:wrap; }

/* ==========================================================================
   8. About
   ========================================================================== */
.mpx-about-grid{ display:grid; grid-template-columns:0.62fr 1fr; gap:44px; align-items:center; }
.mpx-about-photo{
	border-radius:var(--radius-lg); overflow:hidden; border:1px solid var(--border); box-shadow:var(--shadow-md);
	position:relative;
}
.mpx-about-photo img{ width:100%; aspect-ratio:1/1; object-fit:cover; }
.mpx-about-text h2{ font-size:clamp(1.5rem,2.6vw,2rem); margin-bottom:14px; }
.mpx-about-text p{ margin-bottom:14px; font-size:0.98rem; }
.mpx-about-role{ display:inline-block; color:var(--accent-2); font-weight:600; font-size:0.88rem; margin-bottom:10px; letter-spacing:0.02em; }
@media (max-width:800px){ .mpx-about-grid{ grid-template-columns:1fr; } .mpx-about-photo{ max-width:260px; margin:0 auto; } }

/* ==========================================================================
   9. Contact
   ========================================================================== */
.mpx-spotlight{
	position:relative; max-width:400px; margin:0 auto 26px;
	background:var(--surface); border:1px solid var(--border); border-radius:var(--radius-lg);
	padding:34px 24px 24px; text-align:center; overflow:hidden;
}
.mpx-spotlight-track{ position:relative; height:190px; }
.mpx-spotlight-slide{
	position:absolute; inset:0; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:10px;
	opacity:0; transform:translateY(10px) scale(0.97); pointer-events:none;
	transition:opacity .35s var(--ease), transform .35s var(--ease);
}
.mpx-spotlight-slide.is-active{ opacity:1; transform:translateY(0) scale(1); pointer-events:auto; }
.mpx-spotlight-slide .mpx-contact-icon{ width:60px; height:60px; border-radius:16px; }
.mpx-spotlight-slide .mpx-contact-icon svg{ width:26px; height:26px; }
.mpx-spotlight-slide h4{ font-size:1.08rem; }
.mpx-spotlight-slide p{ font-size:0.86rem; color:var(--text-muted); max-width:280px; }

.mpx-spotlight-dots{ display:flex; gap:8px; justify-content:center; margin-top:20px; }
.mpx-spotlight-dots button{
	width:8px; height:8px; border-radius:50%; border:0; background:var(--border); cursor:pointer; padding:0;
	transition:background var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
}
.mpx-spotlight-dots button.is-active{ background:var(--accent-2); transform:scale(1.3); }

.mpx-viewall-toggle{
	display:block; margin:16px auto 0; background:none; border:0; color:var(--text-label);
	font-size:0.82rem; font-weight:600; cursor:pointer; text-decoration:underline; text-underline-offset:3px;
}
.mpx-viewall-toggle:hover{ color:var(--accent-2); }

.mpx-contact-grid-wrap{
	max-height:0; overflow:hidden; transition:max-height .5s var(--ease);
}
.mpx-contact-grid-wrap.is-open{ max-height:900px; }
.mpx-contact-grid-wrap .mpx-contact-grid{ padding-top:8px; }

.mpx-contact-grid{ display:grid; grid-template-columns:repeat(auto-fit, minmax(220px,1fr)); gap:18px; }
.mpx-contact-card{
	background:var(--surface); border:1px solid var(--border); border-radius:var(--radius);
	padding:30px 20px; display:flex; flex-direction:column; gap:14px; align-items:center; text-align:center;
	transition:border-color var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
}
.mpx-contact-card:hover{ border-color:var(--border-hover); transform:translateY(-3px); }
.mpx-contact-icon{
	width:46px; height:46px; border-radius:12px; background:var(--accent-soft); color:var(--accent-2);
	display:flex; align-items:center; justify-content:center;
}
.mpx-contact-icon svg{ width:22px; height:22px; }
.mpx-contact-card h4{ font-size:1rem; }
.mpx-contact-card .go{ font-size:0.83rem; font-weight:600; color:var(--accent-2); margin-top:2px; }

/* ==========================================================================
   10. Footer
   ========================================================================== */
.mpx-footer{ border-top:1px solid var(--line); padding:44px 0 28px; }
.mpx-footer-inner{ display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:18px; }
.mpx-footer-brand{ display:flex; align-items:center; gap:10px; }
.mpx-footer-brand img{ height:28px; }
.mpx-footer-note{ font-size:0.82rem; color:var(--text-label); }
.mpx-footer-social{ display:flex; gap:12px; }
.mpx-footer-social a{
	width:36px; height:36px; border-radius:50%; border:1px solid var(--border); display:flex; align-items:center; justify-content:center;
	color:var(--text-muted); transition:color var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
}
.mpx-footer-social a:hover{ color:var(--accent-2); border-color:var(--border-hover); transform:translateY(-2px); }
.mpx-footer-social svg{ width:16px; height:16px; }
.mpx-footer-bottom{ text-align:center; margin-top:26px; font-size:0.78rem; color:var(--text-label); }

/* ==========================================================================
   11. Floating WhatsApp
   ========================================================================== */
.mpx-float-wa{
	position:fixed; right:20px; bottom:20px; z-index:150; width:56px; height:56px; border-radius:50%;
	background:linear-gradient(155deg, #35d17e, #1fa864); display:flex; align-items:center; justify-content:center;
	box-shadow:0 8px 22px rgba(53,209,126,0.35); transition:transform var(--t-fast) var(--ease);
}
.mpx-float-wa:hover{ transform:scale(1.07); }
.mpx-float-wa svg{ width:26px; height:26px; color:#fff; }

/* ==========================================================================
   12. Utility / reveal
   ========================================================================== */
[data-mpx-reveal]{
	opacity:0; filter:blur(4px); transform:translateY(28px);
	transition:opacity 0.8s var(--ease), filter 0.8s var(--ease), transform 0.8s var(--ease);
}
[data-mpx-reveal].is-inview{ opacity:1; filter:none; transform:none; }

@media (max-width:600px){
	.mpx-hero{ padding:56px 0 40px; }
	.mpx-section{ padding:58px 0; }
	.mpx-hero-actions .mpx-btn{ flex:1; justify-content:center; }
}
