@charset "UTF-8";
/* ==========================================================================
   Ashin Iqbal Portfolio - main.css
   v1.0.0

   Design direction
   ----------------
   Palette : signal red on true black. Red is used as a *cut* through the layout
             (the slash motif), never as a background wash - that keeps it loud
             without turning the page into a warning sign.
   Type    : Bricolage Grotesque for display (variable width/weight, slightly odd
             letterforms so headlines do not read as another Inter site),
             Manrope for body, JetBrains Mono for labels, prices and status chips -
             the mono is the developer's own vernacular, used as structure not decor.
   Signature: the red slash. It appears as the logo cut, the eyebrow mark, the
             button hover wipe, the section divider notch, and the photo frame.
             One idea, repeated - which is what makes an identity stick.

   Structure of this file
   ----------------------
   01 Tokens          07 Hero              13 Pricing
   02 Fonts           08 Marquee           14 FAQ
   03 Reset/base      09 Stats             15 Contact & forms
   04 Layout          10 Services          16 Blog & prose
   05 Buttons         11 Work              17 Footer & floating actions
   06 Header/drawer   12 Process/AI        18 Accessibility & motion
   ========================================================================== */

/* ==========================================================================
   01 TOKENS
   ========================================================================== */
:root {
	/* Surfaces */
	--ink: #0a0a0b;
	--carbon: #121215;
	--carbon-2: #17171c;
	--carbon-3: #1e1e24;

	/* Signal */
	--red: #f0192a;
	--red-hot: #ff3b45;
	--ember: #7a0a12;

	/* Text */
	--chalk: #efeff1;
	--ash: #94949e;
	--ash-dim: #6a6a74;

	/* Lines */
	--line: rgba(255, 255, 255, 0.09);
	--line-2: rgba(255, 255, 255, 0.16);
	--live: #35d16f;

	/* Type */
	--f-display: "Bricolage Grotesque", "Arial Black", system-ui, sans-serif;
	--f-body: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
	--f-mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

	/* Scale - fluid, clamped so nothing breaks between 320px and 1920px */
	--t-hero: clamp(2.75rem, 7.6vw, 6.1rem);
	--t-h2: clamp(2rem, 4.4vw, 3.5rem);
	--t-h3: clamp(1.25rem, 2vw, 1.6rem);
	--t-lead: clamp(1.02rem, 1.35vw, 1.2rem);
	--t-body: 1rem;
	--t-sm: 0.875rem;
	--t-xs: 0.75rem;

	/* Space */
	--s1: 0.5rem;
	--s2: 1rem;
	--s3: 1.5rem;
	--s4: 2rem;
	--s5: 3rem;
	--s6: 4rem;
	--s7: 6rem;
	--sec-y: clamp(4.5rem, 9vw, 8rem);

	/* Shape */
	--r-sm: 8px;
	--r-md: 14px;
	--r-lg: 22px;
	--shell: 1240px;
	--header-h: 76px;

	/* Motion */
	--ease: cubic-bezier(0.22, 1, 0.36, 1);
	--ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
	--dur: 0.42s;
}

/* ==========================================================================
   02 FONTS - self-hosted, variable where possible. font-display:swap keeps text
   visible during load, which is what stops the "flash of invisible text" audit.
   ========================================================================== */
@font-face {
	font-family: "Bricolage Grotesque";
	src: url("../fonts/bricolage-var.woff2") format("woff2-variations"),
		url("../fonts/bricolage-var.woff2") format("woff2");
	font-weight: 200 800;
	font-style: normal;
	font-display: swap;
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+2000-206F, U+2122, U+20B9, U+2212;
}
@font-face {
	font-family: "Manrope";
	src: url("../fonts/manrope-var.woff2") format("woff2-variations"),
		url("../fonts/manrope-var.woff2") format("woff2");
	font-weight: 200 800;
	font-style: normal;
	font-display: swap;
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+2000-206F, U+2122, U+20B9, U+2212;
}
@font-face {
	font-family: "JetBrains Mono";
	src: url("../fonts/jetbrains-mono-500.woff2") format("woff2");
	font-weight: 500;
	font-style: normal;
	font-display: swap;
	unicode-range: U+0000-00FF, U+2000-206F, U+20B9, U+2212;
}

/* ==========================================================================
   03 RESET / BASE
   ========================================================================== */
*,
*::before,
*::after {
	box-sizing: border-box;
}
* {
	margin: 0;
}
html {
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
	scroll-padding-top: calc(var(--header-h) + 20px);
}
body {
	background: var(--ink);
	color: var(--chalk);
	font-family: var(--f-body);
	font-size: var(--t-body);
	font-weight: 400;
	line-height: 1.65;
	letter-spacing: -0.005em;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
	text-rendering: optimizeLegibility;
}
body.is-locked {
	overflow: hidden;
}
img,
svg,
video,
canvas {
	display: block;
	max-width: 100%;
	height: auto;
}
a {
	color: inherit;
	text-decoration: none;
}
button,
input,
select,
textarea {
	font: inherit;
	color: inherit;
}
button {
	background: none;
	border: 0;
	cursor: pointer;
}
ul,
ol {
	list-style: none;
	padding: 0;
}
::selection {
	background: var(--red);
	color: #fff;
}
:focus-visible {
	outline: 2px solid var(--red-hot);
	outline-offset: 3px;
	border-radius: 3px;
}

h1,
h2,
h3,
h4 {
	font-family: var(--f-display);
	font-weight: 700;
	line-height: 1.04;
	letter-spacing: -0.028em;
	font-variation-settings: "wdth" 100;
	text-wrap: balance;
}

/* Mono label used for eyebrows, prices, chips and stats. */
.eyebrow,
.mono {
	font-family: var(--f-mono);
	font-size: var(--t-xs);
	font-weight: 500;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--ash);
}
.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.65rem;
	margin-bottom: var(--s2);
}
.eyebrow__slash {
	width: 22px;
	height: 3px;
	background: var(--red);
	transform: skewX(-22deg);
	flex: none;
}

.icon {
	flex: none;
	transition: transform var(--dur) var(--ease);
}

/* ==========================================================================
   04 LAYOUT
   ========================================================================== */
.shell {
	width: 100%;
	max-width: var(--shell);
	margin-inline: auto;
	padding-inline: clamp(1.15rem, 4.4vw, 2.5rem);
}
.section {
	position: relative;
	padding-block: var(--sec-y);
}
.section--tight {
	padding-block: clamp(3rem, 6vw, 5rem);
}
.section--carbon {
	background: var(--carbon);
}
.section--edge {
	border-top: 1px solid var(--line);
}

/* The slash divider - signature motif as a structural element. */
.section--slash::before {
	content: "";
	position: absolute;
	top: -1px;
	left: clamp(1.15rem, 4.4vw, 2.5rem);
	width: 54px;
	height: 4px;
	background: var(--red);
	transform: skewX(-22deg);
}

.sec-head {
	max-width: 62ch;
	margin-bottom: clamp(2.25rem, 4vw, 3.5rem);
}
.sec-head--center {
	margin-inline: auto;
	text-align: center;
}
.sec-head--center .eyebrow {
	justify-content: center;
}
.sec-head__title {
	font-size: var(--t-h2);
}
.sec-head__title em {
	font-style: normal;
	color: var(--red);
}
.sec-head__text {
	margin-top: var(--s3);
	color: var(--ash);
	font-size: var(--t-lead);
	max-width: 56ch;
	text-wrap: pretty;
}
.sec-head--center .sec-head__text {
	margin-inline: auto;
}

.grid {
	display: grid;
	gap: clamp(1rem, 2vw, 1.5rem);
}
.grid--2 {
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
}
.grid--3 {
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
}
.grid--4 {
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr));
}

.skip-link {
	position: absolute;
	left: -9999px;
	z-index: 999;
	padding: 0.85rem 1.4rem;
	background: var(--red);
	color: #fff;
	font-weight: 700;
	border-radius: 0 0 var(--r-sm) 0;
}
.skip-link:focus {
	left: 0;
	top: 0;
}

/* ==========================================================================
   05 BUTTONS
   Hover is a skewed red wipe - same slash motif, so the interaction reinforces
   the identity instead of being a generic colour swap.
   ========================================================================== */
.btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.6rem;
	padding: 0.95rem 1.6rem;
	border-radius: 100px;
	font-family: var(--f-body);
	font-size: 0.95rem;
	font-weight: 700;
	letter-spacing: -0.01em;
	line-height: 1;
	overflow: hidden;
	isolation: isolate;
	transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease), color 0.28s var(--ease), border-color 0.28s var(--ease);
	-webkit-tap-highlight-color: transparent;
}
.btn__label,
.btn__icon {
	position: relative;
	z-index: 2;
}
.btn::before {
	content: "";
	position: absolute;
	inset: -2px -30% -2px -2px;
	background: var(--red-hot);
	transform: skewX(-16deg) scaleX(0);
	transform-origin: left center;
	transition: transform 0.42s var(--ease);
	z-index: 1;
}
.btn:hover::before,
.btn:focus-visible::before {
	transform: skewX(-16deg) scaleX(1);
}
.btn:hover,
.btn:focus-visible {
	transform: translateY(-2px);
}
.btn:active {
	transform: translateY(0) scale(0.985);
}
.btn:hover .btn__icon {
	transform: translateX(4px);
}

.btn--solid {
	background: var(--red);
	color: #fff;
	box-shadow: 0 6px 22px -8px rgba(240, 25, 42, 0.75);
}
.btn--solid:hover {
	box-shadow: 0 12px 30px -8px rgba(240, 25, 42, 0.9);
}

.btn--ghost {
	border: 1px solid var(--line-2);
	color: var(--chalk);
	background: transparent;
}
.btn--ghost:hover,
.btn--ghost:focus-visible {
	color: #fff;
	border-color: transparent;
}

.btn--light {
	background: var(--chalk);
	color: var(--ink);
}
.btn--light:hover,
.btn--light:focus-visible {
	color: #fff;
}

.btn--sm {
	padding: 0.7rem 1.15rem;
	font-size: 0.85rem;
}
.btn--lg {
	padding: 1.1rem 2rem;
	font-size: 1.02rem;
}
.btn--block {
	display: flex;
	width: 100%;
}

/* Text link with a slash underline that grows on hover. */
.tlink {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	font-weight: 700;
	color: var(--chalk);
	position: relative;
	padding-bottom: 3px;
}
.tlink::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 2px;
	background: var(--red);
	transform: scaleX(0);
	transform-origin: right;
	transition: transform 0.4s var(--ease);
}
.tlink:hover::after,
.tlink:focus-visible::after {
	transform: scaleX(1);
	transform-origin: left;
}
.tlink:hover .icon {
	transform: translate(3px, -3px);
}

/* Status dot / chip */
.status-dot {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-family: var(--f-mono);
	font-size: 0.68rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--ash);
}
.status-dot::before {
	content: "";
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--live);
	box-shadow: 0 0 0 0 rgba(53, 209, 111, 0.6);
	animation: pulse 2.6s infinite;
}
.status-dot--ongoing::before {
	background: #f5b301;
	box-shadow: 0 0 0 0 rgba(245, 179, 1, 0.6);
}
@keyframes pulse {
	70% {
		box-shadow: 0 0 0 9px rgba(53, 209, 111, 0);
	}
	100% {
		box-shadow: 0 0 0 0 rgba(53, 209, 111, 0);
	}
}

/* Rating badge */
.rating {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	padding: 0.45rem 0.85rem 0.45rem 0.7rem;
	border: 1px solid var(--line);
	border-radius: 100px;
	background: rgba(255, 255, 255, 0.03);
	font-size: 0.8rem;
	color: var(--ash);
	transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.rating:hover {
	border-color: var(--line-2);
	background: rgba(255, 255, 255, 0.06);
}
.rating__stars {
	display: inline-flex;
	gap: 1px;
	color: #ffb800;
}
.rating__text strong {
	color: var(--chalk);
}
.rating--stack {
	flex-direction: column;
	gap: 0.2rem;
	border-radius: var(--r-md);
	padding: 0.7rem 1rem;
	text-align: center;
}

/* ==========================================================================
   06 HEADER + DRAWER
   ========================================================================== */
.site-header {
	position: fixed;
	inset: 0 0 auto 0;
	z-index: 100;
	height: var(--header-h);
	display: flex;
	align-items: center;
	background: transparent;
	transition: background 0.35s var(--ease), border-color 0.35s var(--ease), height 0.35s var(--ease), backdrop-filter 0.35s var(--ease);
	border-bottom: 1px solid transparent;
}
.site-header.is-stuck {
	height: 64px;
	background: rgba(10, 10, 11, 0.82);
	-webkit-backdrop-filter: saturate(160%) blur(14px);
	backdrop-filter: saturate(160%) blur(14px);
	border-bottom-color: var(--line);
}
.site-header.is-hidden {
	transform: translateY(-100%);
}
.site-header {
	transition: background 0.35s var(--ease), border-color 0.35s var(--ease), height 0.35s var(--ease), transform 0.4s var(--ease);
}
.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--s3);
	width: 100%;
}
.site-header__progress {
	position: absolute;
	left: 0;
	bottom: -1px;
	height: 2px;
	width: 0;
	background: linear-gradient(90deg, var(--ember), var(--red) 60%, var(--red-hot));
	transition: width 0.1s linear;
}

/* Brand */
.brand {
	display: inline-flex;
	align-items: center;
	gap: 0.7rem;
	flex: none;
}
.brand__mark {
	color: var(--chalk);
	transition: transform 0.5s var(--ease);
}
.brand:hover .brand__mark {
	transform: rotate(-8deg) scale(1.05);
}
.brand__text {
	display: flex;
	flex-direction: column;
	line-height: 1.1;
}
.brand__name {
	font-family: var(--f-display);
	font-size: 1.22rem;
	font-weight: 800;
	letter-spacing: -0.03em;
}
.brand__dot {
	color: var(--red);
}
.brand__role {
	font-family: var(--f-mono);
	font-size: 0.56rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--ash-dim);
}
.custom-logo-link {
	display: inline-block;
	flex: none;
}
.custom-logo {
	max-height: 44px;
	width: auto;
}

/* Desktop nav */
.nav__list {
	display: flex;
	align-items: center;
	gap: clamp(0.5rem, 1.6vw, 1.4rem);
}
.nav__list a {
	position: relative;
	display: inline-block;
	padding: 0.4rem 0.15rem;
	font-size: 0.93rem;
	font-weight: 600;
	color: var(--ash);
	transition: color 0.3s var(--ease);
}
.nav__list a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 2px;
	background: var(--red);
	transform: skewX(-22deg) scaleX(0);
	transform-origin: left;
	transition: transform 0.36s var(--ease);
}
.nav__list a:hover,
.nav__list a:focus-visible {
	color: var(--chalk);
}
.nav__list a:hover::after,
.nav__list a:focus-visible::after {
	transform: skewX(-22deg) scaleX(1);
}
.nav__list .current-menu-item > a,
.nav__list .current_page_parent > a {
	color: var(--chalk);
}
.nav__list .current-menu-item > a::after,
.nav__list .current_page_parent > a::after {
	transform: skewX(-22deg) scaleX(1);
}

.site-header__actions {
	display: flex;
	align-items: center;
	gap: 0.7rem;
	flex: none;
}
.header-call {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	font-family: var(--f-mono);
	font-size: 0.78rem;
	color: var(--ash);
	transition: color 0.3s var(--ease);
}
.header-call:hover {
	color: var(--chalk);
}
.header-call:hover .icon {
	transform: rotate(-12deg);
}

/* Burger - three bars that morph into an X. */
.burger {
	display: none;
	width: 46px;
	height: 46px;
	border: 1px solid var(--line);
	border-radius: 50%;
	align-items: center;
	justify-content: center;
	transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
	flex: none;
}
.burger:hover {
	border-color: var(--red);
	background: rgba(240, 25, 42, 0.08);
}
.burger__box {
	position: relative;
	display: block;
	width: 20px;
	height: 14px;
}
.burger__bar {
	position: absolute;
	left: 0;
	height: 2px;
	background: var(--chalk);
	border-radius: 2px;
	transition: transform 0.42s var(--ease), opacity 0.2s var(--ease), width 0.42s var(--ease), background 0.3s var(--ease);
}
.burger__bar--1 {
	top: 0;
	width: 20px;
}
.burger__bar--2 {
	top: 6px;
	width: 14px;
}
.burger__bar--3 {
	top: 12px;
	width: 20px;
}
.burger:hover .burger__bar--2 {
	width: 20px;
}
.burger[aria-expanded="true"] .burger__bar--1 {
	transform: translateY(6px) rotate(45deg);
	background: var(--red);
}
.burger[aria-expanded="true"] .burger__bar--2 {
	opacity: 0;
	transform: translateX(-10px);
}
.burger[aria-expanded="true"] .burger__bar--3 {
	transform: translateY(-6px) rotate(-45deg);
	background: var(--red);
}

/* Drawer */
.drawer {
	position: fixed;
	inset: 0;
	z-index: 99;
	background: var(--ink);
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: calc(var(--header-h) + 1.5rem) clamp(1.15rem, 6vw, 3rem) 2rem;
	overflow-y: auto;
	clip-path: circle(0% at calc(100% - 42px) 40px);
}
.drawer[hidden] {
	display: none;
}
.drawer::before {
	content: "";
	position: absolute;
	top: -20%;
	right: -30%;
	width: 70vw;
	height: 70vw;
	max-width: 620px;
	max-height: 620px;
	background: radial-gradient(circle, rgba(240, 25, 42, 0.16), transparent 66%);
	pointer-events: none;
}
.drawer__inner {
	position: relative;
	width: 100%;
	max-width: 520px;
	margin-inline: auto;
}
.drawer__list {
	display: flex;
	flex-direction: column;
	gap: 0.15rem;
	margin-bottom: var(--s5);
	counter-reset: drawer;
}
.drawer__list li {
	border-bottom: 1px solid var(--line);
}
.drawer__list a {
	display: flex;
	align-items: baseline;
	gap: 0.9rem;
	padding: 0.85rem 0;
	font-family: var(--f-display);
	font-size: clamp(1.9rem, 8vw, 2.6rem);
	font-weight: 700;
	letter-spacing: -0.03em;
	color: var(--chalk);
	transition: color 0.3s var(--ease), transform 0.4s var(--ease);
}
.drawer__list li {
	counter-increment: drawer;
}
.drawer__list a::before {
	content: "0" counter(drawer);
	font-family: var(--f-mono);
	font-size: 0.72rem;
	letter-spacing: 0.1em;
	color: var(--ash-dim);
	transition: color 0.3s var(--ease);
}
.drawer__list a:hover,
.drawer__list a:focus-visible {
	color: var(--red);
	transform: translateX(8px);
}
.drawer__list a:hover::before {
	color: var(--red);
}
.drawer__foot {
	display: flex;
	flex-direction: column;
	gap: 0.85rem;
}
.drawer__contact {
	display: inline-flex;
	align-items: center;
	gap: 0.65rem;
	font-family: var(--f-mono);
	font-size: 0.82rem;
	color: var(--ash);
	transition: color 0.3s var(--ease);
}
.drawer__contact:hover {
	color: var(--chalk);
}
.drawer__foot .rating {
	align-self: flex-start;
}

@media (max-width: 1024px) {
	.nav,
	.header-call {
		display: none;
	}
	.burger {
		display: inline-flex;
	}
}
@media (max-width: 560px) {
	.header-cta {
		display: none;
	}
	.brand__role {
		display: none;
	}
}

/* ==========================================================================
   07 HERO
   The thesis: a stacked typographic claim on the left, the person on the right.
   Proof chips sit ON the portrait so the face and the evidence are read together -
   that pairing is what converts a cold visitor on a personal-service site.
   ========================================================================== */
.hero {
	position: relative;
	min-height: 100vh;
	min-height: 100svh;
	display: flex;
	align-items: center;
	padding-top: calc(var(--header-h) + clamp(1.5rem, 4vw, 3rem));
	padding-bottom: clamp(3rem, 6vw, 4.5rem);
	overflow: hidden;
}

/* Blueprint hairlines - a developer's grid, at 3% so it registers as texture only. */
.hero__grid {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
	background-size: calc(100% / 6) 100%;
	-webkit-mask-image: linear-gradient(180deg, transparent, #000 22%, #000 72%, transparent);
	mask-image: linear-gradient(180deg, transparent, #000 22%, #000 72%, transparent);
}
.hero__glow {
	position: absolute;
	top: 8%;
	right: -12%;
	width: 60vw;
	height: 60vw;
	max-width: 780px;
	max-height: 780px;
	background: radial-gradient(circle, rgba(240, 25, 42, 0.22), rgba(240, 25, 42, 0.05) 45%, transparent 68%);
	pointer-events: none;
	filter: blur(6px);
}
.hero__inner {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.82fr);
	gap: clamp(2rem, 5vw, 4.5rem);
	align-items: center;
	width: 100%;
}

.hero__status {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	padding: 0.42rem 0.95rem 0.42rem 0.8rem;
	border: 1px solid var(--line);
	border-radius: 100px;
	background: rgba(255, 255, 255, 0.03);
	margin-bottom: clamp(1.1rem, 2.4vw, 1.7rem);
}
.hero__status .status-dot {
	font-size: 0.66rem;
}
.hero__status-sep {
	width: 1px;
	height: 12px;
	background: var(--line-2);
}
.hero__status-place {
	font-family: var(--f-mono);
	font-size: 0.66rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--ash-dim);
}

.hero__title {
	font-size: var(--t-hero);
	line-height: 0.95;
	letter-spacing: -0.038em;
	margin-bottom: clamp(1.1rem, 2.2vw, 1.6rem);
}
.hero__line {
	display: block;
}
/* The red word sits on the slash - the signature motif at its largest. */
.hero__hl {
	position: relative;
	display: inline-block;
	color: var(--red);
	font-style: normal;
	padding-inline: 0.06em;
	z-index: 1;
}
.hero__hl::before {
	content: "";
	position: absolute;
	inset: 0.12em -0.1em 0.06em -0.1em;
	background: var(--red);
	transform: skewX(-9deg) scaleX(var(--wipe, 0));
	transform-origin: left center;
	z-index: -1;
	border-radius: 3px;
}
.hero__hl.is-filled {
	color: #fff;
}
html:not(.js-motion) .hero__hl::before {
	--wipe: 1;
}
html:not(.js-motion) .hero__hl {
	color: #fff;
}

.hero__sub {
	max-width: 54ch;
	font-size: var(--t-lead);
	color: var(--ash);
	line-height: 1.7;
	text-wrap: pretty;
}
.hero__sub strong {
	color: var(--chalk);
	font-weight: 700;
}
.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.8rem;
	margin-top: clamp(1.5rem, 3vw, 2.2rem);
}
.hero__proof {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.55rem 1.4rem;
	margin-top: clamp(1.6rem, 3vw, 2.3rem);
	padding-top: clamp(1.2rem, 2.4vw, 1.7rem);
	border-top: 1px solid var(--line);
}
.hero__proof li {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	font-family: var(--f-mono);
	font-size: 0.72rem;
	letter-spacing: 0.06em;
	color: var(--ash-dim);
}
.hero__proof strong {
	color: var(--chalk);
	font-weight: 500;
}
.hero__proof .icon {
	color: var(--red);
}

/* Portrait */
.hero__figure {
	position: relative;
	justify-self: center;
	width: min(100%, 420px);
}
.hero__frame {
	position: absolute;
	inset: 18px -18px -18px 18px;
	border: 1px solid var(--red);
	border-radius: var(--r-lg);
	opacity: 0.5;
	pointer-events: none;
}
.hero__portrait {
	position: relative;
	border-radius: var(--r-lg);
	overflow: hidden;
	background: linear-gradient(180deg, var(--carbon-2), var(--carbon));
	/* Notch cut from the top-right corner - the slash, applied to the frame itself. */
	clip-path: polygon(0 0, 74% 0, 100% 13%, 100% 100%, 0 100%);
}
.hero__portrait img {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	object-position: 50% 12%;
	filter: grayscale(0.18) contrast(1.05);
	transition: filter 0.6s var(--ease), transform 0.9s var(--ease);
}
.hero__figure:hover .hero__portrait img {
	filter: grayscale(0) contrast(1.08);
	transform: scale(1.03);
}
.hero__portrait::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(190deg, transparent 45%, rgba(10, 10, 11, 0.72));
	pointer-events: none;
}
.hero__chip {
	position: absolute;
	z-index: 3;
	display: flex;
	flex-direction: column;
	gap: 0.15rem;
	padding: 0.75rem 1rem;
	background: rgba(18, 18, 21, 0.92);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	border: 1px solid var(--line);
	border-radius: var(--r-md);
	box-shadow: 0 18px 40px -20px rgba(0, 0, 0, 0.9);
}
.hero__chip--stats {
	top: 8%;
	left: -8%;
}
.hero__chip--rating {
	bottom: 7%;
	right: -6%;
	align-items: flex-start;
}
.hero__chip-value {
	font-family: var(--f-display);
	font-size: 1.35rem;
	font-weight: 800;
	letter-spacing: -0.03em;
	line-height: 1;
}
.hero__chip-value em {
	font-style: normal;
	color: var(--red);
}
.hero__chip-label {
	font-family: var(--f-mono);
	font-size: 0.6rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--ash-dim);
}
.hero__chip .rating {
	border: 0;
	background: none;
	padding: 0;
}
.hero__scroll {
	position: absolute;
	left: 50%;
	bottom: 1.4rem;
	transform: translateX(-50%);
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	gap: 0.4rem;
	font-family: var(--f-mono);
	font-size: 0.6rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--ash-dim);
	z-index: 3;
}
.hero__scroll-rail {
	width: 1px;
	height: 42px;
	background: var(--line-2);
	position: relative;
	overflow: hidden;
}
.hero__scroll-rail::after {
	content: "";
	position: absolute;
	inset: 0 auto auto 0;
	width: 1px;
	height: 16px;
	background: var(--red);
	animation: railRun 2.2s var(--ease-in-out) infinite;
}
@keyframes railRun {
	0% {
		transform: translateY(-18px);
	}
	100% {
		transform: translateY(46px);
	}
}

@media (max-width: 900px) {
	.hero {
		min-height: auto;
		padding-top: calc(var(--header-h) + 2rem);
	}
	.hero__inner {
		grid-template-columns: 1fr;
		gap: 2.5rem;
	}
	.hero__figure {
		order: -1;
		width: min(78%, 330px);
		justify-self: start;
	}
	.hero__chip--stats {
		left: auto;
		right: -6%;
		top: 4%;
	}
	.hero__chip--rating {
		right: auto;
		left: -6%;
		bottom: 4%;
	}
	.hero__scroll {
		display: none;
	}
	.hero__grid {
		background-size: calc(100% / 3) 100%;
	}
}
@media (max-width: 480px) {
	.hero__chip {
		padding: 0.55rem 0.8rem;
	}
	.hero__chip-value {
		font-size: 1.1rem;
	}
}

/* ==========================================================================
   08 MARQUEE - real client names and cities, not logos-as-decoration.
   ========================================================================== */
.ticker {
	position: relative;
	border-block: 1px solid var(--line);
	background: var(--carbon);
	padding-block: 0.85rem;
	overflow: hidden;
	-webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
	mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.ticker__track {
	display: flex;
	width: max-content;
	gap: 0;
	animation: tickerRun 46s linear infinite;
	will-change: transform;
}
.ticker:hover .ticker__track {
	animation-play-state: paused;
}
.ticker__item {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	padding-inline: 1.5rem;
	font-family: var(--f-mono);
	font-size: 0.74rem;
	letter-spacing: 0.06em;
	color: var(--ash-dim);
	white-space: nowrap;
}
.ticker__item strong {
	color: var(--chalk);
	font-weight: 500;
}
.ticker__item::after {
	content: "";
	width: 12px;
	height: 2px;
	background: var(--red);
	transform: skewX(-22deg);
	margin-left: 1.1rem;
	opacity: 0.7;
}
@keyframes tickerRun {
	to {
		transform: translate3d(-50%, 0, 0);
	}
}

/* ==========================================================================
   09 STATS
   ========================================================================== */
.stats {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1px;
	background: var(--line);
	border: 1px solid var(--line);
	border-radius: var(--r-md);
	overflow: hidden;
}
.stat {
	background: var(--ink);
	padding: clamp(1.2rem, 2.6vw, 2rem);
	transition: background 0.4s var(--ease);
}
.stat:hover {
	background: var(--carbon-2);
}
.stat__value {
	font-family: var(--f-display);
	font-size: clamp(2rem, 4.4vw, 3.1rem);
	font-weight: 800;
	letter-spacing: -0.04em;
	line-height: 1;
	display: flex;
	align-items: baseline;
	gap: 2px;
}
.stat__value sup {
	font-size: 0.42em;
	color: var(--red);
	top: -0.6em;
}
.stat__label {
	margin-top: 0.5rem;
	font-family: var(--f-mono);
	font-size: 0.66rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--ash-dim);
}
@media (max-width: 720px) {
	.stats {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* ==========================================================================
   10 SERVICES
   ========================================================================== */
.svc {
	position: relative;
	padding: clamp(1.4rem, 2.6vw, 1.9rem);
	background: var(--carbon);
	border: 1px solid var(--line);
	border-radius: var(--r-md);
	overflow: hidden;
	transition: transform 0.45s var(--ease), border-color 0.45s var(--ease), background 0.45s var(--ease);
}
.svc::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 3px;
	background: var(--red);
	transform: skewX(-30deg) scaleX(0);
	transform-origin: left;
	transition: transform 0.5s var(--ease);
}
.svc:hover {
	transform: translateY(-6px);
	border-color: var(--line-2);
	background: var(--carbon-2);
}
.svc:hover::before {
	transform: skewX(-30deg) scaleX(1);
}
.svc__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	border-radius: 12px;
	background: rgba(240, 25, 42, 0.11);
	border: 1px solid rgba(240, 25, 42, 0.24);
	color: var(--red);
	margin-bottom: 1.1rem;
	transition: transform 0.5s var(--ease), background 0.4s var(--ease);
}
.svc:hover .svc__icon {
	transform: translateY(-3px) rotate(-6deg);
	background: rgba(240, 25, 42, 0.18);
}
.svc__title {
	font-size: 1.12rem;
	margin-bottom: 0.55rem;
	letter-spacing: -0.02em;
}
.svc__text {
	font-size: 0.93rem;
	color: var(--ash);
	line-height: 1.62;
}

/* ==========================================================================
   11 WORK
   ========================================================================== */
.work-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr));
	gap: clamp(1rem, 2vw, 1.6rem);
}
.work-card {
	border: 1px solid var(--line);
	border-radius: var(--r-md);
	overflow: hidden;
	background: var(--carbon);
	transition: transform 0.45s var(--ease), border-color 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.work-card:hover {
	transform: translateY(-6px);
	border-color: rgba(240, 25, 42, 0.5);
	box-shadow: 0 26px 50px -30px rgba(0, 0, 0, 0.95);
}
.work-card__media {
	position: relative;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: linear-gradient(140deg, var(--carbon-2), var(--ink));
	border-bottom: 1px solid var(--line);
}
.work-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.7s var(--ease);
}
.work-card:hover .work-card__media img {
	transform: scale(1.05);
}
.work-card__placeholder {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0.4rem;
	background-image: radial-gradient(circle at 30% 20%, rgba(240, 25, 42, 0.14), transparent 60%);
}
.work-card__initial {
	font-family: var(--f-display);
	font-size: 3.4rem;
	font-weight: 800;
	color: rgba(255, 255, 255, 0.14);
	line-height: 1;
	letter-spacing: -0.04em;
	transition: color 0.5s var(--ease);
}
.work-card:hover .work-card__initial {
	color: rgba(240, 25, 42, 0.5);
}
.work-card__url {
	font-family: var(--f-mono);
	font-size: 0.66rem;
	color: var(--ash-dim);
	letter-spacing: 0.04em;
	max-width: 85%;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.work-card__status {
	position: absolute;
	top: 0.75rem;
	left: 0.85rem;
	padding: 0.3rem 0.6rem;
	background: rgba(10, 10, 11, 0.78);
	-webkit-backdrop-filter: blur(6px);
	backdrop-filter: blur(6px);
	border-radius: 100px;
	font-size: 0.6rem;
}
.work-card__body {
	padding: 1.1rem 1.2rem 1.25rem;
}
.work-card__title {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.6rem;
	font-size: 1.08rem;
	letter-spacing: -0.02em;
	margin-bottom: 0.3rem;
}
.work-card__go {
	color: var(--ash-dim);
	transition: transform 0.4s var(--ease), color 0.4s var(--ease);
}
.work-card:hover .work-card__go {
	color: var(--red);
	transform: translate(3px, -3px);
}
.work-card__type {
	font-size: 0.88rem;
	color: var(--ash);
	margin-bottom: 0.75rem;
	line-height: 1.5;
}
.work-card__meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.6rem;
	flex-wrap: wrap;
	font-family: var(--f-mono);
	font-size: 0.65rem;
	letter-spacing: 0.06em;
	color: var(--ash-dim);
}
.work-card__meta span {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
}
.work-card__tag {
	padding: 0.22rem 0.55rem;
	border: 1px solid var(--line);
	border-radius: 100px;
	text-transform: uppercase;
}

/* Filter row on the Work page */
.filters {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-bottom: clamp(1.6rem, 3vw, 2.4rem);
}
.filters__btn {
	padding: 0.5rem 1rem;
	border: 1px solid var(--line);
	border-radius: 100px;
	font-family: var(--f-mono);
	font-size: 0.7rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--ash);
	transition: color 0.3s var(--ease), border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.filters__btn:hover {
	color: var(--chalk);
	border-color: var(--line-2);
}
.filters__btn.is-active {
	background: var(--red);
	border-color: var(--red);
	color: #fff;
}
.work-card.is-hidden {
	display: none;
}

/* ==========================================================================
   12 PROCESS + AI SECTION
   ========================================================================== */
.process {
	position: relative;
	display: grid;
	gap: 0;
}
.process__rail {
	position: absolute;
	left: clamp(28px, 4vw, 40px);
	top: 0.5rem;
	bottom: 3rem;
	width: 1px;
	background: var(--line);
}
.process__rail-fill {
	position: absolute;
	inset: 0 auto 0 0;
	width: 1px;
	height: 100%;
	background: linear-gradient(180deg, var(--red), var(--ember));
	transform: scaleY(var(--fill, 0));
	transform-origin: top;
}
html:not(.js-motion) .process__rail-fill {
	--fill: 1;
}
.step {
	position: relative;
	display: grid;
	grid-template-columns: clamp(56px, 8vw, 80px) 1fr;
	gap: clamp(1rem, 3vw, 2.5rem);
	padding-block: clamp(1.4rem, 3vw, 2.2rem);
	border-bottom: 1px solid var(--line);
}
.step:last-child {
	border-bottom: 0;
}
.step__no {
	position: relative;
	font-family: var(--f-mono);
	font-size: 0.72rem;
	letter-spacing: 0.12em;
	color: var(--red);
	padding-left: 0;
}
.step__no::before {
	content: "";
	position: absolute;
	left: clamp(28px, 4vw, 40px);
	top: 0.45rem;
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: var(--ink);
	border: 2px solid var(--red);
	transform: translateX(-4px);
}
.step__body {
	max-width: 62ch;
}
.step__meta {
	font-family: var(--f-mono);
	font-size: 0.66rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--ash-dim);
	margin-bottom: 0.4rem;
}
.step__title {
	font-size: clamp(1.25rem, 2.4vw, 1.75rem);
	margin-bottom: 0.5rem;
}
.step__text {
	color: var(--ash);
	line-height: 1.68;
}

/* AI panel - a diff/log panel, because that is what the argument is actually about. */
.ai-split {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: clamp(2rem, 5vw, 4rem);
	align-items: center;
}
.ai-panel {
	border: 1px solid var(--line);
	border-radius: var(--r-md);
	background: var(--ink);
	overflow: hidden;
	box-shadow: 0 30px 60px -40px rgba(0, 0, 0, 1);
}
.ai-panel__bar {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.7rem 0.95rem;
	border-bottom: 1px solid var(--line);
	background: var(--carbon-2);
}
.ai-panel__dot {
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: var(--carbon-3);
}
.ai-panel__dot:first-child {
	background: var(--red);
}
.ai-panel__name {
	margin-left: auto;
	font-family: var(--f-mono);
	font-size: 0.64rem;
	letter-spacing: 0.1em;
	color: var(--ash-dim);
}
.ai-panel__body {
	padding: 1rem 0.5rem 1.15rem;
	font-family: var(--f-mono);
	font-size: 0.76rem;
	line-height: 1.9;
}
.ai-line {
	display: grid;
	grid-template-columns: 26px 1fr;
	gap: 0.5rem;
	padding: 0.1rem 0.85rem;
	color: var(--ash);
}
.ai-line span:first-child {
	color: var(--ash-dim);
	text-align: right;
	opacity: 0.6;
}
.ai-line--minus {
	background: rgba(240, 25, 42, 0.08);
	color: #ff8f95;
}
.ai-line--plus {
	background: rgba(53, 209, 111, 0.08);
	color: #7ce4a4;
}
.ai-line--note {
	color: var(--ash-dim);
}
.ai-points {
	display: grid;
	gap: 1rem;
	margin-top: var(--s4);
}
.ai-point {
	display: grid;
	grid-template-columns: 22px 1fr;
	gap: 0.85rem;
	align-items: start;
}
.ai-point .icon {
	color: var(--red);
	margin-top: 4px;
}
.ai-point strong {
	display: block;
	font-family: var(--f-display);
	font-size: 1.02rem;
	letter-spacing: -0.02em;
	margin-bottom: 0.15rem;
}
.ai-point span {
	color: var(--ash);
	font-size: 0.93rem;
	line-height: 1.6;
}
@media (max-width: 860px) {
	.ai-split {
		grid-template-columns: 1fr;
	}
}

/* ==========================================================================
   13 PRICING
   Two currencies behind a toggle. The middle plan is raised rather than merely
   badged, so the recommendation is legible before any text is read.
   ========================================================================== */
.price-switch {
	display: inline-flex;
	padding: 4px;
	border: 1px solid var(--line);
	border-radius: 100px;
	background: var(--carbon);
	margin-inline: auto;
	position: relative;
}
.price-switch__btn {
	position: relative;
	z-index: 2;
	padding: 0.6rem 1.4rem;
	border-radius: 100px;
	font-family: var(--f-mono);
	font-size: 0.72rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--ash);
	transition: color 0.35s var(--ease);
}
.price-switch__btn.is-active {
	color: #fff;
}
.price-switch__pill {
	position: absolute;
	z-index: 1;
	top: 4px;
	bottom: 4px;
	border-radius: 100px;
	background: var(--red);
	transition: transform 0.45s var(--ease), width 0.45s var(--ease);
	box-shadow: 0 6px 18px -8px rgba(240, 25, 42, 0.9);
}
.price-lead {
	text-align: center;
	color: var(--ash);
	margin-top: var(--s3);
	font-size: 0.95rem;
}

.price-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: clamp(1rem, 2vw, 1.5rem);
	align-items: start;
	margin-top: clamp(2rem, 4vw, 3rem);
}
.price-set[hidden] {
	display: none;
}
.plan {
	position: relative;
	display: flex;
	flex-direction: column;
	padding: clamp(1.5rem, 2.6vw, 2.1rem);
	border: 1px solid var(--line);
	border-radius: var(--r-lg);
	background: var(--carbon);
	transition: transform 0.45s var(--ease), border-color 0.45s var(--ease);
	height: 100%;
}
.plan:hover {
	transform: translateY(-5px);
	border-color: var(--line-2);
}
.plan--popular {
	background: linear-gradient(180deg, var(--carbon-2), var(--carbon));
	border-color: rgba(240, 25, 42, 0.42);
	box-shadow: 0 30px 60px -34px rgba(240, 25, 42, 0.55);
}
@media (min-width: 861px) {
	.plan--popular {
		transform: translateY(-14px);
	}
	.plan--popular:hover {
		transform: translateY(-20px);
	}
}
.plan__badge {
	position: absolute;
	top: -12px;
	left: 50%;
	transform: translateX(-50%);
	padding: 0.35rem 0.9rem;
	background: var(--red);
	color: #fff;
	border-radius: 100px;
	font-family: var(--f-mono);
	font-size: 0.6rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	white-space: nowrap;
	box-shadow: 0 8px 20px -10px rgba(240, 25, 42, 1);
}
.plan__name {
	font-family: var(--f-mono);
	font-size: 0.72rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--red);
	margin-bottom: 0.55rem;
}
.plan__tagline {
	font-size: 0.95rem;
	color: var(--ash);
	line-height: 1.5;
	min-height: 2.9em;
}
.plan__price {
	display: flex;
	align-items: baseline;
	gap: 0.15rem;
	margin: 1.1rem 0 0.35rem;
	font-family: var(--f-display);
	letter-spacing: -0.045em;
}
.plan__prefix {
	font-family: var(--f-mono);
	font-size: 0.7rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--ash-dim);
	margin-right: 0.3rem;
	align-self: center;
}
.plan__sym {
	font-size: clamp(1.3rem, 2.2vw, 1.7rem);
	font-weight: 600;
	color: var(--ash);
}
.plan__amount {
	font-size: clamp(2.3rem, 4.6vw, 3.2rem);
	font-weight: 800;
	line-height: 1;
}
.plan__period {
	font-family: var(--f-mono);
	font-size: 0.72rem;
	letter-spacing: 0.08em;
	color: var(--ash-dim);
	margin-left: 0.2rem;
}
.plan__care {
	font-family: var(--f-mono);
	font-size: 0.66rem;
	letter-spacing: 0.06em;
	color: var(--ash-dim);
	margin-bottom: 1.2rem;
}
.plan__list {
	display: grid;
	gap: 0.62rem;
	padding-top: 1.2rem;
	margin-bottom: 1.6rem;
	border-top: 1px solid var(--line);
}
.plan__list li {
	display: grid;
	grid-template-columns: 18px 1fr;
	gap: 0.6rem;
	font-size: 0.9rem;
	line-height: 1.5;
	color: var(--ash);
}
.plan__list .icon {
	color: var(--red);
	margin-top: 4px;
}
.plan__list li:first-child {
	color: var(--chalk);
	font-weight: 600;
}
.plan__cta {
	margin-top: auto;
}
.plan__cta .btn {
	width: 100%;
}
.price-note {
	margin-top: var(--s4);
	text-align: center;
	font-size: 0.85rem;
	color: var(--ash-dim);
}
.price-note strong {
	color: var(--chalk);
}
@media (max-width: 860px) {
	.price-grid {
		grid-template-columns: 1fr;
		max-width: 460px;
		margin-inline: auto;
	}
	.plan__tagline {
		min-height: 0;
	}
}

/* ==========================================================================
   14 FAQ
   ========================================================================== */
.faq {
	max-width: 860px;
	margin-inline: auto;
	border-top: 1px solid var(--line);
}
.faq__item {
	border-bottom: 1px solid var(--line);
}
.faq__q {
	margin: 0;
	font-family: var(--f-body);
}
.faq__btn {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.2rem;
	width: 100%;
	padding: 1.25rem 0;
	text-align: left;
	font-family: var(--f-display);
	font-size: clamp(1.02rem, 1.9vw, 1.25rem);
	font-weight: 700;
	letter-spacing: -0.02em;
	color: var(--chalk);
	transition: color 0.3s var(--ease);
}
.faq__btn:hover {
	color: var(--red);
}
.faq__sign {
	position: relative;
	flex: none;
	width: 34px;
	height: 34px;
	border: 1px solid var(--line);
	border-radius: 50%;
	transition: border-color 0.35s var(--ease), background 0.35s var(--ease), transform 0.45s var(--ease);
}
.faq__sign::before,
.faq__sign::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 12px;
	height: 2px;
	background: currentColor;
	transform: translate(-50%, -50%);
	transition: transform 0.45s var(--ease), opacity 0.3s var(--ease);
}
.faq__sign::after {
	transform: translate(-50%, -50%) rotate(90deg);
}
.faq__btn:hover .faq__sign {
	border-color: var(--red);
	background: rgba(240, 25, 42, 0.1);
}
.faq__btn[aria-expanded="true"] .faq__sign {
	transform: rotate(180deg);
	border-color: var(--red);
	background: var(--red);
	color: #fff;
}
.faq__btn[aria-expanded="true"] .faq__sign::after {
	opacity: 0;
	transform: translate(-50%, -50%) rotate(0deg);
}
.faq__panel {
	overflow: hidden;
}
.faq__panel[hidden] {
	display: none;
}
.faq__answer {
	padding: 0 0 1.4rem;
	max-width: 68ch;
	color: var(--ash);
	line-height: 1.72;
}

/* ==========================================================================
   15 CONTACT, CTA BAND & FORMS
   ========================================================================== */
.cta-band {
	position: relative;
	overflow: hidden;
	background: linear-gradient(120deg, var(--ember) -20%, var(--ink) 46%);
	border-block: 1px solid var(--line);
}
.cta-band::after {
	content: "";
	position: absolute;
	top: -40%;
	right: -6%;
	width: 46vw;
	height: 180%;
	background: var(--red);
	opacity: 0.14;
	transform: skewX(-14deg);
	pointer-events: none;
}
.cta-band__inner {
	position: relative;
	z-index: 2;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: var(--s4);
}
.cta-band__title {
	font-size: clamp(1.75rem, 3.6vw, 2.85rem);
	max-width: 18ch;
}
.cta-band__text {
	margin-top: 0.8rem;
	color: var(--ash);
	max-width: 46ch;
}
.cta-band__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.8rem;
}

.contact-split {
	display: grid;
	grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
	gap: clamp(2rem, 4vw, 3.5rem);
	align-items: start;
}
.contact-card {
	border: 1px solid var(--line);
	border-radius: var(--r-lg);
	background: var(--carbon);
	padding: clamp(1.5rem, 3vw, 2.2rem);
}
.contact-list {
	display: grid;
	gap: 0.2rem;
	margin-top: var(--s3);
}
.contact-list a,
.contact-list span {
	display: flex;
	align-items: center;
	gap: 0.85rem;
	padding: 0.85rem 0;
	border-bottom: 1px solid var(--line);
	color: var(--chalk);
	font-size: 0.95rem;
	transition: color 0.3s var(--ease), padding-left 0.35s var(--ease);
}
.contact-list a .icon {
	color: var(--red);
}
.contact-list a:hover {
	color: var(--red);
	padding-left: 6px;
}
.contact-list small {
	display: block;
	font-family: var(--f-mono);
	font-size: 0.62rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--ash-dim);
}

/* Form */
.lead-form {
	border: 1px solid var(--line);
	border-radius: var(--r-lg);
	background: var(--carbon);
	padding: clamp(1.4rem, 3vw, 2.2rem);
}
.lead-form__title {
	font-size: 1.35rem;
	margin-bottom: 1.2rem;
}
.field-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
}
.field {
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
	margin: 0;
}
.field--full {
	grid-column: 1 / -1;
}
.field label {
	font-family: var(--f-mono);
	font-size: 0.66rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--ash);
}
.req {
	color: var(--red);
}
.field input,
.field textarea,
.field select {
	width: 100%;
	padding: 0.85rem 1rem;
	background: var(--ink);
	border: 1px solid var(--line);
	border-radius: var(--r-sm);
	font-size: 0.95rem;
	color: var(--chalk);
	transition: border-color 0.3s var(--ease), background 0.3s var(--ease), box-shadow 0.3s var(--ease);
	-webkit-appearance: none;
	appearance: none;
}
.field textarea {
	resize: vertical;
	min-height: 118px;
	line-height: 1.6;
}
.field input::placeholder,
.field textarea::placeholder {
	color: var(--ash-dim);
}
.field input:focus,
.field textarea:focus,
.field select:focus {
	outline: none;
	border-color: var(--red);
	background: #0d0d10;
	box-shadow: 0 0 0 3px rgba(240, 25, 42, 0.14);
}
.select-wrap {
	position: relative;
	display: block;
}
.select-wrap::after {
	content: "";
	position: absolute;
	right: 1rem;
	top: 50%;
	width: 7px;
	height: 7px;
	border-right: 2px solid var(--ash);
	border-bottom: 2px solid var(--ash);
	transform: translateY(-70%) rotate(45deg);
	pointer-events: none;
}
.field select option {
	background: var(--ink);
	color: var(--chalk);
}
.field.has-error input,
.field.has-error textarea {
	border-color: var(--red);
}
.field__error {
	font-size: 0.76rem;
	color: var(--red-hot);
	min-height: 0;
}
.hp {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}
.lead-form__foot {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 1rem;
	margin-top: 1.4rem;
}
.lead-form__note {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	font-size: 0.78rem;
	color: var(--ash-dim);
}
.lead-form__note .icon {
	color: var(--live);
}
.form-status {
	margin-top: 1rem;
	font-size: 0.9rem;
	line-height: 1.6;
}
.form-status:empty {
	margin: 0;
}
.form-status.is-ok {
	padding: 0.9rem 1.1rem;
	border-radius: var(--r-sm);
	background: rgba(53, 209, 111, 0.1);
	border: 1px solid rgba(53, 209, 111, 0.3);
	color: #9fe9bd;
}
.form-status.is-error {
	padding: 0.9rem 1.1rem;
	border-radius: var(--r-sm);
	background: rgba(240, 25, 42, 0.1);
	border: 1px solid rgba(240, 25, 42, 0.3);
	color: #ffa3a9;
}
.btn.is-loading {
	pointer-events: none;
	opacity: 0.75;
}
.btn.is-loading .btn__icon {
	animation: spin 0.8s linear infinite;
}
@keyframes spin {
	to {
		transform: rotate(360deg);
	}
}
@media (max-width: 860px) {
	.contact-split {
		grid-template-columns: 1fr;
	}
}
@media (max-width: 560px) {
	.field-grid {
		grid-template-columns: 1fr;
	}
}

/* ==========================================================================
   16 PAGE HEADERS, BLOG & PROSE
   ========================================================================== */
.page-hero {
	position: relative;
	padding-top: calc(var(--header-h) + clamp(3rem, 7vw, 5.5rem));
	padding-bottom: clamp(2.5rem, 5vw, 4rem);
	overflow: hidden;
	border-bottom: 1px solid var(--line);
}
.page-hero::before {
	content: "";
	position: absolute;
	top: -30%;
	left: -10%;
	width: 55vw;
	height: 55vw;
	max-width: 640px;
	max-height: 640px;
	background: radial-gradient(circle, rgba(240, 25, 42, 0.14), transparent 68%);
	pointer-events: none;
}
.page-hero__inner {
	position: relative;
	z-index: 2;
	max-width: 44ch;
}
.page-hero__title {
	font-size: clamp(2.4rem, 6vw, 4.2rem);
	letter-spacing: -0.04em;
	line-height: 0.98;
}
.page-hero__title em {
	font-style: normal;
	color: var(--red);
}
.page-hero__text {
	margin-top: var(--s3);
	color: var(--ash);
	font-size: var(--t-lead);
	max-width: 56ch;
	text-wrap: pretty;
}

.crumbs {
	margin-bottom: var(--s3);
}
.crumbs ol {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	font-family: var(--f-mono);
	font-size: 0.66rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--ash-dim);
}
.crumbs li + li::before {
	content: "/";
	margin-right: 0.5rem;
	color: var(--red);
}
.crumbs a:hover {
	color: var(--chalk);
}

/* Blog */
.post-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(min(100%, 330px), 1fr));
	gap: clamp(1rem, 2vw, 1.8rem);
}
.post-card {
	display: flex;
	flex-direction: column;
	border: 1px solid var(--line);
	border-radius: var(--r-md);
	background: var(--carbon);
	overflow: hidden;
	transition: transform 0.45s var(--ease), border-color 0.45s var(--ease);
}
.post-card:hover {
	transform: translateY(-5px);
	border-color: rgba(240, 25, 42, 0.45);
}
.post-card__media {
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: linear-gradient(140deg, var(--carbon-2), var(--ink));
	border-bottom: 1px solid var(--line);
}
.post-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.7s var(--ease);
}
.post-card:hover .post-card__media img {
	transform: scale(1.05);
}
.post-card__body {
	display: flex;
	flex-direction: column;
	gap: 0.55rem;
	padding: 1.2rem 1.3rem 1.4rem;
	flex: 1;
}
.post-card__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem 0.9rem;
	font-family: var(--f-mono);
	font-size: 0.64rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--ash-dim);
}
.post-card__title {
	font-size: 1.18rem;
	letter-spacing: -0.025em;
	line-height: 1.2;
}
.post-card__title a:hover {
	color: var(--red);
}
.post-card__excerpt {
	font-size: 0.92rem;
	color: var(--ash);
	line-height: 1.6;
}
.post-card__more {
	margin-top: auto;
	padding-top: 0.9rem;
}

.blog-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 300px;
	gap: clamp(2rem, 4vw, 3.5rem);
	align-items: start;
}
.sidebar .widget {
	border: 1px solid var(--line);
	border-radius: var(--r-md);
	background: var(--carbon);
	padding: 1.3rem;
	margin-bottom: 1.2rem;
}
.widget__title {
	font-size: 1rem;
	margin-bottom: 0.85rem;
}
.sidebar ul li {
	padding: 0.4rem 0;
	border-bottom: 1px solid var(--line);
	font-size: 0.9rem;
	color: var(--ash);
}
.sidebar a:hover {
	color: var(--red);
}
@media (max-width: 900px) {
	.blog-layout {
		grid-template-columns: 1fr;
	}
}

/* Long-form prose - used by single posts, pages and the privacy policy. */
.prose {
	max-width: 72ch;
	font-size: 1.045rem;
	line-height: 1.78;
	color: #d7d7dc;
}
.prose > * + * {
	margin-top: 1.35em;
}
.prose h2 {
	font-size: clamp(1.5rem, 3vw, 2.1rem);
	margin-top: 2.4em;
	margin-bottom: -0.4em;
	letter-spacing: -0.03em;
	color: var(--chalk);
	scroll-margin-top: calc(var(--header-h) + 20px);
}
.prose h3 {
	font-size: clamp(1.16rem, 2.2vw, 1.4rem);
	margin-top: 2em;
	margin-bottom: -0.5em;
	color: var(--chalk);
}
.prose h2::after {
	content: "";
	display: block;
	width: 40px;
	height: 3px;
	margin-top: 0.55rem;
	background: var(--red);
	transform: skewX(-22deg);
	transform-origin: left;
}
.prose a {
	color: var(--red-hot);
	text-decoration: underline;
	text-underline-offset: 3px;
	text-decoration-thickness: 1px;
	transition: color 0.3s var(--ease);
}
.prose a:hover {
	color: #fff;
}
.prose strong {
	color: var(--chalk);
	font-weight: 700;
}
.prose ul,
.prose ol {
	padding-left: 1.3rem;
}
.prose ul li {
	list-style: none;
	position: relative;
	padding-left: 1.1rem;
	margin-bottom: 0.5rem;
}
.prose ul li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.72em;
	width: 12px;
	height: 2px;
	background: var(--red);
	transform: skewX(-22deg);
}
.prose ol {
	list-style: decimal;
}
.prose ol li {
	margin-bottom: 0.5rem;
	padding-left: 0.3rem;
}
.prose ol li::marker {
	color: var(--red);
	font-family: var(--f-mono);
	font-size: 0.85em;
}
.prose blockquote {
	padding: 1rem 0 1rem 1.4rem;
	border-left: 3px solid var(--red);
	font-size: 1.1rem;
	color: var(--chalk);
	font-style: italic;
}
.prose code {
	font-family: var(--f-mono);
	font-size: 0.85em;
	background: var(--carbon-2);
	border: 1px solid var(--line);
	border-radius: 5px;
	padding: 0.15em 0.4em;
}
.prose pre {
	background: var(--carbon);
	border: 1px solid var(--line);
	border-radius: var(--r-md);
	padding: 1.1rem 1.2rem;
	overflow-x: auto;
	font-size: 0.85rem;
}
.prose pre code {
	background: none;
	border: 0;
	padding: 0;
}
.prose img,
.prose figure {
	border-radius: var(--r-md);
	overflow: hidden;
}
.prose figcaption {
	margin-top: 0.6rem;
	font-family: var(--f-mono);
	font-size: 0.7rem;
	color: var(--ash-dim);
	text-align: center;
}
.prose table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.92rem;
}
.prose th,
.prose td {
	padding: 0.7rem 0.9rem;
	border: 1px solid var(--line);
	text-align: left;
}
.prose th {
	background: var(--carbon-2);
	font-family: var(--f-mono);
	font-size: 0.7rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--ash);
}
.prose hr {
	border: 0;
	height: 1px;
	background: var(--line);
	margin-block: 2.5em;
}

/* Single post furniture */
.entry-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem 1.2rem;
	font-family: var(--f-mono);
	font-size: 0.68rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--ash-dim);
	margin-top: var(--s3);
}
.entry-media {
	margin-block: clamp(2rem, 4vw, 3rem);
	border-radius: var(--r-lg);
	overflow: hidden;
	border: 1px solid var(--line);
}
.post-nav {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
	gap: 1rem;
	margin-top: var(--s6);
	padding-top: var(--s4);
	border-top: 1px solid var(--line);
}
.post-nav__item {
	padding: 1.1rem 1.3rem;
	border: 1px solid var(--line);
	border-radius: var(--r-md);
	transition: border-color 0.35s var(--ease), transform 0.35s var(--ease);
}
.post-nav__item:hover {
	border-color: var(--red);
	transform: translateY(-3px);
}
.post-nav__label {
	font-family: var(--f-mono);
	font-size: 0.62rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--ash-dim);
}
.post-nav__title {
	margin-top: 0.35rem;
	font-family: var(--f-display);
	font-size: 1.02rem;
	letter-spacing: -0.02em;
}
.pagination {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem;
	justify-content: center;
	margin-top: var(--s6);
}
.pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	height: 42px;
	padding-inline: 0.6rem;
	border: 1px solid var(--line);
	border-radius: 100px;
	font-family: var(--f-mono);
	font-size: 0.78rem;
	color: var(--ash);
	transition: all 0.3s var(--ease);
}
.pagination .page-numbers:hover {
	border-color: var(--line-2);
	color: var(--chalk);
}
.pagination .current {
	background: var(--red);
	border-color: var(--red);
	color: #fff;
}

/* Search form */
.search-form {
	display: flex;
	gap: 0.5rem;
}
.search-form input[type="search"] {
	flex: 1;
	padding: 0.75rem 1rem;
	background: var(--ink);
	border: 1px solid var(--line);
	border-radius: var(--r-sm);
	color: var(--chalk);
}
.search-form input[type="search"]:focus {
	outline: none;
	border-color: var(--red);
}
.search-form button {
	padding: 0.75rem 1.1rem;
	background: var(--red);
	color: #fff;
	border-radius: var(--r-sm);
	font-weight: 700;
	transition: background 0.3s var(--ease);
}
.search-form button:hover {
	background: var(--red-hot);
}

/* 404 */
.error-404 {
	text-align: center;
	padding-block: clamp(5rem, 14vw, 9rem);
}
.error-404__code {
	font-family: var(--f-display);
	font-size: clamp(5rem, 20vw, 12rem);
	font-weight: 800;
	line-height: 0.85;
	letter-spacing: -0.06em;
	color: transparent;
	-webkit-text-stroke: 2px var(--line-2);
}
.error-404__code span {
	color: var(--red);
	-webkit-text-stroke: 0;
}

/* Testimonials */
.quote-card {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	padding: clamp(1.4rem, 2.6vw, 2rem);
	border: 1px solid var(--line);
	border-radius: var(--r-md);
	background: var(--carbon);
	transition: transform 0.45s var(--ease), border-color 0.45s var(--ease);
}
.quote-card:hover {
	transform: translateY(-5px);
	border-color: var(--line-2);
}
.quote-card .icon--quote {
	color: var(--red);
	opacity: 0.55;
}
.quote-card__text {
	font-size: 1.02rem;
	line-height: 1.7;
	color: var(--chalk);
}
.quote-card__who {
	display: flex;
	align-items: center;
	gap: 0.8rem;
	margin-top: auto;
	padding-top: 1rem;
	border-top: 1px solid var(--line);
}
.quote-card__avatar {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	object-fit: cover;
	flex: none;
}
.quote-card__name {
	font-family: var(--f-display);
	font-size: 1rem;
	letter-spacing: -0.02em;
}
.quote-card__role {
	font-family: var(--f-mono);
	font-size: 0.65rem;
	letter-spacing: 0.08em;
	color: var(--ash-dim);
}

/* ==========================================================================
   17 FOOTER + FLOATING ACTIONS
   ========================================================================== */
.site-footer {
	position: relative;
	border-top: 1px solid var(--line);
	background: var(--carbon);
	padding-top: clamp(2.5rem, 5vw, 3.5rem);
	padding-bottom: calc(1.5rem + env(safe-area-inset-bottom));
}
.site-footer::before {
	content: "";
	position: absolute;
	top: -1px;
	left: clamp(1.15rem, 4.4vw, 2.5rem);
	width: 54px;
	height: 3px;
	background: var(--red);
	transform: skewX(-22deg);
}
.site-footer__top {
	display: grid;
	grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 1fr);
	gap: clamp(1.6rem, 4vw, 3rem);
	padding-bottom: clamp(1.8rem, 3.5vw, 2.6rem);
}
.site-footer__line {
	margin: 0.9rem 0 1.1rem;
	max-width: 42ch;
	font-size: 0.9rem;
	color: var(--ash);
	line-height: 1.6;
}
.site-footer__h {
	font-family: var(--f-mono);
	font-size: 0.66rem;
	font-weight: 500;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--ash-dim);
	margin-bottom: 0.9rem;
}
.site-footer__contact ul,
.site-footer__menu {
	display: grid;
	gap: 0.55rem;
}
.site-footer__contact a,
.site-footer__hours,
.site-footer__menu a {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	font-size: 0.9rem;
	color: var(--ash);
	transition: color 0.3s var(--ease), transform 0.3s var(--ease);
}
.site-footer__contact a:hover,
.site-footer__menu a:hover {
	color: var(--red);
	transform: translateX(3px);
}
.site-footer__contact .icon {
	color: var(--red);
	opacity: 0.8;
}
.site-footer__social {
	display: flex;
	gap: 0.5rem;
	margin-top: 1.2rem;
}
.site-footer__social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border: 1px solid var(--line);
	border-radius: 50%;
	color: var(--ash);
	transition: all 0.35s var(--ease);
}
.site-footer__social a:hover {
	color: #fff;
	background: var(--red);
	border-color: var(--red);
	transform: translateY(-3px);
}
.site-footer__bottom {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 0.8rem;
	padding-top: 1.3rem;
	border-top: 1px solid var(--line);
	font-family: var(--f-mono);
	font-size: 0.68rem;
	letter-spacing: 0.06em;
	color: var(--ash-dim);
}
.site-footer .brand__role {
	display: block;
}
@media (max-width: 860px) {
	.site-footer__top {
		grid-template-columns: 1fr 1fr;
	}
	.site-footer__brand {
		grid-column: 1 / -1;
	}
}

/* Floating WhatsApp */
.wa-float {
	position: fixed;
	right: clamp(1rem, 2.5vw, 1.6rem);
	bottom: clamp(1rem, 2.5vw, 1.6rem);
	z-index: 90;
	display: inline-flex;
	align-items: center;
	gap: 0;
	padding: 0.85rem;
	border-radius: 100px;
	background: #1fae54;
	color: #fff;
	box-shadow: 0 14px 34px -12px rgba(31, 174, 84, 0.75);
	transition: gap 0.4s var(--ease), padding 0.4s var(--ease), transform 0.35s var(--ease), background 0.3s var(--ease);
	overflow: hidden;
	white-space: nowrap;
}
.wa-float__label {
	max-width: 0;
	opacity: 0;
	font-size: 0.9rem;
	font-weight: 700;
	transition: max-width 0.45s var(--ease), opacity 0.3s var(--ease);
}
.wa-float:hover,
.wa-float:focus-visible {
	background: #17a64c;
	transform: translateY(-3px);
	gap: 0.55rem;
	padding-right: 1.25rem;
}
.wa-float:hover .wa-float__label,
.wa-float:focus-visible .wa-float__label {
	max-width: 120px;
	opacity: 1;
}

/* Mobile action bar */
.action-bar {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 95;
	display: none;
	background: rgba(10, 10, 11, 0.94);
	-webkit-backdrop-filter: blur(14px);
	backdrop-filter: blur(14px);
	border-top: 1px solid var(--line);
	padding: 0.5rem 0.5rem calc(0.5rem + env(safe-area-inset-bottom));
	gap: 0.4rem;
}
.action-bar__item {
	flex: 1;
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0.2rem;
	padding: 0.5rem 0.3rem;
	border-radius: 12px;
	font-family: var(--f-mono);
	font-size: 0.6rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--ash);
	transition: background 0.3s var(--ease), color 0.3s var(--ease);
}
.action-bar__item:active {
	background: var(--carbon-2);
}
.action-bar__item--cta {
	background: var(--red);
	color: #fff;
}
@media (max-width: 700px) {
	.action-bar {
		display: flex;
	}
	.wa-float {
		display: none;
	}
	body {
		padding-bottom: 68px;
	}
	.drawer {
		padding-bottom: 90px;
	}
}

/* ==========================================================================
   18 ACCESSIBILITY & MOTION
   The reduced-motion block is deliberately last so it overrides everything.
   GSAP tweens are additionally guarded in JS via gsap.matchMedia(), so motion is
   stopped at the source rather than only visually suppressed here.
   ========================================================================== */
.screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}
	*,
	*::before,
	*::after {
		animation-duration: 0.001ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.001ms !important;
		scroll-behavior: auto !important;
	}
	.ticker__track {
		animation: none;
		transform: none;
	}
	.hero__scroll-rail::after {
		animation: none;
	}
	.status-dot::before {
		animation: none;
	}
	[data-anim] {
		opacity: 1 !important;
		transform: none !important;
	}
	.btn::before {
		display: none;
	}
}

@media print {
	.site-header,
	.drawer,
	.wa-float,
	.action-bar,
	.hero__scroll,
	.cta-band,
	.lead-form {
		display: none !important;
	}
	body {
		background: #fff;
		color: #000;
	}
}
