/* ==========================================================================
   Motherlod Landing Page Styles — V2
   Brand: #064E3B (dark), #10B981 (accent emerald), #F8F6F2 (warm bg)
   Fonts: Bricolage Grotesque (headings), Lato (body)
   ========================================================================== */

:root {
	--ov-dark: #064E3B;
	--ov-dark-hover: #065F46;
	--ov-emerald: #10B981;
	--ov-emerald-dark: #059669;
	--ov-emerald-light: #34D399;
	--ov-bg: #F8F6F2;
	--ov-white: #ffffff;
	--ov-border: #E8E4DD;
	--ov-border-light: #F0EDE8;
	--ov-muted: #9A9589;
	--ov-text: #5A6478;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
	background: var(--ov-bg);
	color: var(--ov-dark);
	font-family: 'Lato', sans-serif;
	-webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }

/* ---- Animations ---- */
@keyframes fadeUp {
	from { opacity: 0; transform: translateY(24px); }
	to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
	0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(16,185,129,.4); }
	50% { opacity: .7; box-shadow: 0 0 0 6px rgba(16,185,129,0); }
}
@keyframes float {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-8px); }
}
.fade-1 { animation: fadeUp .6s ease both .05s; }
.fade-2 { animation: fadeUp .6s ease both .15s; }
.fade-3 { animation: fadeUp .6s ease both .25s; }
.fade-4 { animation: fadeUp .6s ease both .35s; }
.fade-5 { animation: fadeUp .6s ease both .45s; }

/* ---- Container ---- */
.ov-container {
	max-width: 1200px;
	margin: 0 auto;
	padding-left: 48px;
	padding-right: 48px;
}

/* ---- Typography ---- */
.ov-heading {
	font-family: 'Bricolage Grotesque', sans-serif;
	font-weight: 700;
	color: var(--ov-dark);
	letter-spacing: -.025em;
}
.ov-section-label {
	font-family: 'Lato', sans-serif;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--ov-muted);
	margin-bottom: 12px;
}

/* ---- Tag ---- */
.ov-tag {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: linear-gradient(135deg, #ECFDF5, #D1FAE5);
	color: var(--ov-emerald-dark);
	font-family: 'Lato', sans-serif;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .05em;
	text-transform: uppercase;
	padding: 7px 16px;
	border-radius: 100px;
	border: 1px solid rgba(16,185,129,.15);
}
.ov-tag-dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--ov-emerald);
	animation: pulse 2s ease infinite;
}

/* ---- Buttons ---- */
.ov-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: 'Bricolage Grotesque', sans-serif;
	font-weight: 600;
	border-radius: 12px;
	border: none;
	cursor: pointer;
	transition: all .25s;
}
.ov-btn-main {
	background: var(--ov-dark);
	color: var(--ov-white);
}
.ov-btn-main:hover {
	background: var(--ov-dark-hover);
	transform: translateY(-1px);
	box-shadow: 0 4px 16px rgba(6,78,59,.2);
}
.ov-btn-ghost {
	background: transparent;
	color: var(--ov-dark);
	border: 1.5px solid #D8D4CC;
}
.ov-btn-ghost:hover {
	border-color: var(--ov-dark);
	background: var(--ov-white);
	transform: translateY(-1px);
}
.ov-btn-green {
	background: var(--ov-emerald);
	color: var(--ov-white);
}
.ov-btn-green:hover {
	background: var(--ov-emerald-dark);
	transform: translateY(-1px);
	box-shadow: 0 4px 16px rgba(16,185,129,.25);
}
.ov-btn-sm {
	font-size: 14px;
	padding: 10px 20px;
}
.ov-btn-md {
	font-size: 15px;
	padding: 14px 28px;
}

/* ---- Cards ---- */
.ov-card {
	background: var(--ov-white);
	border-radius: 16px;
	border: 1px solid var(--ov-border);
	transition: box-shadow .3s, transform .3s;
}
.ov-card:hover {
	box-shadow: 0 8px 32px rgba(6,78,59,.07);
	transform: translateY(-3px);
}

/* ======================================================
   NAV
   ====================================================== */
.ov-nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	padding: 0 48px;
	height: 64px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	transition: all .3s ease;
	background: transparent;
	border-bottom: 1px solid transparent;
}
.ov-nav.scrolled {
	background: rgba(248,246,242,.92);
	backdrop-filter: blur(12px);
	border-bottom-color: var(--ov-border);
}
.ov-nav-brand {
	display: flex;
	align-items: center;
	gap: 10px;
}
.ov-nav-brand span {
	font-family: 'Bricolage Grotesque', sans-serif;
	font-weight: 700;
	font-size: 20px;
	color: var(--ov-dark);
}
.ov-nav-links {
	display: flex;
	gap: 32px;
}
.ov-nav-link {
	font-family: 'Lato', sans-serif;
	font-size: 14px;
	color: var(--ov-text);
	transition: color .2s;
}
.ov-nav-link:hover { color: var(--ov-dark); }
.ov-nav-actions { display: flex; gap: 10px; }

/* ======================================================
   HERO
   ====================================================== */
.ov-hero {
	padding: 140px 0 110px;
	display: grid;
	grid-template-columns: 1fr 420px;
	gap: 64px;
	align-items: center;
}
.ov-hero h1 {
	font-family: 'Bricolage Grotesque', sans-serif;
	font-weight: 800;
	font-size: 54px;
	line-height: 1.08;
	letter-spacing: -.03em;
	color: var(--ov-dark);
	margin-bottom: 24px;
}
.ov-hero h1 .accent {
	background: linear-gradient(135deg, var(--ov-emerald), var(--ov-emerald-dark));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}
.ov-hero-desc {
	font-size: 18px;
	color: var(--ov-text);
	line-height: 1.7;
	max-width: 480px;
	margin-bottom: 40px;
}
.ov-hero-desc strong {
	color: var(--ov-dark);
	font-weight: 700;
}
.ov-hero-buttons {
	display: flex;
	gap: 14px;
	margin-bottom: 36px;
	flex-wrap: wrap;
}
.ov-hero-checks {
	display: flex;
	gap: 24px;
	flex-wrap: wrap;
}
.ov-hero-check {
	display: flex;
	align-items: center;
	gap: 7px;
	font-size: 13px;
	color: var(--ov-muted);
}

/* ---- Invoice card ---- */
.ov-hero-visual { position: relative; }
.ov-invoice {
	background: var(--ov-white);
	border-radius: 16px;
	border: 1px solid var(--ov-border);
	padding: 28px;
	box-shadow:
		0 1px 2px rgba(0,0,0,.04),
		0 8px 24px rgba(6,78,59,.06),
		0 24px 48px rgba(6,78,59,.04);
	position: relative;
}
.ov-invoice::before {
	content: '';
	position: absolute;
	top: -1px; left: -1px; right: -1px;
	height: 4px;
	background: linear-gradient(90deg, var(--ov-emerald), var(--ov-emerald-light));
	border-radius: 16px 16px 0 0;
}
.ov-invoice-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 20px;
}
.ov-invoice-ref {
	font-family: 'Bricolage Grotesque', sans-serif;
	font-weight: 700;
	font-size: 17px;
	color: var(--ov-dark);
}
.ov-invoice-date { font-size: 12px; color: var(--ov-muted); margin-top: 2px; }
.ov-status-badge {
	font-family: 'Lato', sans-serif;
	font-size: 11px;
	font-weight: 700;
	padding: 5px 12px;
	border-radius: 100px;
	background: #ECFDF5;
	color: var(--ov-emerald-dark);
	display: flex;
	align-items: center;
	gap: 4px;
}
.ov-invoice-client {
	background: var(--ov-bg);
	border-radius: 10px;
	padding: 14px 16px;
	margin-bottom: 18px;
}
.ov-invoice-client-label { font-size: 11px; color: var(--ov-muted); margin-bottom: 3px; }
.ov-invoice-client-name {
	font-family: 'Bricolage Grotesque', sans-serif;
	font-weight: 600;
	font-size: 14px;
	color: var(--ov-dark);
}
.ov-invoice-row {
	display: flex;
	justify-content: space-between;
	padding: 11px 0;
	border-bottom: 1px solid var(--ov-border-light);
	font-family: 'Lato', sans-serif;
	font-size: 13px;
}
.ov-invoice-row:last-of-type { border-bottom: none; }
.ov-invoice-row-label { color: var(--ov-text); }
.ov-invoice-row-amount { font-weight: 700; color: var(--ov-dark); }
.ov-invoice-totals {
	margin-top: 16px;
	padding-top: 16px;
	border-top: 2px solid var(--ov-border);
}
.ov-invoice-total-row {
	display: flex;
	justify-content: space-between;
	font-family: 'Lato', sans-serif;
	font-size: 13px;
	margin-bottom: 4px;
}
.ov-invoice-total-row .label { color: var(--ov-muted); }
.ov-invoice-total-row .value { color: var(--ov-text); }
.ov-invoice-total-final {
	display: flex;
	justify-content: space-between;
	margin-top: 12px;
	padding-top: 12px;
	border-top: 1px solid var(--ov-border-light);
}
.ov-invoice-total-final .label {
	font-family: 'Bricolage Grotesque', sans-serif;
	font-weight: 700;
	font-size: 15px;
	color: var(--ov-dark);
}
.ov-invoice-total-final .value {
	font-family: 'Bricolage Grotesque', sans-serif;
	font-weight: 700;
	font-size: 20px;
	color: var(--ov-emerald);
}
.ov-invoice-note {
	margin-top: 16px;
	padding: 10px 14px;
	background: linear-gradient(135deg, #ECFDF5, #D1FAE5);
	border-radius: 10px;
	display: flex;
	align-items: center;
	gap: 8px;
	font-family: 'Lato', sans-serif;
	font-size: 11px;
	color: var(--ov-emerald-dark);
}

/* Floating badges */
.ov-float-badge {
	position: absolute;
	background: var(--ov-white);
	border-radius: 12px;
	padding: 10px 14px;
	box-shadow: 0 4px 20px rgba(0,0,0,.08);
	border: 1px solid var(--ov-border);
	font-family: 'Lato', sans-serif;
	font-size: 12px;
	font-weight: 600;
	color: var(--ov-dark);
	display: flex;
	align-items: center;
	gap: 8px;
	z-index: 2;
}
.ov-float-badge--top {
	top: -16px;
	right: -24px;
	animation: float 3s ease-in-out infinite;
}
.ov-float-badge--bottom {
	bottom: 32px;
	left: -32px;
	animation: float 3s ease-in-out infinite 1.5s;
}

/* ======================================================
   REFORM BANNER
   ====================================================== */
.ov-banner {
	background: var(--ov-dark);
	padding: 32px 48px;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 24px;
	flex-wrap: wrap;
}
.ov-banner-icon {
	width: 48px;
	height: 48px;
	border-radius: 12px;
	background: rgba(16,185,129,.15);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}
.ov-banner-text { flex: 1; min-width: 280px; }
.ov-banner-title {
	font-family: 'Bricolage Grotesque', sans-serif;
	font-weight: 700;
	font-size: 17px;
	color: var(--ov-white);
	margin-bottom: 4px;
}
.ov-banner-desc {
	font-family: 'Lato', sans-serif;
	font-size: 14px;
	color: #8AC0A8;
	line-height: 1.6;
}

/* ======================================================
   FEATURES
   ====================================================== */
.ov-features {
	padding: 100px 0;
}
.ov-features-header {
	text-align: center;
	margin-bottom: 56px;
}
.ov-features-header h2 {
	font-size: 38px;
	line-height: 1.15;
}
.ov-features-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}
.ov-feature-card {
	padding: 28px;
}
.ov-feature-icon {
	width: 48px;
	height: 48px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 18px;
	flex-shrink: 0;
}
.ov-feature-title {
	font-family: 'Bricolage Grotesque', sans-serif;
	font-weight: 700;
	font-size: 17px;
	color: var(--ov-dark);
	margin-bottom: 10px;
}
.ov-feature-desc {
	font-family: 'Lato', sans-serif;
	font-size: 14px;
	color: var(--ov-text);
	line-height: 1.7;
}

/* ======================================================
   HOW IT WORKS
   ====================================================== */
.ov-how {
	background: var(--ov-white);
	border-top: 1px solid var(--ov-border);
	border-bottom: 1px solid var(--ov-border);
}
.ov-how-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
	padding: 100px 0;
}
.ov-how h2 {
	font-size: 36px;
	line-height: 1.15;
	margin-bottom: 40px;
}
.ov-steps {
	display: flex;
	flex-direction: column;
	gap: 28px;
}
.ov-step {
	display: flex;
	gap: 18px;
	align-items: flex-start;
}
.ov-step-num {
	width: 36px;
	height: 36px;
	border-radius: 10px;
	flex-shrink: 0;
	background: linear-gradient(135deg, #ECFDF5, #D1FAE5);
	color: var(--ov-emerald-dark);
	font-family: 'Bricolage Grotesque', sans-serif;
	font-size: 14px;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(16,185,129,.15);
}
.ov-step-title {
	font-family: 'Bricolage Grotesque', sans-serif;
	font-weight: 600;
	font-size: 16px;
	color: var(--ov-dark);
	margin-bottom: 4px;
}
.ov-step-desc {
	font-family: 'Lato', sans-serif;
	font-size: 14px;
	color: var(--ov-text);
	line-height: 1.65;
}

/* ---- Mini dashboard ---- */
.ov-mini-dashboard {
	padding: 28px;
	pointer-events: none;
	position: relative;
}
.ov-mini-dashboard::before {
	content: '';
	position: absolute;
	top: -1px; left: -1px; right: -1px;
	height: 4px;
	background: linear-gradient(90deg, var(--ov-emerald), var(--ov-emerald-light));
	border-radius: 16px 16px 0 0;
}
.ov-mini-dashboard-title {
	font-family: 'Bricolage Grotesque', sans-serif;
	font-weight: 700;
	font-size: 16px;
	color: var(--ov-dark);
	margin-bottom: 22px;
	display: flex;
	align-items: center;
	gap: 8px;
}
.ov-mini-dashboard-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--ov-emerald);
	animation: pulse 2s ease infinite;
}
.ov-mini-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 14px 0;
	border-bottom: 1px solid var(--ov-border-light);
}
.ov-mini-row:last-child { border-bottom: none; }
.ov-mini-row-label {
	font-family: 'Lato', sans-serif;
	font-size: 13px;
	color: var(--ov-text);
}
.ov-mini-row-value {
	font-family: 'Bricolage Grotesque', sans-serif;
	font-weight: 700;
	font-size: 18px;
	color: var(--ov-dark);
}
.ov-mini-row-sub {
	font-family: 'Lato', sans-serif;
	font-size: 11px;
	margin-top: 2px;
}
.ov-mini-row-sub--positive { color: var(--ov-emerald-dark); }
.ov-mini-row-sub--neutral { color: var(--ov-muted); }

/* ======================================================
   CTA
   ====================================================== */
.ov-cta {
	padding: 110px 0;
	text-align: center;
}
.ov-cta-inner {
	max-width: 680px;
	margin: 0 auto;
}
.ov-cta h2 {
	font-size: 40px;
	line-height: 1.12;
	margin-bottom: 18px;
}
.ov-cta p {
	font-family: 'Lato', sans-serif;
	font-size: 17px;
	color: var(--ov-text);
	line-height: 1.7;
	margin-bottom: 40px;
}
.ov-cta-actions {
	display: flex;
	gap: 14px;
	justify-content: center;
	margin-bottom: 28px;
	flex-wrap: wrap;
}
.ov-cta-note {
	font-family: 'Lato', sans-serif;
	font-size: 13px;
	color: #B0ABA6;
}

/* ======================================================
   FOOTER
   ====================================================== */
.ov-footer {
	border-top: 1px solid var(--ov-border);
	padding: 28px 48px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 14px;
}
.ov-footer-brand {
	display: flex;
	align-items: center;
	gap: 8px;
}
.ov-footer-brand span {
	font-family: 'Bricolage Grotesque', sans-serif;
	font-weight: 700;
	font-size: 15px;
	color: var(--ov-dark);
}
.ov-footer-copy {
	font-family: 'Lato', sans-serif;
	font-size: 12px;
	color: #B0ABA6;
}
.ov-footer-links { display: flex; gap: 20px; }
.ov-footer-links a {
	font-family: 'Lato', sans-serif;
	font-size: 12px;
	color: var(--ov-muted);
	transition: color .15s;
}
.ov-footer-links a:hover { color: var(--ov-dark); }

/* ======================================================
   RESPONSIVE
   ====================================================== */
@media (max-width: 900px) {
	.ov-hero {
		grid-template-columns: 1fr;
		padding: 120px 0 60px;
	}
	.ov-hero-visual { display: none; }
	.ov-features-grid { grid-template-columns: 1fr; }
	.ov-how-inner { grid-template-columns: 1fr; gap: 40px; }
	.ov-nav-links { display: none; }
	.ov-container { padding-left: 24px; padding-right: 24px; }
	.ov-nav { padding: 0 24px; }
	.ov-banner { padding: 24px; }
	.ov-footer { padding: 24px; }
}
