/* =========================================================
   Migrawise Landing Page — Cosmic Orange + White dominant
   Black used only as minimal accent. Warm, luminous, dynamic.
   ========================================================= */

/* ── Animatable custom properties for mesh gradients ── */
@property --lp-mesh-x1 { syntax: '<percentage>'; inherits: false; initial-value: 20%; }
@property --lp-mesh-y1 { syntax: '<percentage>'; inherits: false; initial-value: 10%; }
@property --lp-mesh-x2 { syntax: '<percentage>'; inherits: false; initial-value: 80%; }
@property --lp-mesh-y2 { syntax: '<percentage>'; inherits: false; initial-value: 70%; }
@property --lp-mesh-x3 { syntax: '<percentage>'; inherits: false; initial-value: 50%; }
@property --lp-mesh-y3 { syntax: '<percentage>'; inherits: false; initial-value: 90%; }
@property --lp-hero-x1 { syntax: '<percentage>'; inherits: false; initial-value: 30%; }
@property --lp-hero-y1 { syntax: '<percentage>'; inherits: false; initial-value: 20%; }
@property --lp-hero-x2 { syntax: '<percentage>'; inherits: false; initial-value: 70%; }
@property --lp-hero-y2 { syntax: '<percentage>'; inherits: false; initial-value: 60%; }
@property --lp-hero-x3 { syntax: '<percentage>'; inherits: false; initial-value: 50%; }
@property --lp-hero-y3 { syntax: '<percentage>'; inherits: false; initial-value: 80%; }
@property --lp-cta-x1 { syntax: '<percentage>'; inherits: false; initial-value: 20%; }
@property --lp-cta-y1 { syntax: '<percentage>'; inherits: false; initial-value: 30%; }
@property --lp-cta-x2 { syntax: '<percentage>'; inherits: false; initial-value: 80%; }
@property --lp-cta-y2 { syntax: '<percentage>'; inherits: false; initial-value: 70%; }

:root {
	--lp-orange:       #DA7756;
	--lp-orange-dark:  #C4654A;
	--lp-orange-light: #FDF2EE;
	--lp-orange-mid:   #E8926F;
	--lp-orange-pale:  #FAE5DA;
	--lp-orange-50:    #FDF2EE;
	--lp-cream:        #FFFBF5;
	--lp-warm-white:   #FEF8F2;
	--lp-charcoal:     #1A1A1A;
	--lp-white:        #FFFFFF;
	--lp-gray-50:      #FAFAF8;
	--lp-gray-100:     #F5F3F0;
	--lp-gray-200:     #E8E4DE;
	--lp-gray-300:     #D1CCC4;
	--lp-gray-400:     #9C9589;
	--lp-gray-500:     #6B6358;
	--lp-gray-600:     #4B4439;
	--lp-gray-700:     #37322A;
	--lp-gray-800:     #252118;
	--lp-gray-900:     #1A1610;
	--lp-font:         'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	--lp-radius:       12px;
	--lp-shadow:       0 1px 3px rgba(0,0,0,.04), 0 1px 2px rgba(0,0,0,.03);
	--lp-shadow-md:    0 4px 12px rgba(0,0,0,.06);
	--lp-shadow-lg:    0 12px 28px rgba(0,0,0,.08);
	--lp-max-w:        1200px;
	--lp-glass-bg:     rgba(255,255,255,.6);
	--lp-glass-border: rgba(255,255,255,.5);
	--lp-glass-blur:   16px;
	--lp-ease:         cubic-bezier(.22,1,.36,1);
}

/* ---------- Reset ---------- */
body.mw-landing-page {
	margin: 0;
	padding: 0;
	font-family: var(--lp-font);
	color: var(--lp-gray-800);
	background: var(--lp-cream);
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
}
body.mw-landing-page *, body.mw-landing-page *::before, body.mw-landing-page *::after {
	box-sizing: border-box;
}
body.mw-landing-page img { max-width: 100%; height: auto; }

/* =========================================================
   Navigation — glass blur, warm tones
   ========================================================= */

.mw-landing-nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	padding: 0 24px;
	transition: background 0.3s, box-shadow 0.3s, backdrop-filter 0.3s;
}
.mw-landing-nav--scrolled {
	background: rgba(253,245,240,.88);
	backdrop-filter: blur(16px) saturate(1.4);
	-webkit-backdrop-filter: blur(16px) saturate(1.4);
	box-shadow: 0 1px 0 rgba(218,119,86,.08), 0 4px 20px rgba(218,119,86,.06);
	border-bottom: 1px solid rgba(218,119,86,.08);
}
.mw-landing-nav__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: var(--lp-max-w);
	margin: 0 auto;
	height: 72px;
}

/* Logo */
.mw-landing-logo {
	display: flex;
	align-items: center;
	gap: 0;
	text-decoration: none !important;
	font-weight: 800;
	font-size: 24px;
	letter-spacing: -.5px;
	color: var(--lp-gray-900);
	transition: opacity 0.25s ease;
}
.mw-landing-logo:hover {
	text-decoration: none !important;
	opacity: 0.8;
}
.mw-landing-logo:active {
	opacity: 0.65;
}
/* Logo wordmark — single terracotta color */
.mw-landing-logo .mw-landing-logo__text { color: #DA7756 !important; }
.mw-landing-logo__icon {
	width: 36px;
	height: 36px;
	border-radius: 10px;
	background: linear-gradient(135deg, #DA7756, #C4654A);
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 2px 12px rgba(218,119,86,.35);
	flex-shrink: 0;
}
.mw-landing-logo__icon svg {
	display: block;
}

/* Nav links */
.mw-landing-nav__links {
	display: flex;
	align-items: center;
	gap: 32px;
	list-style: none;
	margin: 0;
	padding: 0;
}
.mw-landing-nav__links a {
	text-decoration: none;
	font-size: 15px;
	font-weight: 500;
	color: var(--lp-gray-500);
	transition: color 0.2s;
}
.mw-landing-nav__links a:hover { color: var(--lp-orange); }
.mw-landing-nav--scrolled .mw-landing-nav__links a { color: var(--lp-gray-500); }
.mw-landing-nav--scrolled .mw-landing-nav__links a:hover { color: var(--lp-orange); }

/* Nav actions */
.mw-landing-nav__actions {
	display: flex;
	align-items: center;
	gap: 16px;
}
.mw-landing-nav__login {
	text-decoration: none;
	font-size: 15px;
	font-weight: 500;
	color: var(--lp-gray-500);
	transition: color 0.2s;
}
.mw-landing-nav__login:hover { color: var(--lp-orange); }
.mw-landing-nav--scrolled .mw-landing-nav__login { color: var(--lp-gray-500); }
.mw-landing-nav--scrolled .mw-landing-nav__login:hover { color: var(--lp-orange); }

/* Hamburger */
.mw-landing-hamburger {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: 4px;
	color: var(--lp-gray-700);
}
.mw-landing-nav--scrolled .mw-landing-hamburger { color: var(--lp-gray-700); }
.mw-landing-hamburger svg { width: 28px; height: 28px; }

/* =========================================================
   Buttons (shared)
   ========================================================= */

.mw-lp-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 28px;
	border-radius: 8px;
	font-size: 15px;
	font-weight: 600;
	text-decoration: none;
	cursor: pointer;
	border: none;
	transition: all 0.3s var(--lp-ease);
	font-family: var(--lp-font);
	position: relative;
	overflow: hidden;
}
.mw-lp-btn--primary {
	background: linear-gradient(135deg, #DA7756 0%, #C4654A 33%, #E8926F 66%, #DA7756 100%);
	background-size: 300% auto;
	color: #fff;
	box-shadow: 0 4px 16px rgba(218,119,86,.3), 0 0 40px rgba(218,119,86,.08);
	animation: lp-btn-shimmer 4s ease-in-out infinite;
}
.mw-lp-btn--primary:hover {
	background-position: right center;
	box-shadow: 0 6px 28px rgba(218,119,86,.45), 0 0 60px rgba(218,119,86,.12);
	transform: translateY(-2px);
}
.mw-lp-btn--primary:active {
	transform: translateY(0);
}

@keyframes lp-btn-shimmer {
	0%   { background-position: 0% 50%; }
	50%  { background-position: 100% 50%; }
	100% { background-position: 0% 50%; }
}

.mw-lp-btn--ghost {
	background: rgba(218,119,86,.06);
	color: var(--lp-orange-dark);
	border: 1px solid rgba(218,119,86,.2);
}
.mw-lp-btn--ghost:hover {
	border-color: rgba(218,119,86,.4);
	background: rgba(218,119,86,.1);
	box-shadow: 0 0 30px rgba(218,119,86,.06);
}
.mw-lp-btn--nav {
	padding: 8px 20px;
	font-size: 14px;
	border-radius: 6px;
}

/* =========================================================
   Hero Section — Warm white with orange mesh gradients
   ========================================================= */

.mw-landing-hero {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 120px 24px 80px;
	position: relative;
	overflow: hidden;
	background: linear-gradient(180deg, var(--lp-cream) 0%, var(--lp-warm-white) 40%, var(--lp-orange-50) 100%);
}

/* Animated mesh gradient overlay — warm orange tones */
.mw-landing-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse 70% 50% at var(--lp-hero-x1) var(--lp-hero-y1), rgba(218,119,86,.15), transparent 60%),
		radial-gradient(ellipse 50% 60% at var(--lp-hero-x2) var(--lp-hero-y2), rgba(232,146,111,.12), transparent 60%),
		radial-gradient(ellipse 60% 40% at var(--lp-hero-x3) var(--lp-hero-y3), rgba(196,101,74,.08), transparent 60%),
		radial-gradient(ellipse 80% 80% at 50% 50%, rgba(250,229,218,.3), transparent 70%);
	animation: lp-hero-mesh 16s ease-in-out infinite alternate;
	pointer-events: none;
	z-index: 0;
}

/* Secondary soft glow layer */
.mw-landing-hero::after {
	content: '';
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle 500px at 20% 30%, rgba(218,119,86,.06), transparent),
		radial-gradient(circle 400px at 80% 70%, rgba(232,146,111,.05), transparent);
	pointer-events: none;
	z-index: 0;
}

@keyframes lp-hero-mesh {
	0%   { --lp-hero-x1: 25%; --lp-hero-y1: 15%; --lp-hero-x2: 75%; --lp-hero-y2: 55%; --lp-hero-x3: 45%; --lp-hero-y3: 85%; }
	25%  { --lp-hero-x1: 40%; --lp-hero-y1: 25%; --lp-hero-x2: 60%; --lp-hero-y2: 40%; --lp-hero-x3: 55%; --lp-hero-y3: 75%; }
	50%  { --lp-hero-x1: 30%; --lp-hero-y1: 35%; --lp-hero-x2: 70%; --lp-hero-y2: 65%; --lp-hero-x3: 40%; --lp-hero-y3: 60%; }
	75%  { --lp-hero-x1: 50%; --lp-hero-y1: 20%; --lp-hero-x2: 55%; --lp-hero-y2: 50%; --lp-hero-x3: 60%; --lp-hero-y3: 90%; }
	100% { --lp-hero-x1: 35%; --lp-hero-y1: 10%; --lp-hero-x2: 80%; --lp-hero-y2: 70%; --lp-hero-x3: 50%; --lp-hero-y3: 80%; }
}

.mw-landing-hero__content {
	max-width: 780px;
	position: relative;
	z-index: 2;
}

.mw-landing-hero__badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 16px;
	border-radius: 20px;
	background: rgba(218,119,86,.1);
	border: 1px solid rgba(218,119,86,.18);
	color: var(--lp-orange-dark);
	font-size: 13px;
	font-weight: 600;
	margin-bottom: 24px;
	backdrop-filter: blur(8px);
}

.mw-landing-hero h1 {
	font-size: 56px;
	font-weight: 800;
	line-height: 1.08;
	color: var(--lp-gray-900);
	margin: 0 0 20px;
	letter-spacing: -0.03em;
}
.mw-landing-hero h1 span {
	background: linear-gradient(135deg, #C4654A 0%, #DA7756 25%, #E8926F 50%, #DA7756 75%, #C4654A 100%);
	background-size: 300% auto;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	animation: lp-text-shimmer 5s ease-in-out infinite;
}

@keyframes lp-text-shimmer {
	0%   { background-position: 0% 50%; }
	50%  { background-position: 100% 50%; }
	100% { background-position: 0% 50%; }
}

.mw-landing-hero__subtitle {
	font-size: 19px;
	line-height: 1.65;
	color: var(--lp-gray-600);
	margin: 0 0 36px;
	max-width: 620px;
	margin-left: auto;
	margin-right: auto;
}

.mw-landing-hero__ctas {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	margin-bottom: 48px;
	flex-wrap: wrap;
}

.mw-landing-hero__trust {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 24px;
	flex-wrap: wrap;
}
.mw-landing-hero__trust-item {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 13px;
	color: var(--lp-gray-400);
}
.mw-landing-hero__trust-icon {
	width: 18px;
	height: 18px;
	color: var(--lp-orange);
}

/* =========================================================
   Section shared — warm gradient mesh backgrounds
   ========================================================= */

.mw-landing-section {
	padding: 100px 24px;
	position: relative;
	overflow: hidden;
}

/* Light sections — warm cream/orange mesh */
.mw-landing-section--white {
	background:
		radial-gradient(ellipse 60% 50% at var(--lp-mesh-x1) var(--lp-mesh-y1), rgba(218,119,86,.06), transparent 60%),
		radial-gradient(ellipse 50% 60% at var(--lp-mesh-x2) var(--lp-mesh-y2), rgba(232,146,111,.04), transparent 60%),
		radial-gradient(ellipse 70% 40% at var(--lp-mesh-x3) var(--lp-mesh-y3), rgba(250,229,218,.15), transparent 60%),
		linear-gradient(180deg, var(--lp-white) 0%, var(--lp-cream) 40%, var(--lp-orange-50) 70%, var(--lp-white) 100%);
	animation: lp-section-mesh 22s ease-in-out infinite alternate;
}

/* Gray sections — warmer orange tint */
.mw-landing-section--gray {
	background:
		radial-gradient(ellipse 60% 50% at var(--lp-mesh-x1) var(--lp-mesh-y1), rgba(218,119,86,.07), transparent 60%),
		radial-gradient(ellipse 50% 60% at var(--lp-mesh-x2) var(--lp-mesh-y2), rgba(196,101,74,.05), transparent 60%),
		radial-gradient(ellipse 70% 40% at var(--lp-mesh-x3) var(--lp-mesh-y3), rgba(250,229,218,.2), transparent 60%),
		linear-gradient(180deg, var(--lp-orange-50) 0%, var(--lp-warm-white) 30%, var(--lp-cream) 60%, var(--lp-orange-50) 100%);
	animation: lp-section-mesh 22s ease-in-out infinite alternate;
}

/* Dark accent sections — vibrant orange gradient (NOT black) */
.mw-landing-section--dark {
	background:
		radial-gradient(ellipse 60% 50% at var(--lp-cta-x1) var(--lp-cta-y1), rgba(255,255,255,.12), transparent 60%),
		radial-gradient(ellipse 50% 70% at var(--lp-cta-x2) var(--lp-cta-y2), rgba(196,101,74,.6), transparent 60%),
		radial-gradient(ellipse 80% 40% at 50% 100%, rgba(232,146,111,.3), transparent 60%),
		linear-gradient(135deg, #C4654A 0%, #DA7756 30%, #E8926F 60%, #DA7756 100%);
	color: var(--lp-white);
	animation: lp-cta-mesh 18s ease-in-out infinite alternate;
}

@keyframes lp-section-mesh {
	0%   { --lp-mesh-x1: 20%; --lp-mesh-y1: 10%; --lp-mesh-x2: 80%; --lp-mesh-y2: 70%; --lp-mesh-x3: 50%; --lp-mesh-y3: 90%; }
	33%  { --lp-mesh-x1: 35%; --lp-mesh-y1: 25%; --lp-mesh-x2: 65%; --lp-mesh-y2: 55%; --lp-mesh-x3: 45%; --lp-mesh-y3: 80%; }
	66%  { --lp-mesh-x1: 15%; --lp-mesh-y1: 35%; --lp-mesh-x2: 85%; --lp-mesh-y2: 45%; --lp-mesh-x3: 55%; --lp-mesh-y3: 70%; }
	100% { --lp-mesh-x1: 30%; --lp-mesh-y1: 5%;  --lp-mesh-x2: 70%; --lp-mesh-y2: 80%; --lp-mesh-x3: 40%; --lp-mesh-y3: 95%; }
}

@keyframes lp-cta-mesh {
	0%   { --lp-cta-x1: 20%; --lp-cta-y1: 30%; --lp-cta-x2: 80%; --lp-cta-y2: 70%; }
	50%  { --lp-cta-x1: 40%; --lp-cta-y1: 20%; --lp-cta-x2: 60%; --lp-cta-y2: 50%; }
	100% { --lp-cta-x1: 25%; --lp-cta-y1: 40%; --lp-cta-x2: 75%; --lp-cta-y2: 65%; }
}

.mw-landing-section__inner {
	max-width: var(--lp-max-w);
	margin: 0 auto;
	position: relative;
	z-index: 1;
}
.mw-landing-section__header {
	text-align: center;
	max-width: 640px;
	margin: 0 auto 56px;
}
.mw-landing-section__header h2 {
	font-size: 38px;
	font-weight: 800;
	margin: 0 0 14px;
	letter-spacing: -0.02em;
	color: var(--lp-gray-900);
}
.mw-landing-section--dark .mw-landing-section__header h2 { color: var(--lp-white); }
.mw-landing-section__header p {
	font-size: 17px;
	line-height: 1.65;
	color: var(--lp-gray-600);
	margin: 0;
}
.mw-landing-section--dark .mw-landing-section__header p { color: rgba(255,255,255,.75); }

/* =========================================================
   Features Grid — Glassmorphism cards on warm bg
   ========================================================= */

.mw-landing-features {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.mw-landing-feature-card {
	background: linear-gradient(135deg, rgba(255,255,255,.75) 0%, rgba(255,255,255,.55) 100%);
	backdrop-filter: blur(var(--lp-glass-blur));
	-webkit-backdrop-filter: blur(var(--lp-glass-blur));
	border: 1px solid rgba(218,119,86,.08);
	border-radius: var(--lp-radius);
	padding: 32px 28px;
	transition: box-shadow 0.4s var(--lp-ease), border-color 0.3s;
	position: relative;
	overflow: hidden;
	transform-style: preserve-3d;
	will-change: transform;
}

/* Gradient border glow on hover */
.mw-landing-feature-card::before {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: var(--lp-radius);
	padding: 1px;
	background: linear-gradient(135deg, rgba(218,119,86,.3), rgba(232,146,111,.15) 40%, transparent 60%, rgba(218,119,86,.2));
	-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	opacity: 0;
	transition: opacity 0.4s;
	pointer-events: none;
}
.mw-landing-feature-card:hover::before {
	opacity: 1;
}

.mw-landing-feature-card:hover {
	box-shadow: 0 16px 48px rgba(218,119,86,.08), 0 0 60px rgba(218,119,86,.04);
	border-color: rgba(218,119,86,.15);
}

/* Interactive class applied by JS during 3D tilt */
.mw-landing-feature-card.lp-card--interactive {
	box-shadow: 0 20px 60px rgba(218,119,86,.1), 0 0 80px rgba(218,119,86,.06) !important;
	border-color: rgba(218,119,86,.25) !important;
}

.mw-landing-feature-card__icon {
	width: 52px;
	height: 52px;
	border-radius: 14px;
	background: linear-gradient(135deg, rgba(218,119,86,.15), rgba(232,146,111,.08));
	border: 1px solid rgba(218,119,86,.12);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 18px;
	color: var(--lp-orange);
	transition: box-shadow 0.3s, transform 0.3s;
}
.mw-landing-feature-card:hover .mw-landing-feature-card__icon {
	box-shadow: 0 4px 20px rgba(218,119,86,.2);
	transform: scale(1.05);
}
.mw-landing-feature-card__icon svg { width: 24px; height: 24px; }
.mw-landing-feature-card h3 {
	font-size: 18px;
	font-weight: 700;
	margin: 0 0 8px;
	color: var(--lp-gray-900);
}
.mw-landing-feature-card p {
	font-size: 15px;
	line-height: 1.65;
	color: var(--lp-gray-600);
	margin: 0;
}

/* =========================================================
   How It Works (Steps) — Orange connector
   ========================================================= */

.mw-landing-steps {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
	position: relative;
}

/* Animated connector line — orange gradient */
.mw-landing-steps::before {
	content: '';
	position: absolute;
	top: 32px;
	left: calc(16.66% + 24px);
	right: calc(16.66% + 24px);
	height: 2px;
	background: linear-gradient(90deg, rgba(218,119,86,.1), rgba(218,119,86,.3), rgba(218,119,86,.1));
	background-size: 200% auto;
	animation: lp-connector-shimmer 4s ease-in-out infinite;
}

@keyframes lp-connector-shimmer {
	0%   { background-position: 0% 50%; }
	50%  { background-position: 100% 50%; }
	100% { background-position: 0% 50%; }
}

.mw-landing-step {
	text-align: center;
	position: relative;
}
.mw-landing-step__number {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: linear-gradient(135deg, #DA7756 0%, #C4654A 50%, #E8926F 100%);
	background-size: 200% auto;
	color: #fff;
	font-size: 24px;
	font-weight: 800;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
	position: relative;
	z-index: 1;
	box-shadow: 0 6px 24px rgba(218,119,86,.3), 0 0 40px rgba(218,119,86,.08);
	animation: lp-step-glow 4s ease-in-out infinite alternate;
}

@keyframes lp-step-glow {
	0%   { box-shadow: 0 6px 24px rgba(218,119,86,.25), 0 0 40px rgba(218,119,86,.06); }
	100% { box-shadow: 0 8px 32px rgba(218,119,86,.4), 0 0 60px rgba(218,119,86,.12); }
}

.mw-landing-step h3 {
	font-size: 18px;
	font-weight: 700;
	margin: 0 0 8px;
	color: var(--lp-gray-900);
}
.mw-landing-step p {
	font-size: 15px;
	line-height: 1.65;
	color: var(--lp-gray-600);
	margin: 0;
}

/* =========================================================
   CTA Banner — Vibrant orange gradient (no black!)
   ========================================================= */

.mw-landing-cta-section {
	text-align: center;
	padding: 100px 24px;
}
.mw-landing-cta-section h2 {
	font-size: 40px;
	font-weight: 800;
	margin: 0 0 16px;
	letter-spacing: -0.02em;
	color: var(--lp-white);
}
.mw-landing-cta-section p {
	font-size: 17px;
	color: rgba(255,255,255,.8);
	margin: 0 0 36px;
	max-width: 520px;
	margin-left: auto;
	margin-right: auto;
	line-height: 1.65;
}

/* White button on orange CTA */
.mw-landing-cta-section .mw-lp-btn--primary {
	background: var(--lp-white);
	color: var(--lp-orange-dark);
	box-shadow: 0 4px 16px rgba(0,0,0,.1), 0 0 40px rgba(255,255,255,.1);
	animation: none;
}
.mw-landing-cta-section .mw-lp-btn--primary:hover {
	box-shadow: 0 8px 32px rgba(0,0,0,.15), 0 0 60px rgba(255,255,255,.15);
	transform: translateY(-2px);
}

/* =========================================================
   Footer — Warm dark with orange tint (NOT pure black)
   ========================================================= */

.mw-landing-footer {
	background:
		radial-gradient(ellipse 50% 50% at 10% 90%, rgba(218,119,86,.06), transparent 60%),
		radial-gradient(ellipse 40% 40% at 90% 10%, rgba(196,101,74,.04), transparent 60%),
		linear-gradient(180deg, #1F1810 0%, #18120A 100%);
	padding: 72px 24px 32px;
	color: rgba(255,255,255,.5);
	position: relative;
}

/* Top gradient border — orange */
.mw-landing-footer::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(218,119,86,.3), rgba(218,119,86,.5), rgba(218,119,86,.3), transparent);
}

.mw-landing-footer__inner {
	max-width: var(--lp-max-w);
	margin: 0 auto;
}
.mw-landing-footer__grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 40px;
	margin-bottom: 40px;
}
.mw-landing-footer__brand {
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.mw-landing-footer__logo {
	font-size: 20px;
	font-weight: 800;
	letter-spacing: -.4px;
	color: var(--lp-white);
	display: flex;
	align-items: center;
	gap: 0;
}
.mw-landing-footer__tagline {
	font-size: 14px;
	line-height: 1.65;
	color: rgba(255,255,255,.4);
}
.mw-landing-footer__col h4 {
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .05em;
	color: rgba(255,255,255,.65);
	margin: 0 0 16px;
}
.mw-landing-footer__col ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.mw-landing-footer__col li { margin-bottom: 10px; }
.mw-landing-footer__col a {
	color: rgba(255,255,255,.4);
	text-decoration: none;
	font-size: 14px;
	transition: color 0.2s;
}
.mw-landing-footer__col a:hover { color: var(--lp-orange); }

.mw-landing-footer__social {
	display: flex;
	gap: 12px;
	margin-top: 16px;
}
.mw-landing-footer__social a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 8px;
	background: rgba(255,255,255,.06);
	color: rgba(255,255,255,.5);
	transition: background .2s, color .2s;
}
.mw-landing-footer__social a:hover {
	background: rgba(218,119,86,.2);
	color: #DA7756;
}
.mw-landing-footer__bottom {
	border-top: 1px solid rgba(218,119,86,.08);
	padding-top: 24px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 13px;
	color: rgba(255,255,255,.3);
}
.mw-landing-footer__bottom-right {
	font-size: 13px;
}
@media (max-width: 768px) {
	.mw-landing-footer__bottom {
		flex-direction: column;
		gap: 8px;
		text-align: center;
	}
}

/* =========================================================
   Pricing — 3-column card grid
   ========================================================= */

.mw-landing-pricing {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	align-items: start;
}

.mw-landing-pricing-card {
	background: linear-gradient(135deg, rgba(255,255,255,.8) 0%, rgba(255,255,255,.6) 100%);
	backdrop-filter: blur(var(--lp-glass-blur));
	-webkit-backdrop-filter: blur(var(--lp-glass-blur));
	border: 1px solid rgba(218,119,86,.08);
	border-radius: var(--lp-radius);
	padding: 36px 28px;
	position: relative;
	transition: box-shadow 0.4s var(--lp-ease), transform 0.4s var(--lp-ease), border-color 0.3s;
	display: flex;
	flex-direction: column;
}
.mw-landing-pricing-card:hover {
	box-shadow: 0 16px 48px rgba(218,119,86,.08), 0 0 60px rgba(218,119,86,.04);
	transform: translateY(-4px);
}

/* Popular card — orange border accent */
.mw-landing-pricing-card--popular {
	border-color: var(--lp-orange);
	border-width: 2px;
	box-shadow: 0 8px 32px rgba(218,119,86,.12);
}
.mw-landing-pricing-card--popular:hover {
	box-shadow: 0 20px 56px rgba(218,119,86,.16), 0 0 80px rgba(218,119,86,.06);
}

/* Badge */
.mw-landing-pricing-card__badge {
	position: absolute;
	top: -13px;
	left: 50%;
	transform: translateX(-50%);
	background: linear-gradient(135deg, #DA7756, #C4654A);
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	padding: 4px 16px;
	border-radius: 20px;
	white-space: nowrap;
	box-shadow: 0 2px 12px rgba(218,119,86,.35);
	letter-spacing: .02em;
}

/* Header */
.mw-landing-pricing-card__header {
	text-align: center;
	margin-bottom: 28px;
}
.mw-landing-pricing-card__header h3 {
	font-size: 20px;
	font-weight: 700;
	color: var(--lp-gray-900);
	margin: 0 0 8px;
}
.mw-landing-pricing-card__price {
	display: flex;
	align-items: baseline;
	justify-content: center;
	gap: 2px;
}
.mw-landing-pricing-card__amount {
	font-size: 42px;
	font-weight: 800;
	color: var(--lp-gray-900);
	letter-spacing: -0.03em;
	line-height: 1;
}
.mw-landing-pricing-card__period {
	font-size: 16px;
	font-weight: 500;
	color: var(--lp-gray-400);
}
.mw-landing-pricing-card__desc {
	font-size: 14px;
	color: var(--lp-text-muted);
	margin-bottom: 12px;
}
.mw-landing-pricing-card__annual {
	font-size: 13px;
	color: var(--lp-text-muted);
	margin-top: 4px;
}
.mw-landing-pricing-card__founding {
	display: flex;
	align-items: center;
	gap: 6px;
	justify-content: center;
	font-size: 13px;
	color: var(--lp-text-muted);
	margin-top: 12px;
	padding-top: 12px;
	border-top: 1px solid rgba(218,119,86,.15);
}
.mw-landing-pricing-card__founding strong {
	color: var(--lp-orange);
}

/* Feature list */
.mw-landing-pricing-card__features {
	list-style: none;
	padding: 0;
	margin: 0 0 28px;
	flex: 1;
}
.mw-landing-pricing-card__features li {
	padding: 8px 0;
	font-size: 15px;
	color: var(--lp-gray-600);
	border-bottom: 1px solid rgba(218,119,86,.06);
	position: relative;
	padding-left: 24px;
}
.mw-landing-pricing-card__features li:last-child {
	border-bottom: none;
}
.mw-landing-pricing-card__features li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 12px;
	width: 14px;
	height: 14px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23DA7756' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
	background-size: contain;
	background-repeat: no-repeat;
}

/* Pricing CTA button */
.mw-lp-btn--pricing {
	width: 100%;
	text-align: center;
	justify-content: center;
}

/* Beta note */
.mw-landing-pricing__note {
	text-align: center;
	font-size: 14px;
	color: var(--lp-gray-400);
	margin: 32px 0 0;
	font-style: italic;
}

/* =========================================================
   Waitlist Form
   ========================================================= */

.mw-landing-waitlist {
	max-width: 560px;
	margin: 0 auto;
}

.mw-landing-waitlist__fields {
	display: grid;
	gap: 20px;
	margin-bottom: 24px;
}

.mw-landing-waitlist__field label {
	display: block;
	font-size: 14px;
	font-weight: 600;
	color: var(--lp-gray-700);
	margin-bottom: 6px;
}
.mw-landing-waitlist__field label span {
	color: var(--lp-orange);
}

.mw-landing-waitlist__field input,
.mw-landing-waitlist__field select {
	width: 100%;
	padding: 12px 16px;
	border: 1px solid var(--lp-gray-200);
	border-radius: 8px;
	font-size: 15px;
	font-family: var(--lp-font);
	color: var(--lp-gray-800);
	background: var(--lp-white);
	transition: border-color 0.2s, box-shadow 0.2s;
	appearance: none;
	-webkit-appearance: none;
}
.mw-landing-waitlist__field input:focus,
.mw-landing-waitlist__field select:focus {
	outline: none;
	border-color: var(--lp-orange);
	box-shadow: 0 0 0 3px rgba(218,119,86,.12);
}
.mw-landing-waitlist__field input::placeholder {
	color: var(--lp-gray-300);
}

/* Select arrow */
.mw-landing-waitlist__field select {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%239C9589' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 14px center;
	padding-right: 40px;
}

/* Submit button */
.mw-lp-btn--waitlist {
	width: 100%;
	text-align: center;
	justify-content: center;
	padding: 14px 28px;
	font-size: 16px;
}
.mw-lp-btn--waitlist:disabled {
	opacity: 0.7;
	cursor: not-allowed;
}

/* Messages */
.mw-landing-waitlist__message {
	text-align: center;
	font-size: 15px;
	margin-top: 16px;
	min-height: 24px;
}
.mw-landing-waitlist__message--success {
	color: #2e7d32;
	font-weight: 600;
}
.mw-landing-waitlist__message--error {
	color: #c62828;
	font-weight: 500;
}

/* Beta pill in hero badge */
.mw-landing-hero__beta-pill {
	display: inline-block;
	padding: 2px 10px;
	border-radius: 10px;
	background: linear-gradient(135deg, #DA7756, #e8956e);
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	line-height: 1.4;
}
.mw-landing-hero__badge--beta {
	font-weight: 600;
}

/* Waitlist perks */
.mw-landing-waitlist__perks {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	max-width: 800px;
	margin: 0 auto 40px;
}
.mw-landing-waitlist__perk {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	text-align: left;
}
.mw-landing-waitlist__perk svg {
	flex-shrink: 0;
	margin-top: 2px;
}
.mw-landing-waitlist__perk strong {
	display: block;
	font-size: 15px;
	color: var(--lp-text);
	margin-bottom: 2px;
}
.mw-landing-waitlist__perk span {
	font-size: 13px;
	color: var(--lp-text-muted);
	line-height: 1.4;
}
.mw-landing-waitlist__note {
	text-align: center;
	font-size: 13px;
	color: var(--lp-text-muted);
	margin-top: 12px;
}
.mw-landing-waitlist__invite-link {
	text-align: center;
	font-size: 14px;
	color: var(--lp-text-muted);
	margin-top: 20px;
}
.mw-landing-waitlist__invite-link a {
	color: var(--lp-orange);
	font-weight: 600;
	text-decoration: none;
}
.mw-landing-waitlist__invite-link a:hover {
	text-decoration: underline;
}
@media (max-width: 768px) {
	.mw-landing-waitlist__perks {
		grid-template-columns: 1fr;
		gap: 16px;
	}
}

/* =========================================================
   Scroll animations — enhanced
   ========================================================= */

.mw-animate {
	opacity: 0.15;
	transform: translateY(20px) scale(0.98);
	transition: opacity 0.6s var(--lp-ease), transform 0.6s var(--lp-ease), filter 0.6s var(--lp-ease);
	filter: blur(2px);
}
.mw-animate.mw-visible {
	opacity: 1;
	transform: translateY(0) scale(1);
	filter: blur(0);
}
/* Stagger delays */
.mw-animate-d1 { transition-delay: 0.05s; }
.mw-animate-d2 { transition-delay: 0.12s; }
.mw-animate-d3 { transition-delay: 0.19s; }
.mw-animate-d4 { transition-delay: 0.26s; }
.mw-animate-d5 { transition-delay: 0.33s; }
.mw-animate-d6 { transition-delay: 0.40s; }

/* Section headers — slide up + fade */
.mw-landing-section__header {
	opacity: 0.15;
	transform: translateY(14px);
	transition: opacity 0.6s var(--lp-ease), transform 0.6s var(--lp-ease);
}
.mw-landing-section__header.mw-visible {
	opacity: 1;
	transform: translateY(0);
}

/* =========================================================
   Hero canvas (particle layer — managed by JS)
   ========================================================= */

.mw-landing-hero__canvas {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 1;
}

/* Allow click-through for ripple effect but keep CTA clickable */
.mw-landing-hero { cursor: default; }
.mw-landing-hero__content { pointer-events: auto; position: relative; z-index: 2; }
.mw-landing-hero__content a,
.mw-landing-hero__content button { pointer-events: auto; }

/* =========================================================
   Responsive
   ========================================================= */

@media (max-width: 1024px) {
	.mw-landing-hero h1 { font-size: 44px; }
	.mw-landing-section__header h2 { font-size: 32px; }
	.mw-landing-features { grid-template-columns: repeat(2, 1fr); }
	.mw-landing-pricing-card__amount { font-size: 36px; }
}

@media (max-width: 768px) {
	/* Nav */
	.mw-landing-hamburger { display: flex; }
	.mw-landing-nav__links,
	.mw-landing-nav__actions .mw-landing-nav__login {
		display: none;
	}
	.mw-landing-nav--open .mw-landing-nav__links {
		display: flex;
		flex-direction: column;
		position: absolute;
		top: 72px;
		left: 0;
		right: 0;
		background: rgba(253,245,240,.95);
		backdrop-filter: blur(16px);
		-webkit-backdrop-filter: blur(16px);
		padding: 16px 24px 24px;
		gap: 12px;
		box-shadow: 0 8px 32px rgba(218,119,86,.08);
		border-bottom: 1px solid rgba(218,119,86,.06);
	}
	.mw-landing-nav--open .mw-landing-nav__links a { color: var(--lp-gray-600); }
	.mw-landing-nav--open .mw-landing-nav__login {
		display: block;
		color: var(--lp-gray-600);
	}

	/* Hero */
	.mw-landing-hero { min-height: auto; padding: 120px 24px 64px; }
	.mw-landing-hero h1 { font-size: 36px; }
	.mw-landing-hero__subtitle { font-size: 16px; }

	/* Features */
	.mw-landing-features { grid-template-columns: 1fr; }

	/* Steps */
	.mw-landing-steps { grid-template-columns: 1fr; gap: 32px; }
	.mw-landing-steps::before { display: none; }

	/* Pricing */
	.mw-landing-pricing { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }

	/* Footer */
	.mw-landing-footer__grid { grid-template-columns: 1fr 1fr; }

	/* CTA */
	.mw-landing-cta-section h2 { font-size: 30px; }

	/* Disable heavy animations on mobile */
	.mw-landing-hero::before { animation: none; }
}

@media (max-width: 480px) {
	.mw-landing-hero h1 { font-size: 28px; line-height: 1.2; }
	.mw-landing-hero__subtitle { font-size: 15px; }
	.mw-landing-hero__ctas { flex-direction: column; width: 100%; }
	.mw-landing-hero__ctas .mw-lp-btn--primary,
	.mw-landing-hero__ctas .mw-lp-btn--ghost { width: 100%; text-align: center; justify-content: center; }
	.mw-landing-footer__grid { grid-template-columns: 1fr; }
	.mw-landing-section { padding: 48px 16px; }
	.mw-landing-section__header h2 { font-size: 24px; }
	.mw-landing-section__header p { font-size: 14px; }
	.mw-landing-feature-card { padding: 24px 20px; }
	.mw-landing-cta-section { padding: 48px 20px; }
	.mw-landing-cta-section h2 { font-size: 24px; }
	.mw-landing-cta-section p { font-size: 15px; }
	.mw-landing-nav__logo img { height: 28px; }
	.mw-landing-nav { padding: 0 16px; height: 60px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
	.mw-landing-hero::before,
	.mw-landing-section--white,
	.mw-landing-section--gray,
	.mw-landing-section--dark,
	.mw-lp-btn--primary,
	.mw-landing-hero h1 span,
	.mw-landing-steps::before,
	.mw-landing-step__number {
		animation: none !important;
	}
	.mw-animate {
		opacity: 1;
		transform: none;
		filter: none;
		transition: none;
	}
}
