/* =========================================================================
   BinMate — design system & site styles
   GeneratePress child theme. Light + dark, fluid, accessible, fast.
   Sections:  0 Font  1 Tokens  2 Base/GP  3 Layout  4 Header  5 Buttons
   6 Badges  7 Forms  8 Hero  9 Trust 10 Features 11 Showcase 12 Steps
   13 Pricing 14 Privacy 15 FAQ 16 Final CTA 17 Footer 18 Blog 19 Utils 20 Responsive
   ========================================================================= */

/* 0. FONT --------------------------------------------------------------- */
@font-face {
	font-family: "Inter";
	font-style: normal;
	font-weight: 100 900;
	font-display: swap;
	src: url("../fonts/Inter-Variable.woff2") format("woff2");
}

/* Global box-sizing reset — GeneratePress 3.6 / WP 7.0 default to content-box,
   which makes width:100% + padding overflow on small screens. */
*, *::before, *::after { box-sizing: border-box; }

/* 1. TOKENS ------------------------------------------------------------- */
:root {
	--bm-green: #1F9D57;
	--bm-green-600: #1A8C4D;
	--bm-green-700: #157A41;
	--bm-green-800: #0F5E32;
	--bm-green-tint: #E7F5EC;
	--bm-green-tint-2: #F1FAF4;

	--bm-ink: #161D22;
	--bm-ink-2: #2B333A;
	--bm-muted: #5B6770;
	--bm-faint: #8A949C;
	--bm-line: #E6E9EC;
	--bm-line-2: #EEF1F0;
	--bm-canvas: #F4F7F5;
	--bm-surface: #FFFFFF;
	--bm-surface-2: #FBFCFB;

	--bin-recycling: #1F9D57;
	--bin-food: #E8912A;
	--bin-general: #2B3138;
	--bin-garden: #7A4F28;
	--bin-paper: #2F6FE0;
	--bin-glass: #1E8E8E;

	--bm-shadow-sm: 0 1px 2px rgba(16,29,34,.06), 0 1px 3px rgba(16,29,34,.05);
	--bm-shadow-md: 0 6px 20px rgba(16,29,34,.08), 0 2px 6px rgba(16,29,34,.05);
	--bm-shadow-lg: 0 24px 60px rgba(16,29,34,.16), 0 8px 24px rgba(16,29,34,.08);
	--bm-ring: 0 0 0 4px rgba(31,157,87,.22);

	--bm-r-sm: 12px;
	--bm-r: 16px;
	--bm-r-lg: 22px;
	--bm-r-xl: 30px;
	--bm-pill: 999px;

	--bm-container: 1120px;
	--bm-narrow: 760px;
	--bm-font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

	--bm-h1: clamp(2.2rem, 1.4rem + 3.4vw, 3.7rem);
	--bm-h2: clamp(1.7rem, 1.2rem + 2vw, 2.6rem);
	--bm-h3: clamp(1.2rem, 1.05rem + .7vw, 1.5rem);
	--bm-lead: clamp(1.08rem, 1rem + .35vw, 1.28rem);

	--bm-header-h: 70px;
}

/* Dark — system preference (unless user forced light) + explicit toggle */
@media (prefers-color-scheme: dark) {
	:root:not([data-theme="light"]) {
		--bm-ink: #EAF1F3;
		--bm-ink-2: #CBD5DA;
		--bm-muted: #97A4AC;
		--bm-faint: #74828B;
		--bm-line: #243038;
		--bm-line-2: #1E282E;
		--bm-canvas: #0D1316;
		--bm-surface: #151D22;
		--bm-surface-2: #1A242A;
		--bm-green-tint: #11281C;
		--bm-green-tint-2: #0E2118;
		--bm-shadow-sm: 0 1px 2px rgba(0,0,0,.4);
		--bm-shadow-md: 0 8px 24px rgba(0,0,0,.45);
		--bm-shadow-lg: 0 28px 64px rgba(0,0,0,.6);
	}
}
:root[data-theme="dark"] {
	--bm-ink: #EAF1F3;
	--bm-ink-2: #CBD5DA;
	--bm-muted: #97A4AC;
	--bm-faint: #74828B;
	--bm-line: #243038;
	--bm-line-2: #1E282E;
	--bm-canvas: #0D1316;
	--bm-surface: #151D22;
	--bm-surface-2: #1A242A;
	--bm-green-tint: #11281C;
	--bm-green-tint-2: #0E2118;
	--bm-shadow-sm: 0 1px 2px rgba(0,0,0,.4);
	--bm-shadow-md: 0 8px 24px rgba(0,0,0,.45);
	--bm-shadow-lg: 0 28px 64px rgba(0,0,0,.6);
}

/* 2. BASE / GENERATEPRESS OVERRIDES ------------------------------------ */
body {
	font-family: var(--bm-font);
	color: var(--bm-ink);
	background: var(--bm-canvas);
	font-size: 17px;
	line-height: 1.7;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}
h1, h2, h3, h4, h5, h6, .main-title {
	font-family: var(--bm-font);
	color: var(--bm-ink);
	letter-spacing: -0.02em;
	line-height: 1.18;
	font-weight: 800;
}
a { color: var(--bm-green-700); text-underline-offset: 2px; }
a:hover { color: var(--bm-green-800); }
:root[data-theme="dark"] a, :root:not([data-theme="light"]) a { color: #58c98a; }
img { max-width: 100%; height: auto; }
.site-content { padding: 0; }
/* Full-bleed sections: GeneratePress caps #page at the container width; release
   it so section colour-bands run edge-to-edge. Inner width is handled by
   .bm-container (and .entry-content / .bm-article on text pages). */
#page.grid-container { max-width: 100%; padding: 0; }
.site-content > .grid-container,
#primary.content-area { max-width: 100%; padding: 0; }
/* GeneratePress hard-codes a white content background; alias it to our surface
   token so content panels follow light/dark (fixes unreadable dark pages). */
:root .inside-article, :root .page-header, :root .comments-area { background-color: var(--bm-surface); }
.generate-back-to-top { background: var(--bm-green) !important; }
:focus-visible { outline: 3px solid var(--bm-green); outline-offset: 2px; border-radius: 4px; }

/* 3. LAYOUT ------------------------------------------------------------- */
.bm-container { width: 100%; max-width: var(--bm-container); margin-inline: auto; padding-inline: clamp(18px, 4vw, 34px); }
.bm-section { padding-block: clamp(56px, 8vw, 104px); }
.bm-section--tint { background: var(--bm-green-tint-2); }
.bm-section--surface { background: var(--bm-surface); }
.bm-eyebrow {
	display: inline-flex; align-items: center; gap: 8px;
	font-size: .82rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
	color: var(--bm-green-700); background: var(--bm-green-tint);
	padding: 7px 14px; border-radius: var(--bm-pill);
}
:root[data-theme="dark"] .bm-eyebrow, :root:not([data-theme="light"]) .bm-eyebrow { color: #6fdca0; }
.bm-section__head { max-width: 660px; margin: 0 auto clamp(34px, 5vw, 60px); text-align: center; }
.bm-section__head.bm-left { margin-inline: 0; text-align: left; }
.bm-h2 { font-size: var(--bm-h2); margin: 16px 0 12px; }
.bm-lead { font-size: var(--bm-lead); color: var(--bm-muted); margin: 0; line-height: 1.6; }

/* 4. HEADER ------------------------------------------------------------- */
.site-header {
	position: sticky; top: 0; z-index: 100;
	background: color-mix(in srgb, var(--bm-surface) 82%, transparent);
	-webkit-backdrop-filter: saturate(180%) blur(14px);
	backdrop-filter: saturate(180%) blur(14px);
	border-bottom: 1px solid var(--bm-line);
}
.site-header .inside-header {
	display: flex; align-items: center; justify-content: space-between; gap: 18px;
	max-width: var(--bm-container); margin-inline: auto;
	padding: 12px clamp(18px, 4vw, 34px); min-height: var(--bm-header-h);
}
.site-branding .main-title { margin: 0; font-size: 1.32rem; font-weight: 800; letter-spacing: -.03em; }
.site-branding .main-title a { color: var(--bm-ink); display: inline-flex; align-items: center; gap: 9px; text-decoration: none; }
.site-branding .main-title a::before {
	content: ""; width: 32px; height: 32px; border-radius: 9px; flex: 0 0 auto;
	background: url("../img/app-icon.png") center/cover no-repeat;
	box-shadow: 0 2px 6px rgba(31,157,87,.32);
}
.site-description { display: none; }

.main-navigation, .main-navigation .inside-navigation { background: transparent; }
.main-navigation { box-shadow: none; }
@media (min-width: 769px) { .main-navigation .main-nav > ul { display: flex; align-items: center; gap: 4px; } }
.main-navigation .main-nav ul li a {
	font-weight: 600; font-size: .96rem; color: var(--bm-ink-2); padding: 9px 14px; border-radius: 10px;
	transition: background .15s ease, color .15s ease;
}
.main-navigation .main-nav ul li.current-menu-item > a,
.main-navigation .main-nav ul li.current_page_item > a { color: var(--bm-green-700); background: transparent; }
.main-navigation .main-nav ul li a:hover { color: var(--bm-green-700); background: var(--bm-green-tint); }
:root[data-theme="dark"] .main-navigation .main-nav ul li a:hover { color: #6fdca0; }
:root[data-theme="dark"] .main-navigation .main-nav ul li.current-menu-item > a,
:root:not([data-theme="light"]) .main-navigation .main-nav ul li.current-menu-item > a { color: #6fdca0; }

/* Header CTA button (menu item with class bm-nav-cta) */
.main-navigation .main-nav ul li.bm-nav-cta { margin-left: 8px; }
.main-navigation .main-nav ul li.bm-nav-cta a,
.main-navigation .main-nav ul li.bm-nav-cta a:hover {
	background: var(--bm-green); color: #fff; padding: 10px 18px; border-radius: var(--bm-pill);
	box-shadow: 0 4px 12px rgba(31,157,87,.32);
}
.main-navigation .main-nav ul li.bm-nav-cta a:hover { background: var(--bm-green-700); }

/* Theme toggle (injected by JS) */
.inside-header .bm-theme-toggle {
	display: inline-grid; place-items: center; width: 40px; height: 40px; margin-left: 6px; padding: 0;
	border: 1px solid var(--bm-line); border-radius: 50%; background: transparent;
	color: var(--bm-muted); cursor: pointer; flex: 0 0 auto; box-shadow: none;
	transition: color .15s ease, background .15s ease, border-color .15s ease;
}
.inside-header .bm-theme-toggle:hover { background: var(--bm-green-tint); border-color: transparent; color: var(--bm-green-700); }
.bm-theme-toggle svg { width: 18px; height: 18px; }
.bm-theme-toggle .bm-moon { display: none; }
:root[data-theme="dark"] .bm-theme-toggle .bm-moon,
:root:not([data-theme="light"]) .bm-theme-toggle .bm-moon { display: block; }
:root[data-theme="dark"] .bm-theme-toggle .bm-sun,
:root:not([data-theme="light"]) .bm-theme-toggle .bm-sun { display: none; }

/* GP mobile menu toggle */
.menu-toggle { color: var(--bm-ink) !important; font-weight: 600; }
.main-navigation.toggled .main-nav > ul,
.main-navigation .main-nav > ul { background: var(--bm-surface); }
@media (max-width: 768px) {
	.main-navigation .main-nav ul li.bm-nav-cta a { display: inline-block; margin: 6px 14px; }
}

/* 5. BUTTONS ------------------------------------------------------------ */
.bm-btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 9px;
	font-family: var(--bm-font); font-weight: 700; font-size: 1.02rem; line-height: 1;
	padding: 15px 26px; border-radius: var(--bm-pill); border: 1.5px solid transparent;
	cursor: pointer; text-decoration: none; transition: transform .12s ease, background .15s ease, box-shadow .15s ease;
}
.bm-btn:active { transform: translateY(1px); }
.bm-btn--primary { background: var(--bm-green); color: #fff; box-shadow: 0 8px 20px rgba(31,157,87,.32); }
.bm-btn--primary:hover { background: var(--bm-green-700); color: #fff; box-shadow: 0 10px 26px rgba(31,157,87,.4); }
.bm-btn--ghost { background: var(--bm-surface); color: var(--bm-ink); border-color: var(--bm-line); }
.bm-btn--ghost:hover { border-color: var(--bm-green); color: var(--bm-green-700); }
.bm-btn--lg { padding: 17px 32px; font-size: 1.1rem; }

/* 6. STORE BADGES ------------------------------------------------------- */
.bm-badges { display: inline-flex; flex-direction: column; gap: 10px; }
.bm-badge-soon {
	align-self: flex-start; font-size: .76rem; font-weight: 700; letter-spacing: .03em; text-transform: uppercase;
	color: var(--bm-green-700); background: var(--bm-green-tint); padding: 4px 11px; border-radius: var(--bm-pill);
}
.bm-badges-row { display: flex; flex-wrap: wrap; gap: 12px; }
.bm-badge {
	display: inline-flex; align-items: center; gap: 11px; text-decoration: none;
	background: var(--bm-ink); color: #fff; padding: 10px 18px 10px 16px; border-radius: 14px;
	min-width: 178px; transition: transform .12s ease, opacity .15s ease;
}
.bm-badge:hover { color: #fff; transform: translateY(-2px); }
.bm-badges.is-soon .bm-badge { opacity: .55; cursor: default; }
.bm-badges.is-soon .bm-badge:hover { transform: none; }
.bm-badge-ico { width: 26px; height: 26px; flex: 0 0 auto; background: center/contain no-repeat;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M16.5 1.6c.1 1-.3 2-1 2.8-.7.8-1.8 1.4-2.8 1.3-.1-1 .4-2 1-2.7.7-.8 1.9-1.4 2.8-1.4zM19 17c-.5 1.2-.8 1.7-1.5 2.8-1 1.5-2.3 3.3-4 3.3-1.5 0-1.9-1-3.9-1-2 0-2.4 1-3.9 1-1.7 0-3-1.7-4-3.2-2.7-4-3-8.6-1.3-11.1 1.2-1.7 3-2.7 4.7-2.7 1.7 0 2.8 1 4.2 1 1.4 0 2.2-1 4.2-1 1.5 0 3 .8 4.1 2.2-3.6 2-3 7 1 6z'/%3E%3C/svg%3E");
}
.bm-badge-ico--play { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%2300E0FF' d='M3.6 2.3 13 11.7l-9.4 9.4c-.4-.2-.6-.6-.6-1.1V3.4c0-.5.2-.9.6-1.1z'/%3E%3Cpath fill='%2300F076' d='M3.6 2.3c.3-.2.7-.2 1 0L16 9l-3 2.7L3.6 2.3z'/%3E%3Cpath fill='%23FF3D44' d='M16 9l3.9 2.3c.7.4.7 1.4 0 1.8L16 15.4 13 12.7 16 9z'/%3E%3Cpath fill='%23FFD400' d='M3.6 21.1 13 11.7l3 2.7-11.4 6.7c-.3.2-.7.2-1 0z'/%3E%3C/svg%3E"); }
.bm-badge-txt { display: flex; flex-direction: column; line-height: 1.15; }
.bm-badge-txt small { font-size: .66rem; opacity: .85; }
.bm-badge-txt strong { font-size: 1.06rem; font-weight: 700; }

/* 7. FORMS / WAITLIST --------------------------------------------------- */
.bm-waitlist { display: flex; gap: 10px; flex-wrap: wrap; max-width: 460px; }
.bm-input {
	flex: 1 1 220px; min-width: 0; font-family: var(--bm-font); font-size: 1rem; color: var(--bm-ink);
	background: var(--bm-surface); border: 1.5px solid var(--bm-line); border-radius: var(--bm-pill);
	padding: 14px 20px; transition: border-color .15s ease, box-shadow .15s ease;
}
.bm-input::placeholder { color: var(--bm-faint); }
.bm-input:focus { outline: none; border-color: var(--bm-green); box-shadow: var(--bm-ring); }
.bm-waitlist .bm-btn { flex: 0 0 auto; }
.bm-note { font-size: .86rem; color: var(--bm-muted); margin-top: 12px; }
.bm-note strong { color: var(--bm-ink-2); }
.bm-note--err, .bm-note--err a { color: #d24b3e; }

.bm-form-done { background: var(--bm-green-tint); color: var(--bm-green-800); border: 1px solid var(--bm-green-tint); border-radius: var(--bm-r); padding: 16px 20px; font-weight: 600; max-width: 460px; }
:root[data-theme="dark"] .bm-form-done, :root:not([data-theme="light"]) .bm-form-done { color: #8fe6b3; }

.bm-input--block { width: 100%; display: block; border-radius: var(--bm-r-sm); margin-top: 6px; }
.bm-contact-form { max-width: 560px; }
.bm-contact-form p { margin: 0 0 16px; }
.bm-contact-form label { font-weight: 600; font-size: .95rem; color: var(--bm-ink-2); }
.bm-contact-form textarea.bm-input { resize: vertical; min-height: 130px; line-height: 1.6; }

/* Native WP search form (404, search results, widgets) — brand it */
.search-form input[type="search"], .wp-block-search__input, .search-field {
	font-family: var(--bm-font); border: 1.5px solid var(--bm-line); border-radius: var(--bm-r-sm);
	padding: 12px 16px; background: var(--bm-surface); color: var(--bm-ink); }
.search-form input[type="search"]:focus, .search-field:focus { outline: none; border-color: var(--bm-green); box-shadow: var(--bm-ring); }
.search-form .search-submit, .wp-block-search__button, .search-submit, input[type="submit"].search-submit {
	background: var(--bm-green); color: #fff; border: 0; border-radius: var(--bm-r-sm);
	padding: 12px 22px; font-weight: 700; cursor: pointer; font-family: var(--bm-font); margin-left: 8px; }
.search-form .search-submit:hover, .wp-block-search__button:hover, .search-submit:hover { background: var(--bm-green-700); }

/* 8. HERO --------------------------------------------------------------- */
.bm-hero { position: relative; overflow: hidden; background:
	radial-gradient(120% 90% at 85% -10%, var(--bm-green-tint) 0%, transparent 55%),
	var(--bm-canvas); }
.bm-hero__grid {
	display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(28px, 5vw, 70px);
	align-items: center; padding-block: clamp(46px, 7vw, 86px);
}
.bm-hero h1 { font-size: var(--bm-h1); margin: 18px 0 18px; max-width: 14ch; }
.bm-hero h1 .bm-hl { color: var(--bm-green-700); }
:root[data-theme="dark"] .bm-hero h1 .bm-hl, :root:not([data-theme="light"]) .bm-hero h1 .bm-hl { color: #4fc488; }
.bm-hero__lead { font-size: var(--bm-lead); color: var(--bm-muted); max-width: 46ch; margin: 0 0 28px; }
.bm-hero__cta { display: flex; flex-direction: column; gap: 18px; }
.bm-hero__trust { display: flex; flex-wrap: wrap; gap: 8px 20px; margin-top: 22px; font-size: .92rem; color: var(--bm-muted); }
.bm-hero__trust span { display: inline-flex; align-items: center; gap: 7px; }
.bm-hero__trust span::before { content: ""; width: 16px; height: 16px; background: var(--bm-green);
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M9.6 16.2 5.4 12l-1.4 1.4 5.6 5.6 12-12-1.4-1.4z'/%3E%3C/svg%3E") center/contain no-repeat;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M9.6 16.2 5.4 12l-1.4 1.4 5.6 5.6 12-12-1.4-1.4z'/%3E%3C/svg%3E") center/contain no-repeat; }

.bm-hero__art { position: relative; display: grid; place-items: center; }
.bm-hero__art .bm-device { z-index: 2; }
.bm-hero__art::before { content: ""; position: absolute; inset: 6% 12%; border-radius: 50%;
	background: radial-gradient(circle, rgba(31,157,87,.18), transparent 70%); filter: blur(8px); }

/* Floating widget chip */
.bm-widget-chip {
	position: absolute; z-index: 3; left: -6%; bottom: 12%;
	background: var(--bm-surface); border: 1px solid var(--bm-line); border-radius: var(--bm-r);
	box-shadow: var(--bm-shadow-lg); padding: 13px 16px; display: flex; align-items: center; gap: 12px; min-width: 200px;
}
.bm-widget-chip .ic { width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center; font-size: 20px; background: var(--bm-green-tint); }
.bm-widget-chip b { display: block; font-size: .72rem; letter-spacing: .05em; text-transform: uppercase; color: var(--bm-muted); font-weight: 700; }
.bm-widget-chip .d { font-weight: 800; font-size: 1.06rem; }
.bm-widget-chip .d small { color: var(--bm-green-700); font-weight: 700; }

/* 9. DEVICE MOCKUP ------------------------------------------------------ */
.bm-device {
	position: relative; width: min(286px, 74vw);
	background: #0a0e11; border-radius: 38px; padding: 9px;
	box-shadow: var(--bm-shadow-lg); border: 1px solid rgba(0,0,0,.25); line-height: 0;
}
.bm-device img { width: 100%; height: auto; display: block; border-radius: 26px; background: #fff; }
.bm-device--sm { width: min(220px, 60vw); }

/* 10. FEATURES ---------------------------------------------------------- */
.bm-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2.4vw, 26px); }
.bm-feature {
	background: var(--bm-surface); border: 1px solid var(--bm-line); border-radius: var(--bm-r-lg);
	padding: 28px 26px; box-shadow: var(--bm-shadow-sm); transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.bm-feature:hover { transform: translateY(-4px); box-shadow: var(--bm-shadow-md); border-color: var(--bm-green-tint); }
.bm-feature__ic { width: 52px; height: 52px; border-radius: 15px; display: grid; place-items: center; font-size: 26px; margin-bottom: 18px; background: var(--bm-green-tint); }
.bm-feature h3 { font-size: var(--bm-h3); margin: 0 0 9px; }
.bm-feature p { margin: 0; color: var(--bm-muted); font-size: 1rem; }
.bm-feature--wide { grid-column: span 3; display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: center; padding: clamp(26px,4vw,44px); }
.bm-feature__ic--food { background: #fbe6cf; } .bm-feature__ic--paper { background: #e1ebfb; }
.bm-feature__ic--garden { background: #ece1d4; } .bm-feature__ic--glass { background: #d6efef; }

/* 11. SHOWCASE (alternating screens) ------------------------------------ */
.bm-showcase { display: flex; flex-direction: column; gap: clamp(56px, 8vw, 96px); }
.bm-show-row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 70px); align-items: center; }
.bm-show-row:nth-child(even) .bm-show-art { order: -1; }
.bm-show-art { display: grid; place-items: center; }
.bm-show-body .bm-eyebrow { margin-bottom: 14px; }
.bm-show-body h3 { font-size: clamp(1.5rem, 1.2rem + 1.3vw, 2.05rem); margin: 0 0 12px; }
.bm-show-body p { color: var(--bm-muted); font-size: 1.08rem; margin: 0 0 14px; }
.bm-check-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.bm-check-list li { position: relative; padding-left: 30px; color: var(--bm-ink-2); }
.bm-check-list li::before { content: ""; position: absolute; left: 0; top: 3px; width: 20px; height: 20px; border-radius: 50%;
	background: var(--bm-green-tint) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%231F9D57' d='M9.6 16.2 5.4 12l-1.4 1.4 5.6 5.6 12-12-1.4-1.4z'/%3E%3C/svg%3E") center/13px no-repeat; }

/* 12. STEPS ------------------------------------------------------------- */
.bm-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 3vw, 34px); counter-reset: step; }
.bm-step { position: relative; padding-top: 8px; }
.bm-step__n { width: 46px; height: 46px; border-radius: 50%; background: var(--bm-green); color: #fff; display: grid; place-items: center; font-weight: 800; font-size: 1.2rem; margin-bottom: 16px; box-shadow: 0 6px 16px rgba(31,157,87,.3); }
.bm-step h3 { font-size: var(--bm-h3); margin: 0 0 8px; }
.bm-step p { margin: 0; color: var(--bm-muted); }

/* 13. PRICING / FREE vs PRO --------------------------------------------- */
.bm-pricing { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; max-width: 880px; margin-inline: auto; }
.bm-plan { background: var(--bm-surface); border: 1px solid var(--bm-line); border-radius: var(--bm-r-lg); padding: 32px 30px; box-shadow: var(--bm-shadow-sm); }
.bm-plan--pro { border: 2px solid var(--bm-green); box-shadow: var(--bm-shadow-md); position: relative; }
.bm-plan__tag { position: absolute; top: -13px; right: 24px; background: var(--bm-green); color: #fff; font-size: .76rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; padding: 5px 13px; border-radius: var(--bm-pill); }
.bm-plan h3 { font-size: 1.35rem; margin: 0 0 4px; }
.bm-plan__price { font-size: 2.2rem; font-weight: 800; letter-spacing: -.03em; margin: 6px 0 2px; }
.bm-plan__price span { font-size: 1rem; font-weight: 600; color: var(--bm-muted); }
.bm-plan__sub { color: var(--bm-muted); margin: 0 0 18px; font-size: .96rem; }
.bm-plan ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.bm-plan li { position: relative; padding-left: 28px; color: var(--bm-ink-2); }
.bm-plan li::before { content: ""; position: absolute; left: 0; top: 4px; width: 18px; height: 18px; border-radius: 50%;
	background: var(--bm-green-tint) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%231F9D57' d='M9.6 16.2 5.4 12l-1.4 1.4 5.6 5.6 12-12-1.4-1.4z'/%3E%3C/svg%3E") center/12px no-repeat; }
.bm-plan li.is-muted { color: var(--bm-faint); } .bm-plan li.is-muted::before { background: var(--bm-line); }
.bm-price-foot { text-align: center; color: var(--bm-muted); margin-top: 22px; font-size: .96rem; }

/* 14. PRIVACY BAND ------------------------------------------------------ */
.bm-privacy { background: linear-gradient(160deg, var(--bm-green-800), var(--bm-green-600)); color: #fff; border-radius: var(--bm-r-xl); padding: clamp(34px, 5vw, 60px); position: relative; overflow: hidden; }
.bm-privacy h2 { color: #fff; font-size: var(--bm-h2); margin: 14px 0 14px; max-width: 18ch; }
.bm-privacy p { color: rgba(255,255,255,.9); font-size: var(--bm-lead); max-width: 54ch; margin: 0 0 24px; }
.bm-privacy .bm-eyebrow { background: rgba(255,255,255,.16); color: #fff; }
.bm-privacy__chips { display: flex; flex-wrap: wrap; gap: 10px; }
.bm-privacy__chips span { background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.2); color: #fff; padding: 9px 16px; border-radius: var(--bm-pill); font-weight: 600; font-size: .94rem; }

/* 15. FAQ --------------------------------------------------------------- */
.bm-faq { max-width: var(--bm-narrow); margin-inline: auto; display: grid; gap: 12px; }
.bm-faq details { background: var(--bm-surface); border: 1px solid var(--bm-line); border-radius: var(--bm-r); overflow: hidden; }
.bm-faq details[open] { border-color: var(--bm-green-tint); box-shadow: var(--bm-shadow-sm); }
.bm-faq summary { cursor: pointer; list-style: none; padding: 20px 22px; font-weight: 700; font-size: 1.08rem; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.bm-faq summary::-webkit-details-marker { display: none; }
.bm-faq summary::after { content: ""; width: 22px; height: 22px; flex: 0 0 auto; background: var(--bm-green-tint) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%231F9D57' d='M11 5h2v14h-2z'/%3E%3Cpath fill='%231F9D57' d='M5 11h14v2H5z'/%3E%3C/svg%3E") center/14px no-repeat; border-radius: 50%; transition: transform .2s ease; }
.bm-faq details[open] summary::after { transform: rotate(135deg); }
.bm-faq .bm-faq__a { padding: 0 22px 20px; color: var(--bm-muted); }
.bm-faq .bm-faq__a p { margin: 0; }

/* 16. FINAL CTA --------------------------------------------------------- */
.bm-finalcta { text-align: center; }
.bm-finalcta h2 { font-size: var(--bm-h2); margin: 14px auto 14px; max-width: 18ch; }
.bm-finalcta .bm-lead { margin: 0 auto 30px; max-width: 50ch; }
.bm-finalcta .bm-waitlist { margin-inline: auto; }
.bm-finalcta .bm-badges { align-items: center; margin-top: 22px; }

/* 17. FOOTER ------------------------------------------------------------ */
.site-footer .inside-site-info, .footer-widgets { background: var(--bm-surface); }
.site-footer { border-top: 1px solid var(--bm-line); }
.footer-widgets { padding-block: clamp(40px, 6vw, 64px); }
.bm-footer { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 36px; max-width: var(--bm-container); margin-inline: auto; }
.bm-footer__brand .bm-flogo { display: inline-flex; align-items: center; gap: 9px; font-weight: 800; font-size: 1.2rem; color: var(--bm-ink); margin-bottom: 12px; }
.bm-footer__brand .bm-flogo::before { content: ""; width: 28px; height: 28px; border-radius: 8px; background: url("../img/app-icon.png") center/cover no-repeat; }
.bm-footer__brand p { color: var(--bm-muted); font-size: .96rem; max-width: 34ch; }
.bm-footer h4 { font-size: .82rem; text-transform: uppercase; letter-spacing: .06em; color: var(--bm-faint); margin: 0 0 14px; }
.bm-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.bm-footer a { color: var(--bm-ink-2); text-decoration: none; font-size: .98rem; }
.bm-footer a:hover { color: var(--bm-green-700); }
.site-info { background: var(--bm-surface-2); border-top: 1px solid var(--bm-line); }
.site-info .inside-site-info { max-width: var(--bm-container); margin-inline: auto; padding: 20px clamp(18px,4vw,34px); color: var(--bm-muted); font-size: .9rem; }

/* 18. BLOG -------------------------------------------------------------- */
.bm-page-hero { background: var(--bm-green-tint-2); border-bottom: 1px solid var(--bm-line); padding-block: clamp(40px, 6vw, 72px); text-align: center; }
.bm-page-hero h1 { font-size: clamp(2rem, 1.4rem + 2.4vw, 3rem); margin: 12px 0 12px; }
.bm-page-hero p { color: var(--bm-muted); font-size: var(--bm-lead); max-width: 56ch; margin-inline: auto; }

.bm-post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.bm-card-post { background: var(--bm-surface); border: 1px solid var(--bm-line); border-radius: var(--bm-r-lg); overflow: hidden; box-shadow: var(--bm-shadow-sm); transition: transform .18s ease, box-shadow .18s ease; display: flex; flex-direction: column; }
.bm-card-post:hover { transform: translateY(-4px); box-shadow: var(--bm-shadow-md); }
.bm-card-post__thumb { aspect-ratio: 16/9; background: var(--bm-green-tint); object-fit: cover; width: 100%; }
.bm-card-post__body { padding: 22px 22px 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.bm-card-post__cat { font-size: .76rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--bm-green-700); }
.bm-card-post h3 { font-size: 1.2rem; margin: 0; line-height: 1.3; }
.bm-card-post h3 a { color: var(--bm-ink); text-decoration: none; }
.bm-card-post h3 a:hover { color: var(--bm-green-700); }
.bm-card-post p { color: var(--bm-muted); font-size: .96rem; margin: 0; }
.bm-card-post__meta { margin-top: auto; color: var(--bm-faint); font-size: .85rem; padding-top: 6px; }

/* Single post */
.bm-article { max-width: var(--bm-narrow); margin-inline: auto; padding-inline: clamp(18px,4vw,34px); }
.bm-breadcrumbs { font-size: .88rem; color: var(--bm-muted); padding: 22px 0 0; }
.bm-breadcrumbs a { color: var(--bm-muted); } .bm-breadcrumbs a:hover { color: var(--bm-green-700); }
.bm-article__head { padding: 26px 0 22px; border-bottom: 1px solid var(--bm-line); margin-bottom: 30px; }
.bm-article__head h1 { font-size: clamp(2rem, 1.5rem + 2vw, 2.9rem); margin: 12px 0 16px; }
.bm-article__meta { display: flex; flex-wrap: wrap; gap: 8px 18px; color: var(--bm-muted); font-size: .92rem; align-items: center; }
.entry-content { font-size: 1.12rem; line-height: 1.78; color: var(--bm-ink-2); }
.entry-content > * { margin-block: 0 1.3em; }
.entry-content h2 { font-size: 1.7rem; margin-top: 1.8em; }
.entry-content h3 { font-size: 1.32rem; margin-top: 1.5em; }
.entry-content a { color: var(--bm-green-700); text-decoration: underline; }
.entry-content blockquote { border-left: 4px solid var(--bm-green); background: var(--bm-green-tint-2); padding: 14px 20px; border-radius: 0 var(--bm-r) var(--bm-r) 0; margin-inline: 0; }
.entry-content img { border-radius: var(--bm-r); }
.entry-content ul, .entry-content ol { padding-left: 1.3em; }
.entry-content li { margin-bottom: .5em; }

/* Author box + related + inline CTA */
.bm-authorbox { display: flex; gap: 16px; align-items: center; background: var(--bm-surface-2); border: 1px solid var(--bm-line); border-radius: var(--bm-r-lg); padding: 20px 22px; margin: 40px 0; }
.bm-authorbox__av { width: 56px; height: 56px; border-radius: 50%; background: var(--bm-green); color: #fff; display: grid; place-items: center; font-weight: 800; font-size: 1.4rem; flex: 0 0 auto; }
.bm-authorbox b { display: block; } .bm-authorbox p { margin: 4px 0 0; color: var(--bm-muted); font-size: .95rem; }
.bm-inline-cta { display: flex; gap: 20px; align-items: center; background: var(--bm-green-tint-2); border: 1px solid var(--bm-green-tint); border-radius: var(--bm-r-lg); padding: 26px 28px; margin: 36px 0; }
.bm-inline-cta__mark { width: 56px; height: 56px; flex: 0 0 auto; border-radius: 15px; background: var(--bm-green) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9.6 16.2 5.4 12l-1.4 1.4 5.6 5.6 12-12-1.4-1.4z' fill='white'/%3E%3C/svg%3E") center/30px no-repeat; }
.bm-inline-cta__eyebrow { font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; color: var(--bm-green-700); margin: 0 0 4px; }
.bm-inline-cta__title { font-size: 1.3rem; margin: 0 0 8px; }
.bm-inline-cta__text { color: var(--bm-muted); margin: 0 0 16px; font-size: 1rem; }
.bm-related { margin-top: 56px; }
.bm-related h2 { font-size: 1.5rem; margin-bottom: 22px; }

/* Blog index / archives / pagination */
.bm-blog-body { padding-block: clamp(40px, 6vw, 72px); }
.bm-card-post__media { display: block; }
.bm-card-post__thumb--ph { display: block; aspect-ratio: 16 / 9; background: var(--bm-green-tint) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9.6 16.2 5.4 12l-1.4 1.4 5.6 5.6 12-12-1.4-1.4z' fill='%231F9D57'/%3E%3C/svg%3E") center / 46px no-repeat; opacity: .85; }
.bm-article__hero { margin: 0 auto 30px; max-width: 794px; padding-inline: clamp(18px, 4vw, 34px); }
.bm-article__hero img { width: 100%; border-radius: var(--bm-r-lg); display: block; }
.bm-empty { text-align: center; padding: clamp(40px, 8vw, 90px) 0; max-width: 560px; margin-inline: auto; }
.bm-empty h2 { font-size: var(--bm-h3); margin-bottom: 8px; }
.bm-empty p { color: var(--bm-muted); }
.pagination .nav-links { display: flex; gap: 8px; justify-content: center; margin-top: 44px; flex-wrap: wrap; }
.page-numbers { display: inline-grid; place-items: center; min-width: 44px; height: 44px; padding: 0 14px; border-radius: var(--bm-pill); border: 1px solid var(--bm-line); text-decoration: none; color: var(--bm-ink-2); font-weight: 600; background: var(--bm-surface); }
.page-numbers.current { background: var(--bm-green); color: #fff; border-color: var(--bm-green); }
a.page-numbers:hover { border-color: var(--bm-green); color: var(--bm-green-700); }

/* Search results */
.bm-results { max-width: 760px; margin-inline: auto; display: grid; gap: 16px; }
.bm-result { background: var(--bm-surface); border: 1px solid var(--bm-line); border-radius: var(--bm-r); padding: 22px 24px; box-shadow: var(--bm-shadow-sm); }
.bm-result h2 { font-size: 1.25rem; margin: 0 0 8px; }
.bm-result h2 a { color: var(--bm-ink); text-decoration: none; }
.bm-result h2 a:hover { color: var(--bm-green-700); }
.bm-result p { color: var(--bm-muted); margin: 0 0 10px; }
.bm-result__more { font-weight: 600; text-decoration: none; }

/* 18b. STANDARD PAGES & POSTS (readable measure) ------------------------ */
.page:not(.page-template-template-landing) .site-main,
.single .site-main { padding-block: clamp(40px, 6vw, 72px); }
.page:not(.page-template-template-landing) .entry-header,
.page:not(.page-template-template-landing) .entry-content,
.single-post .entry-header,
.single-post .entry-content { max-width: 794px; margin-inline: auto; padding-inline: clamp(18px, 4vw, 34px); }
.entry-header .entry-title { font-size: clamp(2rem, 1.5rem + 2vw, 2.9rem); margin-bottom: .35em; letter-spacing: -.02em; }
.entry-content > h2:first-child { margin-top: 0; }
.bm-legal-tldr { background: var(--bm-green-tint-2); border: 1px solid var(--bm-green-tint); border-radius: var(--bm-r); padding: 18px 22px; }
.bm-legal-tldr strong { color: var(--bm-green-700); }
.entry-content table { width: 100%; border-collapse: collapse; margin: 1.4em 0; font-size: .98rem; }
.entry-content th, .entry-content td { text-align: left; padding: 10px 14px; border: 1px solid var(--bm-line); vertical-align: top; }
.entry-content th { background: var(--bm-surface-2); font-weight: 700; }
.entry-content .bm-updated { color: var(--bm-muted); font-size: .95rem; }

/* 19. UTILITIES --------------------------------------------------------- */
.bm-mt-s { margin-top: 14px; } .bm-center { text-align: center; }
.screen-reader-text { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(1px,1px,1px,1px); white-space: nowrap; }
.bm-hide { display: none !important; }

/* 20. RESPONSIVE -------------------------------------------------------- */
@media (max-width: 980px) {
	.bm-features { grid-template-columns: repeat(2, 1fr); }
	.bm-feature--wide { grid-column: span 2; }
	.bm-post-grid { grid-template-columns: repeat(2, 1fr); }
	.bm-footer { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 860px) {
	.bm-hero__grid { grid-template-columns: 1fr; text-align: center; }
	.bm-hero h1 { max-width: none; margin-inline: auto; }
	.bm-hero__lead { margin-inline: auto; }
	.bm-hero__cta { align-items: center; }
	.bm-hero__trust { justify-content: center; }
	.bm-hero__art { margin-top: 26px; }
	.bm-show-row { grid-template-columns: 1fr; text-align: center; gap: 26px; }
	.bm-show-row:nth-child(even) .bm-show-art { order: 0; }
	.bm-check-list { display: inline-grid; text-align: left; }
	.bm-feature--wide { grid-template-columns: 1fr; }
	.bm-steps { grid-template-columns: 1fr; gap: 26px; }
	.bm-pricing { grid-template-columns: 1fr; }
	.bm-widget-chip { left: 2%; }
}
@media (max-width: 560px) {
	.bm-features, .bm-post-grid { grid-template-columns: 1fr; }
	.bm-feature--wide { grid-column: span 1; }
	.bm-footer { grid-template-columns: 1fr; }
	.bm-badges-row { width: 100%; } .bm-badge { flex: 1; }
}
@media (prefers-reduced-motion: reduce) {
	* { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
