:root {
	/* Matches parent theme: one knob scales all rem-based type (standalone + bundled). */
	--bmta-type-scale: 0.8;

	--bg: #fdfaf6;
	--charcoal: #1a1a1a;
	--border: #1a1a1a;
	--pastel-purple: #e8def8;
	--pastel-blue: #e1f5fe;
	--pastel-yellow: #fef7e0;
	--pastel-green: #dff8e7;
	--white: #ffffff;
	--shadow: 10px 10px 0 var(--border);
	--shadow-small: 6px 6px 0 var(--border);
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	padding-bottom: 88px;
	background: var(--bg);
	color: var(--charcoal);
	font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 1.125rem; /* was 18px at 16px root; tracks scaled html */
	line-height: 1.25;
	text-rendering: optimizeLegibility;
	overflow-x: hidden;
}

body.admin-bar .bottom-command {
	bottom: 0;
}

a {
	color: inherit;
	text-decoration-thickness: 0.12em;
	text-underline-offset: 0.14em;
}

img {
	display: block;
	max-width: 100%;
	height: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	font-family: "Archivo Black", Impact, sans-serif;
	font-weight: 900;
	line-height: 0.9;
	text-transform: uppercase;
	letter-spacing: 0;
}

p {
	margin: 0;
}

ul,
ol {
	margin-top: 0;
}

input,
textarea,
select {
	width: 100%;
	border: 4px solid var(--border);
	border-radius: 0;
	background: var(--white);
	color: var(--charcoal);
	font: inherit;
	font-weight: 700;
	padding: 14px 16px;
}

button,
input[type="submit"] {
	cursor: pointer;
}

.screen-reader-text,
.skip-link {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.skip-link:focus {
	position: fixed;
	top: 12px;
	left: 12px;
	z-index: 2000;
	width: auto;
	height: auto;
	margin: 0;
	clip: auto;
	padding: 12px 16px;
	border: 4px solid var(--border);
	background: var(--white);
	font-weight: 900;
}

.shell {
	width: min(100% - 40px, 1280px);
	margin-inline: auto;
}

.shell--narrow {
	width: min(100% - 40px, 900px);
}

.border-bottom {
	border-bottom: 4px solid var(--border);
}

.brutal-card {
	position: relative;
	z-index: 2;
	border: 4px solid var(--border);
	background: var(--white);
	box-shadow: var(--shadow);
	opacity: 1;
}

.js .brutal-card {
	transform: translateY(28px);
	opacity: 0;
	transition: opacity 600ms ease, transform 600ms cubic-bezier(0.23, 1, 0.32, 1);
}

/* Page/post body, archives, and hero utility cards: always visible (scroll-reveal IO can miss them). */
.js .entry-section .brutal-card,
.js .archive-section .brutal-card,
.js .hero .brutal-card {
	opacity: 1;
	transform: translateY(0);
}

.js .brutal-card.is-visible {
	transform: translateY(0);
	opacity: 1;
}

.image-atmosphere {
	position: relative;
	overflow: hidden;
}

.image-atmosphere::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	background-image: var(--bmta-bg-img, var(--bmta-hero-img));
	background-position: center;
	background-size: cover;
	opacity: 0.58;
	filter: saturate(1.1) contrast(1.2) brightness(1.06);
}

.image-atmosphere::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background: rgba(253, 250, 246, 0.32);
}

.hero > .shell,
.section > .shell,
.manifesto > .shell,
.final-action > .shell,
.grid-overlay,
.grain {
	position: relative;
	z-index: 2;
}

.grid-overlay {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(var(--border) 1px, transparent 1px),
		linear-gradient(90deg, var(--border) 1px, transparent 1px);
	background-size: 50px 50px;
	opacity: 0.05;
	pointer-events: none;
}

.grain {
	position: absolute;
	inset: 0;
	opacity: 0.035;
	pointer-events: none;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

.hero {
	min-height: 100svh;
	display: flex;
	align-items: center;
	padding: clamp(88px, 9vw, 150px) 0;
	background: var(--bg);
}

.hero--home {
	min-height: min(88svh, 800px);
	padding: clamp(12px, 2vw, 24px) 0 clamp(20px, 3.5vw, 40px);
	align-items: center;
}

.hero--home .kicker {
	margin-bottom: 10px;
}

.hero--home h1 {
	margin-bottom: 12px;
	font-size: clamp(3rem, 8.2vw, 8.25rem);
	line-height: 0.8;
}

.hero--home .hero__lede {
	margin-bottom: 16px;
	font-size: clamp(1.1rem, 2.35vw, 1.95rem);
}

.hero--home::after,
.hero--interior::after {
	background: rgba(253, 250, 246, 0.68);
}

.hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.65fr) minmax(260px, 0.55fr);
	gap: clamp(36px, 6vw, 86px);
	align-items: end;
}

.hero__copy {
	position: relative;
	z-index: 3;
}

.kicker {
	display: block;
	margin-bottom: 24px;
	font-size: clamp(0.7rem, 1.4vw, 0.86rem);
	font-weight: 900;
	letter-spacing: 0.38em;
	text-transform: uppercase;
}

.hero h1 {
	max-width: 980px;
	margin-bottom: 32px;
	font-size: clamp(4rem, 9.7vw, 10.5rem);
	line-height: 0.78;
	overflow-wrap: anywhere;
}

.hero--interior {
	min-height: 72svh;
	align-items: end;
}

.hero--interior h1 {
	max-width: 1120px;
	font-size: clamp(3.2rem, 10vw, 10rem);
}

.hero__lede {
	max-width: 700px;
	margin-bottom: 28px;
	font-size: clamp(1.45rem, 3vw, 2.5rem);
	font-weight: 900;
	line-height: 1.08;
}

.hero__aside {
	display: grid;
	gap: 24px;
	align-content: end;
}

.hero__image-card {
	padding: 16px;
	background: var(--pastel-yellow);
	transform: rotate(-2deg) translateY(28px);
}

.hero__image-card img {
	aspect-ratio: 1 / 1;
	width: 100%;
	object-fit: cover;
	border: 4px solid var(--border);
	background: var(--white);
	filter: contrast(1.1) saturate(1.06);
}

.hero__log {
	padding: 26px;
	background: var(--white);
	transform: rotate(2deg) translateY(28px);
}

.hero__log p {
	font-size: 0.82rem;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.14em;
}

.cta-row {
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
	align-items: center;
}

.cta-row--stacked {
	align-items: stretch;
}

.brutal-button,
.btn-black {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 54px;
	padding: 14px 24px;
	border: 4px solid #000;
	background: var(--white);
	box-shadow: var(--shadow-small);
	color: var(--charcoal);
	font-size: 0.78rem;
	font-weight: 900;
	line-height: 1;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
}

.brutal-button:hover,
.btn-black:hover,
.arrow-btn:hover,
.contact-tile:hover {
	transform: translate(3px, 3px);
	box-shadow: 2px 2px 0 #000;
}

.brutal-button--green {
	background: #00ff66;
}

.brutal-button--white {
	background: var(--white);
}

.section {
	padding: clamp(76px, 10vw, 150px) 0;
}

.section--intro {
	background: var(--white);
}

.intro-layout,
.geo-layout,
.pricing-layout,
.final-action__layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(280px, 0.86fr);
	gap: clamp(34px, 6vw, 76px);
	align-items: start;
}

.intro-copy {
	padding: clamp(30px, 5vw, 56px);
	background: var(--pastel-yellow);
}

.intro-copy h2,
.section-head h2,
.pricing-copy h2,
.final-action h2 {
	margin-bottom: 28px;
	font-size: clamp(3rem, 7vw, 6.5rem);
}

.intro-copy p,
.section-head p,
.geo-layout p,
.pricing-copy p,
.final-action p {
	font-size: clamp(1.05rem, 2vw, 1.35rem);
	font-weight: 700;
	line-height: 1.25;
}

.proof-card {
	padding: clamp(28px, 4vw, 48px);
	background: var(--pastel-blue);
}

.proof-card h2 {
	margin-bottom: 34px;
	font-size: clamp(2rem, 4vw, 3.4rem);
}

.proof-row {
	display: grid;
	grid-template-columns: minmax(90px, 0.8fr) minmax(0, 1.2fr);
	gap: 20px;
	padding: 18px 0;
	border-bottom: 3px solid var(--border);
}

.proof-row span,
.proof-row strong {
	font-size: 0.82rem;
	font-weight: 900;
	line-height: 1.15;
	text-transform: uppercase;
}

.section--deliverables {
	background: var(--pastel-green);
}

.section-head {
	max-width: 980px;
	margin: 0 auto clamp(42px, 7vw, 78px);
	text-align: center;
}

.section-head--left {
	margin-inline: 0;
	text-align: left;
}

.section-head p:not(.kicker) + p {
	margin-top: 22px;
}

.card-grid {
	display: grid;
	gap: 28px;
}

.card-grid--three {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mini-card {
	min-height: 260px;
	padding: clamp(28px, 4vw, 44px);
}

.mini-card:nth-child(1) {
	background: var(--white);
}

.mini-card:nth-child(2) {
	background: var(--pastel-blue);
}

.mini-card:nth-child(3) {
	background: var(--pastel-yellow);
}

.mini-card h3 {
	margin-bottom: 24px;
	font-size: clamp(2rem, 4vw, 3.2rem);
}

.mini-card p,
.faq-item p,
.archive-card__excerpt,
.entry-content p {
	font-weight: 650;
	line-height: 1.45;
}

.manifesto {
	padding: clamp(86px, 12vw, 160px) 0;
	background: var(--pastel-blue);
}

.manifesto p {
	position: relative;
	z-index: 2;
	font-family: "Archivo Black", Impact, sans-serif;
	font-size: clamp(2.25rem, 6vw, 5.8rem);
	line-height: 0.95;
	text-align: center;
	text-transform: uppercase;
}

.section--geo {
	background: var(--pastel-yellow);
}

.region-card {
	padding: clamp(30px, 5vw, 52px);
	background: var(--white);
}

.region-card h3 {
	margin-bottom: 28px;
	font-size: clamp(1.8rem, 4vw, 3rem);
}

.slash-list {
	display: grid;
	gap: 18px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.slash-list li {
	padding-bottom: 14px;
	border-bottom: 3px solid var(--border);
	font-size: 1rem;
	font-weight: 900;
	line-height: 1.2;
	text-transform: uppercase;
}

.section--slider {
	background: var(--pastel-purple);
}

.slider-head {
	display: flex;
	justify-content: space-between;
	gap: 36px;
	align-items: flex-start;
	margin-bottom: clamp(40px, 7vw, 78px);
}

.slider-head h2 {
	margin-bottom: 22px;
	font-size: clamp(3rem, 7vw, 7rem);
}

.slider-head p:not(.kicker) {
	max-width: 760px;
	font-size: 1.2rem;
	font-weight: 800;
	line-height: 1.25;
}

.slider-actions {
	display: flex;
	gap: 18px;
	flex: 0 0 auto;
}

.arrow-btn {
	width: 62px;
	height: 62px;
	border: 4px solid #000;
	background: var(--white);
	box-shadow: var(--shadow-small);
	color: var(--charcoal);
	font-size: 2rem;
	font-weight: 900;
	line-height: 1;
}

.slider-container {
	position: relative;
	overflow: hidden;
	width: 100%;
}

.slider-container .slider-actions {
	position: absolute;
	z-index: 6;
	right: clamp(12px, 3.5vw, 28px);
	bottom: clamp(14px, 3vw, 32px);
	display: flex;
	gap: 12px;
	margin: 0;
	pointer-events: none;
}

.slider-container .slider-actions .arrow-btn {
	pointer-events: auto;
}

.slider-track {
	display: flex;
	transition: transform 600ms cubic-bezier(0.23, 1, 0.32, 1);
}

.slider-item {
	flex: 0 0 100%;
	padding: 0 clamp(12px, 2.4vw, 20px) clamp(56px, 8vw, 88px) 0;
}

.model-card {
	min-height: 430px;
	display: flex;
	align-items: end;
	padding: clamp(34px, 6vw, 68px);
	overflow: hidden;
	background: transparent;
}

.model-card::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	background-image: var(--bmta-card-img);
	background-size: cover;
	background-position: center;
	opacity: 0.58;
	filter: saturate(1.08) contrast(1.14) brightness(1.03);
}

.model-card::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	background: linear-gradient(
		180deg,
		rgba(255, 255, 255, 0.06) 0%,
		rgba(255, 255, 255, 0.32) 38%,
		rgba(255, 255, 255, 0.88) 72%,
		#ffffff 100%
	);
}

.model-card > * {
	position: relative;
	z-index: 2;
}

.model-card h3 {
	margin-bottom: 18px;
	font-size: clamp(3.7rem, 10vw, 10rem);
	overflow-wrap: anywhere;
}

.model-card p {
	max-width: 780px;
	font-size: clamp(1.25rem, 3vw, 2rem);
	font-weight: 900;
	line-height: 1.1;
	color: #555;
}

.model-card__route {
	margin-bottom: 18px;
	color: var(--charcoal) !important;
}

.section--faq {
	background: #f5f5f5;
}

.faq-list {
	display: grid;
	gap: 36px;
}

.faq-item {
	padding: clamp(28px, 4vw, 42px);
}

.faq-item h3 {
	margin-bottom: 18px;
	font-family: "Inter", system-ui, sans-serif;
	font-size: clamp(1.1rem, 2vw, 1.35rem);
	line-height: 1.2;
	text-decoration: underline;
	text-transform: none;
}

.more-link {
	margin-top: 36px;
	text-align: center;
	font-weight: 900;
	text-transform: uppercase;
}

.pricing-band {
	background: var(--white);
}

.pricing-layout {
	padding: clamp(30px, 5vw, 58px);
	background: var(--pastel-blue);
}

.pricing-figure p,
.pricing-figure small {
	display: block;
	font-weight: 900;
	text-transform: uppercase;
}

.pricing-figure strong {
	display: block;
	font-family: "Archivo Black", Impact, sans-serif;
	font-size: clamp(5rem, 14vw, 12rem);
	line-height: 0.8;
}

.pricing-figure span {
	font-size: 0.45em;
}

.pricing-copy {
	align-self: center;
}

.pricing-copy .brutal-button {
	margin-top: 26px;
}

.final-action {
	padding: clamp(90px, 12vw, 170px) 0;
	background: var(--white);
}

.final-action__layout {
	align-items: center;
}

.final-action h2 {
	font-size: clamp(4rem, 10vw, 10rem);
}

.contact-tile {
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 92px;
	padding: 24px 34px;
	color: var(--charcoal);
	font-family: "Archivo Black", Impact, sans-serif;
	font-size: clamp(1.7rem, 4vw, 3.2rem);
	line-height: 1;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	transition: transform 160ms ease, box-shadow 160ms ease;
}

.contact-tile--green {
	background: #00ff66;
}

.brutal-card.contact-tile {
	border-color: #000;
}

.site-footer-brutal {
	padding: clamp(56px, 8vw, 96px) 0 44px;
	background: var(--charcoal);
	color: var(--white);
}

.site-footer-brutal__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(240px, 0.45fr);
	gap: 48px;
}

.site-footer-brutal__brand {
	margin-bottom: 18px;
	font-family: "Archivo Black", Impact, sans-serif;
	font-size: clamp(2rem, 5vw, 4.6rem);
	line-height: 0.9;
	text-transform: uppercase;
}

.site-footer-brutal__muted {
	max-width: 780px;
	color: rgba(255, 255, 255, 0.72);
	font-weight: 700;
	line-height: 1.35;
}

.site-footer-brutal__links {
	display: grid;
	gap: 12px;
	align-content: start;
}

.site-footer-brutal__links ul {
	display: contents;
	padding: 0;
	margin: 0;
	list-style: none;
}

.site-footer-brutal__links li {
	list-style: none;
}

.site-footer-brutal__links a {
	display: block;
	padding: 10px 0;
	border-bottom: 2px solid rgba(255, 255, 255, 0.35);
	font-weight: 900;
	text-decoration: none;
	text-transform: uppercase;
}

.site-footer-brutal__bottom {
	margin-top: 40px;
	font-size: 0.9rem;
	font-weight: 800;
}

.bottom-command {
	position: fixed;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1000;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 22px;
	padding: 14px clamp(18px, 4vw, 40px);
	border-top: 4px solid var(--border);
	background: var(--charcoal);
	color: var(--white);
}

.bottom-command__brand {
	font-size: 0.68rem;
	font-weight: 900;
	letter-spacing: 0.28em;
	line-height: 1.2;
	text-decoration: none;
	text-transform: uppercase;
}

.bottom-command .btn-black {
	min-height: 44px;
	border: 4px solid #000;
	box-shadow: 4px 4px 0 #000;
	background: var(--white);
	color: #000;
	white-space: nowrap;
}

.entry-section,
.archive-section {
	padding: clamp(70px, 9vw, 132px) 0;
	background: var(--white);
}

.entry-card {
	padding: clamp(28px, 5vw, 64px);
}

.entry-content {
	font-size: clamp(1.05rem, 1.5vw, 1.18rem);
}

.entry-content > * + * {
	margin-top: 1.25em;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
	margin-top: 1.4em;
	margin-bottom: 0.55em;
}

.entry-content h2 {
	font-size: clamp(2.2rem, 5vw, 4.8rem);
}

.entry-content h3 {
	font-size: clamp(1.75rem, 3.5vw, 3.2rem);
}

.entry-content h4 {
	font-size: clamp(1.35rem, 2.4vw, 2.2rem);
}

.entry-content a {
	font-weight: 900;
}

.entry-content blockquote {
	margin: 2rem 0;
	padding: 1.2rem 1.4rem;
	border: 4px solid var(--border);
	box-shadow: var(--shadow-small);
	background: var(--pastel-yellow);
	font-weight: 900;
}

.entry-content img,
.entry-content .wp-block-image img {
	border: 4px solid var(--border);
	box-shadow: var(--shadow-small);
	filter: contrast(1.08) saturate(1.04);
}

.entry-content table {
	width: 100%;
	border-collapse: collapse;
}

.entry-content th,
.entry-content td {
	padding: 12px;
	border: 3px solid var(--border);
	text-align: left;
	vertical-align: top;
}

.post-cats {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	font-weight: 900;
	text-transform: uppercase;
}

.hero__description {
	max-width: 760px;
	margin-top: 22px;
	font-size: 1.2rem;
	font-weight: 800;
}

.archive-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 34px;
}

.archive-card {
	display: flex;
	min-height: 100%;
	flex-direction: column;
	background: var(--pastel-yellow);
}

.archive-card:nth-child(3n + 2) {
	background: var(--pastel-blue);
}

.archive-card:nth-child(3n) {
	background: var(--pastel-purple);
}

.archive-card__image {
	display: block;
	aspect-ratio: 4 / 3;
	border-bottom: 4px solid var(--border);
	background-image: var(--bmta-card-img);
	background-position: center;
	background-size: cover;
	text-decoration: none;
	filter: contrast(1.1) saturate(1.06);
}

.archive-card__body {
	display: grid;
	gap: 16px;
	padding: 26px;
}

.archive-card h2 {
	font-size: clamp(1.65rem, 3vw, 2.6rem);
	line-height: 0.98;
}

.archive-card h2 a {
	text-decoration: none;
}

.entry-meta {
	font-size: 0.78rem;
	font-weight: 900;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.navigation.pagination {
	margin-top: 46px;
	font-weight: 900;
	text-align: center;
	text-transform: uppercase;
}

.page-numbers {
	display: inline-flex;
	min-width: 42px;
	min-height: 42px;
	align-items: center;
	justify-content: center;
	margin: 4px;
	border: 3px solid var(--border);
	background: var(--white);
	text-decoration: none;
}

.page-numbers.current {
	background: var(--charcoal);
	color: var(--white);
}

.post-nav {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px;
	margin-top: 34px;
	padding: 24px;
	background: var(--pastel-blue);
	font-weight: 900;
	text-transform: uppercase;
}

.post-nav div:last-child {
	text-align: right;
}

.comments-area {
	margin-top: 34px;
	padding: clamp(26px, 4vw, 44px);
	background: var(--pastel-yellow);
}

.comments-area h2 {
	margin-bottom: 24px;
	font-size: clamp(1.8rem, 4vw, 3.4rem);
}

.comment-list {
	display: grid;
	gap: 22px;
	padding: 0;
	list-style-position: inside;
}

.comment-body {
	padding: 18px;
	border: 3px solid var(--border);
	background: var(--white);
}

.comment-form {
	display: grid;
	gap: 18px;
	margin-top: 24px;
}

.comment-form label {
	display: block;
	margin-bottom: 8px;
	font-weight: 900;
	text-transform: uppercase;
}

.form-submit .submit,
.search-submit {
	width: auto;
	border: 4px solid var(--border);
	background: #00ff66;
	box-shadow: var(--shadow-small);
	font-weight: 900;
	text-transform: uppercase;
}

.search-form {
	display: flex;
	gap: 12px;
	align-items: stretch;
}

.search-card,
.empty-card {
	max-width: 720px;
	margin-top: 32px;
	padding: 24px;
}

.empty-card {
	margin: 0;
}

@media (max-width: 1020px) {
	.hero__grid,
	.intro-layout,
	.geo-layout,
	.pricing-layout,
	.final-action__layout,
	.site-footer-brutal__grid {
		grid-template-columns: 1fr;
	}

	.card-grid--three,
	.archive-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.hero__aside {
		max-width: 520px;
	}
}

@media (max-width: 760px) {
	body {
		padding-bottom: 104px;
	}

	.shell,
	.shell--narrow {
		width: min(100% - 28px, 1280px);
	}

	.hero {
		min-height: auto;
		padding: 78px 0 62px;
	}

	.hero--home {
		min-height: min(86svh, 700px);
		padding: 12px 0 24px;
		align-items: center;
	}

	.hero--home .kicker {
		margin-bottom: 8px;
	}

	.hero--home h1 {
		margin-bottom: 10px;
	}

	.hero--home .hero__lede {
		margin-bottom: 14px;
	}

	.kicker {
		font-size: 0.62rem;
		line-height: 1.4;
		letter-spacing: 0.05em;
	}

	.hero h1,
	.hero--interior h1 {
		max-width: 100%;
		font-size: clamp(3.05rem, 12vw, 4rem);
		line-height: 0.86;
		overflow-wrap: normal;
		word-break: normal;
	}

	.hero__lede {
		max-width: 100%;
		font-size: clamp(1rem, 4.8vw, 1.2rem);
	}

	.intro-copy h2,
	.section-head h2,
	.slider-head h2,
	.pricing-copy h2,
	.final-action h2 {
		font-size: clamp(2.65rem, 9vw, 5rem);
	}

	.intro-copy p,
	.section-head p,
	.geo-layout .section-head p,
	.pricing-copy p,
	.final-action p,
	.slider-head p:not(.kicker) {
		font-size: clamp(0.95rem, 3.8vw, 1.12rem);
	}

	.manifesto p {
		font-size: clamp(2rem, 7vw, 4.2rem);
	}

	.mini-card h3 {
		font-size: clamp(1.75rem, 5.5vw, 2.75rem);
	}

	.model-card h3 {
		font-size: clamp(2.6rem, 9vw, 5rem);
	}

	.model-card p {
		font-size: clamp(1rem, 3.2vw, 1.25rem);
	}

	.faq-item h3 {
		font-size: clamp(1.15rem, 3.5vw, 1.35rem);
	}

	.proof-card h2 {
		font-size: clamp(2.2rem, 7vw, 3.2rem);
	}

	.hero__aside {
		max-width: calc(100% - 12px);
	}

	.hero__image-card,
	.hero__log {
		transform: translateY(28px);
	}

	.cta-row--stacked,
	.bottom-command,
	.search-form {
		align-items: stretch;
		flex-direction: column;
	}

	.brutal-button,
	.btn-black {
		width: 100%;
	}

	.hero .brutal-button {
		width: auto;
		flex: 0 0 auto;
	}

	.hero .cta-row {
		flex-direction: row;
		flex-wrap: wrap;
		align-items: center;
		justify-content: flex-start;
	}

	.slider-container .slider-actions {
		width: auto;
		display: flex;
		right: clamp(10px, 3vw, 22px);
		bottom: clamp(12px, 3vw, 26px);
	}

	.slider-container .arrow-btn {
		width: 62px;
		height: 62px;
		flex: 0 0 auto;
	}

	.card-grid--three,
	.archive-grid,
	.post-nav {
		grid-template-columns: 1fr;
	}

	.proof-row {
		grid-template-columns: 1fr;
		gap: 8px;
	}

	.model-card {
		min-height: 360px;
	}

	.bottom-command__brand {
		font-size: 0.58rem;
		letter-spacing: 0.08em;
		overflow-wrap: anywhere;
		text-align: center;
	}

	.post-nav div:last-child {
		text-align: left;
	}
}
