.mbi-writer-landing {
	--mbi-primary: #2563eb;
	--mbi-primary-dark: #1d4ed8;
	--mbi-primary-soft: #eff6ff;
	--mbi-dark: #0f172a;
	--mbi-text: #334155;
	--mbi-muted: #64748b;
	--mbi-border: #e2e8f0;
	--mbi-light: #f8fafc;
	--mbi-white: #ffffff;
	--mbi-radius-lg: 28px;
	--mbi-radius-md: 20px;
	--mbi-radius-sm: 14px;
	--mbi-shadow: 0 20px 55px rgba(15, 23, 42, 0.08);

	width: 100%;
	max-width: 100%;
	overflow: hidden;
	color: var(--mbi-text);
	font-family: inherit;
}

.mbi-writer-landing *,
.mbi-writer-landing *::before,
.mbi-writer-landing *::after {
	box-sizing: border-box;
}

.mbi-writer-landing h1,
.mbi-writer-landing h2,
.mbi-writer-landing h3,
.mbi-writer-landing p {
	margin-top: 0;
}

.mbi-writer-hero,
.mbi-writer-section,
.mbi-writer-cta {
	width: min(1240px, calc(100% - 40px));
	margin-left: auto;
	margin-right: auto;
}

/* Hero */

.mbi-writer-hero {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
	gap: 48px;
	align-items: center;
	padding: 68px;
	border-radius: var(--mbi-radius-lg);
	background:
		radial-gradient(circle at 88% 16%, rgba(255, 255, 255, 0.18), transparent 24%),
		linear-gradient(135deg, #2563eb 0%, #1d4ed8 55%, #1e40af 100%);
	color: var(--mbi-white);
	box-shadow: 0 28px 70px rgba(37, 99, 235, 0.24);
}

.mbi-writer-hero::before,
.mbi-writer-hero::after {
	content: "";
	position: absolute;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.07);
	pointer-events: none;
}

.mbi-writer-hero::before {
	width: 330px;
	height: 330px;
	right: -120px;
	top: -150px;
}

.mbi-writer-hero::after {
	width: 220px;
	height: 220px;
	left: 48%;
	bottom: -150px;
}

.mbi-writer-hero-content,
.mbi-writer-hero-card {
	position: relative;
	z-index: 1;
}

.mbi-writer-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 9px 15px;
	margin-bottom: 22px;
	border: 1px solid rgba(255, 255, 255, 0.28);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.12);
	color: #dbeafe;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.09em;
	text-transform: uppercase;
	backdrop-filter: blur(10px);
}

.mbi-writer-hero h1 {
	max-width: 780px;
	margin-bottom: 22px;
	color: var(--mbi-white);
	font-size: clamp(42px, 5.4vw, 68px);
	line-height: 1.08;
	letter-spacing: -0.035em;
}

.mbi-writer-hero p {
	max-width: 720px;
	margin-bottom: 32px;
	color: rgba(255, 255, 255, 0.88);
	font-size: 18px;
	line-height: 1.8;
}

.mbi-writer-hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
}

.mbi-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 54px;
	padding: 14px 24px;
	border: 1px solid transparent;
	border-radius: 14px;
	font-size: 15px;
	font-weight: 800;
	line-height: 1;
	text-decoration: none;
	transition:
		transform 0.2s ease,
		box-shadow 0.2s ease,
		background 0.2s ease,
		border-color 0.2s ease;
}

.mbi-btn:hover {
	transform: translateY(-2px);
	text-decoration: none;
}

.mbi-btn-primary {
	background: var(--mbi-white);
	color: var(--mbi-primary-dark);
	box-shadow: 0 14px 34px rgba(15, 23, 42, 0.2);
}

.mbi-btn-primary:hover {
	background: #f8fafc;
	color: var(--mbi-primary-dark);
	box-shadow: 0 18px 40px rgba(15, 23, 42, 0.24);
}

.mbi-btn-secondary {
	border-color: rgba(255, 255, 255, 0.35);
	background: rgba(255, 255, 255, 0.08);
	color: var(--mbi-white);
	backdrop-filter: blur(8px);
}

.mbi-btn-secondary:hover {
	border-color: rgba(255, 255, 255, 0.55);
	background: rgba(255, 255, 255, 0.16);
	color: var(--mbi-white);
}

.mbi-writer-hero-card {
	padding: 32px;
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 22px;
	background: linear-gradient(
		145deg,
		rgba(255, 255, 255, 0.16),
		rgba(255, 255, 255, 0.09)
	);
	box-shadow: 0 18px 45px rgba(15, 23, 42, 0.16);
	backdrop-filter: blur(16px);
}

.mbi-writer-hero-card h3 {
	margin-bottom: 20px;
	color: var(--mbi-white);
	font-size: 22px;
}

.mbi-writer-hero-card ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.mbi-writer-hero-card li {
	position: relative;
	margin-bottom: 15px;
	padding-left: 30px;
	color: rgba(255, 255, 255, 0.92);
	font-size: 15px;
	line-height: 1.6;
}

.mbi-writer-hero-card li:last-child {
	margin-bottom: 0;
}

.mbi-writer-hero-card li::before {
	content: "✓";
	position: absolute;
	left: 0;
	top: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.14);
	color: #dbeafe;
	font-size: 12px;
	font-weight: 900;
}

/* Sections */

.mbi-writer-section {
	padding-top: 92px;
	padding-bottom: 92px;
}

.mbi-writer-section-light {
	width: 100%;
	max-width: none;
	padding-left: max(24px, calc((100vw - 1240px) / 2));
	padding-right: max(24px, calc((100vw - 1240px) / 2));
	background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}

.mbi-section-heading {
	max-width: 760px;
	margin: 0 auto 48px;
	text-align: center;
}

.mbi-section-heading span {
	display: inline-block;
	margin-bottom: 10px;
	color: var(--mbi-primary);
	font-size: 12px;
	font-weight: 900;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.mbi-section-heading h2 {
	margin-bottom: 14px;
	color: var(--mbi-dark);
	font-size: clamp(32px, 4vw, 46px);
	line-height: 1.2;
	letter-spacing: -0.025em;
}

.mbi-section-heading p {
	margin-bottom: 0;
	color: var(--mbi-muted);
	font-size: 17px;
	line-height: 1.75;
}

/* Step cards */

.mbi-steps-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 22px;
}

.mbi-step-card {
	position: relative;
	min-height: 245px;
	padding: 30px;
	border: 1px solid var(--mbi-border);
	border-radius: var(--mbi-radius-md);
	background: var(--mbi-white);
	box-shadow: var(--mbi-shadow);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mbi-step-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 28px 62px rgba(15, 23, 42, 0.12);
}

.mbi-step-number {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 54px;
	height: 54px;
	margin-bottom: 24px;
	border-radius: 16px;
	background: linear-gradient(135deg, #dbeafe, #eff6ff);
	color: var(--mbi-primary-dark);
	font-size: 15px;
	font-weight: 900;
	box-shadow: inset 0 0 0 1px rgba(37, 99, 235, 0.08);
}

.mbi-step-card h3 {
	margin-bottom: 12px;
	color: var(--mbi-dark);
	font-size: 21px;
}

.mbi-step-card p {
	margin-bottom: 0;
	color: var(--mbi-muted);
	line-height: 1.75;
}

/* Guideline cards */

.mbi-guidelines-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}

.mbi-guideline-card {
	position: relative;
	padding: 28px;
	border: 1px solid var(--mbi-border);
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.92);
	box-shadow: 0 12px 35px rgba(15, 23, 42, 0.05);
	transition: transform 0.2s ease, border-color 0.2s ease;
}

.mbi-guideline-card::before {
	content: "";
	position: absolute;
	left: 28px;
	top: 0;
	width: 48px;
	height: 4px;
	border-radius: 0 0 6px 6px;
	background: linear-gradient(90deg, #2563eb, #60a5fa);
}

.mbi-guideline-card:hover {
	transform: translateY(-4px);
	border-color: #bfdbfe;
}

.mbi-guideline-card h3 {
	margin-bottom: 10px;
	color: var(--mbi-dark);
	font-size: 19px;
}

.mbi-guideline-card p {
	margin-bottom: 0;
	color: var(--mbi-muted);
	line-height: 1.72;
}

/* Earning process */

.mbi-earning-box {
	display: grid;
	grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
	gap: 18px;
	align-items: center;
	padding: 36px;
	border: 1px solid var(--mbi-border);
	border-radius: 24px;
	background: var(--mbi-white);
	box-shadow: var(--mbi-shadow);
}

.mbi-earning-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	min-width: 0;
	text-align: center;
}

.mbi-earning-item strong {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	margin-bottom: 14px;
	border-radius: 50%;
	background: linear-gradient(135deg, #2563eb, #1d4ed8);
	color: var(--mbi-white);
	font-size: 17px;
	box-shadow: 0 10px 24px rgba(37, 99, 235, 0.24);
}

.mbi-earning-item span {
	color: var(--mbi-dark);
	font-size: 15px;
	font-weight: 800;
	line-height: 1.5;
}

.mbi-earning-arrow {
	color: #60a5fa;
	font-size: 26px;
	font-weight: 800;
}

.mbi-earning-note {
	max-width: 860px;
	margin: 24px auto 0;
	color: var(--mbi-muted);
	line-height: 1.75;
	text-align: center;
}

/* FAQ */

.mbi-faq-list {
	max-width: 900px;
	margin: 0 auto;
}

.mbi-faq-list details {
	margin-bottom: 14px;
	border: 1px solid var(--mbi-border);
	border-radius: 16px;
	background: var(--mbi-white);
	box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
	overflow: hidden;
}

.mbi-faq-list summary {
	position: relative;
	padding: 21px 58px 21px 24px;
	color: var(--mbi-dark);
	font-size: 15px;
	font-weight: 800;
	cursor: pointer;
	list-style: none;
}

.mbi-faq-list summary::-webkit-details-marker {
	display: none;
}

.mbi-faq-list summary::after {
	content: "+";
	position: absolute;
	top: 50%;
	right: 24px;
	transform: translateY(-50%);
	color: var(--mbi-primary);
	font-size: 24px;
	font-weight: 500;
}

.mbi-faq-list details[open] summary {
	background: #f8fafc;
}

.mbi-faq-list details[open] summary::after {
	content: "−";
}

.mbi-faq-list details p {
	margin: 0;
	padding: 0 24px 22px;
	color: var(--mbi-muted);
	line-height: 1.75;
}

/* CTA */

.mbi-writer-cta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 36px;
	margin-top: 20px;
	margin-bottom: 32px;
	padding: 50px 56px;
	border-radius: 26px;
	background:
		radial-gradient(circle at 88% 20%, rgba(59, 130, 246, 0.2), transparent 30%),
		linear-gradient(135deg, #0f172a, #111827);
	color: var(--mbi-white);
	box-shadow: 0 28px 65px rgba(15, 23, 42, 0.22);
}

.mbi-writer-cta span {
	color: #93c5fd;
	font-size: 12px;
	font-weight: 900;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.mbi-writer-cta h2 {
	margin: 8px 0 10px;
	color: var(--mbi-white);
	font-size: clamp(30px, 4vw, 44px);
	line-height: 1.18;
}

.mbi-writer-cta p {
	max-width: 720px;
	margin-bottom: 0;
	color: #cbd5e1;
	line-height: 1.75;
}

.mbi-btn-white {
	flex: 0 0 auto;
	background: var(--mbi-white);
	color: var(--mbi-dark);
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.mbi-btn-white:hover {
	background: #f8fafc;
	color: var(--mbi-dark);
}

/* Public writer promotion */

.mbi-public-writer-cta {
	width: 100%;
	background: #123f7a;
	color: #fff;
	font-family: inherit;
}

.mbi-public-writer-cta-inner {
	width: min(1180px, calc(100% - 32px));
	min-height: 46px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	font-size: 14px;
	line-height: 1.35;
}

.mbi-public-writer-cta strong {
	font-size: 15px;
}

.mbi-public-writer-cta span {
	color: rgba(255, 255, 255, 0.86);
}

.mbi-public-writer-cta a,
.mbi-floating-writer-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	font-weight: 700;
	white-space: nowrap;
}

.mbi-public-writer-cta a {
	min-height: 32px;
	padding: 0 14px;
	border-radius: 999px;
	background: #fff;
	color: #123f7a;
}

.mbi-public-writer-cta a:hover,
.mbi-public-writer-cta a:focus {
	color: #0b2d59;
}

.mbi-floating-writer-cta {
	position: fixed;
	right: 22px;
	bottom: 22px;
	z-index: 9998;
	min-height: 44px;
	padding: 0 18px;
	border-radius: 999px;
	background: #2563eb;
	color: #fff;
	box-shadow: 0 14px 32px rgba(37, 99, 235, 0.32);
}

.mbi-floating-writer-cta:hover,
.mbi-floating-writer-cta:focus {
	color: #fff;
	background: #1d4ed8;
}

/* Tablet */

@media screen and (max-width: 1024px) {
	.mbi-writer-hero {
		grid-template-columns: 1fr;
		padding: 52px;
	}

	.mbi-writer-hero-card {
		max-width: 700px;
	}

	.mbi-steps-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.mbi-guidelines-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.mbi-earning-box {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.mbi-earning-arrow {
		display: none;
	}
}

/* Mobile */

@media screen and (max-width: 700px) {
	.mbi-writer-hero,
	.mbi-writer-section,
	.mbi-writer-cta {
		width: min(100% - 24px, 1240px);
	}

	.mbi-writer-hero {
		gap: 30px;
		padding: 34px 22px;
		border-radius: 20px;
	}

	.mbi-writer-hero h1 {
		font-size: 38px;
		line-height: 1.13;
	}

	.mbi-writer-hero p {
		font-size: 16px;
		line-height: 1.7;
	}

	.mbi-writer-hero-card {
		padding: 24px;
	}

	.mbi-writer-hero-actions {
		flex-direction: column;
	}

	.mbi-writer-hero-actions .mbi-btn {
		width: 100%;
	}

	.mbi-writer-section {
		padding-top: 64px;
		padding-bottom: 64px;
	}

	.mbi-writer-section-light {
		width: 100%;
		padding-left: 16px;
		padding-right: 16px;
	}

	.mbi-section-heading {
		margin-bottom: 34px;
	}

	.mbi-section-heading h2 {
		font-size: 32px;
	}

	.mbi-section-heading p {
		font-size: 15px;
	}

	.mbi-steps-grid,
	.mbi-guidelines-grid,
	.mbi-earning-box {
		grid-template-columns: 1fr;
	}

	.mbi-step-card {
		min-height: 0;
	}

	.mbi-earning-box {
		padding: 24px;
	}

	.mbi-writer-cta {
		flex-direction: column;
		align-items: flex-start;
		padding: 34px 24px;
	}

	.mbi-btn-white {
		width: 100%;
	}

	.mbi-public-writer-cta-inner {
		min-height: 56px;
		justify-content: space-between;
		gap: 10px;
	}

	.mbi-public-writer-cta span {
		display: none;
	}

	.mbi-public-writer-cta strong {
		font-size: 13px;
	}

	.mbi-public-writer-cta a {
		min-height: 34px;
		padding: 0 12px;
		font-size: 13px;
	}

	.mbi-floating-writer-cta {
		right: 14px;
		bottom: 14px;
		min-height: 42px;
		padding: 0 15px;
		font-size: 13px;
	}
}

/* Small phones */

@media screen and (max-width: 420px) {
	.mbi-writer-hero h1 {
		font-size: 33px;
	}

	.mbi-writer-badge {
		font-size: 10px;
	}

	.mbi-step-card,
	.mbi-guideline-card {
		padding: 24px;
	}
}
