/* ==========================================================================
   Davie Mobile — main stylesheet
   Brand: black #000 / red #CC302D / white (from the logo).
   Red on white passes AA (5.2:1). On dark backgrounds small red text uses
   --red-bright (6.4:1); #CC302D is only used there for fills and large type.
   ========================================================================== */

@font-face {
	font-family: "Archivo";
	src: url("../fonts/archivo-variable.woff2") format("woff2");
	font-weight: 100 900;
	font-stretch: 62% 125%;
	font-display: swap;
}

@font-face {
	font-family: "Inter";
	src: url("../fonts/inter-variable.woff2") format("woff2");
	font-weight: 100 900;
	font-display: swap;
}

:root {
	--red: #cc302d;
	--red-600: #a92421;
	--red-bright: #ff5a54;
	--red-soft: #fdecec;
	--ink: #09090b;
	--ink-2: #111114;
	--ink-3: #1a1a1f;
	--ink-4: #26262d;
	--paper: #ffffff;
	--paper-2: #f6f6f7;
	--paper-3: #ececef;
	--text: #141418;
	--muted: #585863;
	--muted-dark: #a9a9b3;
	--line: #e3e3e8;
	--line-dark: rgba(255, 255, 255, 0.09);

	--font-display: "Archivo", "Arial Black", system-ui, sans-serif;
	--font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

	--radius-sm: 10px;
	--radius: 18px;
	--radius-lg: 28px;
	--shadow: 0 1px 2px rgba(10, 10, 14, 0.04), 0 8px 24px rgba(10, 10, 14, 0.06);
	--shadow-lg: 0 30px 60px -20px rgba(10, 10, 14, 0.25);
	--shadow-red: 0 14px 34px -10px rgba(204, 48, 45, 0.55);

	--container: 1240px;
	--gutter: clamp(16px, 4vw, 32px);
	--section: clamp(72px, 10vw, 128px);
	--header-h: 76px;
	--ease: cubic-bezier(0.22, 1, 0.36, 1);
	--ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ---------- Reset & base ---------- */

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

html {
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
	scroll-padding-top: calc(var(--header-h) + 24px);
}

body {
	margin: 0;
	font-family: var(--font-body);
	font-size: 1.0625rem;
	line-height: 1.65;
	color: var(--text);
	background: var(--paper);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
}

body.menu-open { overflow: hidden; }

img, svg, video, iframe { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; }
h1, h2, h3, h4 { margin: 0; line-height: 1.1; font-family: var(--font-display); font-weight: 800; letter-spacing: -0.02em; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; }
address { font-style: normal; }
::selection { background: var(--red); color: #fff; }

:focus-visible {
	outline: 3px solid var(--red-bright);
	outline-offset: 3px;
	border-radius: 6px;
}

.icon { width: 1.25em; height: 1.25em; flex: none; }
.icon.flip { transform: scaleX(-1); }

.sr-only {
	position: absolute !important;
	width: 1px; height: 1px;
	padding: 0; margin: -1px;
	overflow: hidden; clip: rect(0 0 0 0);
	white-space: nowrap; border: 0;
}

.skip-link {
	position: fixed; top: 12px; left: 12px; z-index: 1000;
	padding: 10px 16px; border-radius: 8px;
	background: #fff; color: var(--ink); font-weight: 700;
	transform: translateY(-150%); transition: transform .2s;
}
.skip-link:focus { transform: none; }

.container {
	width: 100%;
	max-width: var(--container);
	margin-inline: auto;
	padding-inline: var(--gutter);
}
.container--narrow { max-width: 820px; }
.container--mid { max-width: 1040px; }

.muted { color: var(--muted); }
.accent { color: var(--red); }
.section--dark .accent,
.page-hero .accent,
.hero .accent,
.article-hero .accent { color: var(--red-bright); }

/* ---------- Buttons & small UI ---------- */

.btn {
	--bg: var(--ink); --fg: #fff; --bd: transparent;
	position: relative;
	display: inline-flex; align-items: center; justify-content: center; gap: .55em;
	min-height: 48px; padding: .8em 1.4em;
	border: 1.5px solid var(--bd); border-radius: 999px;
	background: var(--bg); color: var(--fg);
	font-family: var(--font-display); font-weight: 700; font-size: .98rem;
	font-stretch: 105%; letter-spacing: .01em; line-height: 1;
	text-decoration: none; white-space: nowrap;
	overflow: hidden; isolation: isolate;
	transition: transform .35s var(--ease), box-shadow .35s var(--ease), background-color .25s, color .25s, border-color .25s;
	will-change: transform;
}
.btn::after {
	content: ""; position: absolute; inset: 0; z-index: -1;
	background: radial-gradient(120px circle at var(--mx, 50%) var(--my, 50%), rgba(255,255,255,.28), transparent 60%);
	opacity: 0; transition: opacity .3s;
}
.btn:hover::after { opacity: 1; }
.btn .icon { transition: transform .35s var(--ease); }
.btn:hover .icon-arrow { transform: translateX(4px); }
.btn:active { transform: scale(.97); }

.btn--primary { --bg: var(--red); box-shadow: var(--shadow-red); }
.btn--primary:hover { --bg: var(--red-600); }
.btn--dark { --bg: var(--ink); }
.btn--dark:hover { --bg: var(--ink-4); }
.btn--light { --bg: #fff; --fg: var(--ink); }
.btn--light:hover { --bg: var(--paper-3); }
.btn--ghost { --bg: rgba(255,255,255,.06); --fg: #fff; --bd: rgba(255,255,255,.22); backdrop-filter: blur(8px); }
.btn--ghost:hover { --bd: rgba(255,255,255,.5); --bg: rgba(255,255,255,.12); }
.btn--outline-light { --bg: transparent; --fg: #fff; --bd: rgba(255,255,255,.3); }
.btn--outline-light:hover { --bd: #fff; }
.btn--lg { min-height: 56px; padding: 1em 1.7em; font-size: 1.05rem; }
.btn--sm { min-height: 40px; padding: .6em 1.1em; font-size: .9rem; box-shadow: none; }
.btn--block { width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.btn-row--center { justify-content: center; }

.icon-btn {
	display: inline-grid; place-items: center;
	width: 46px; height: 46px; border-radius: 50%;
	border: 1.5px solid var(--line); background: #fff; color: var(--ink);
	transition: background-color .25s, color .25s, border-color .25s, transform .3s var(--ease);
}
.icon-btn:hover { background: var(--ink); color: #fff; border-color: var(--ink); transform: translateY(-2px); }

.chip {
	display: inline-flex; align-items: center; gap: 6px;
	padding: .42em .95em; border-radius: 999px;
	border: 1.5px solid var(--line); background: #fff;
	font-size: .85rem; font-weight: 600; text-decoration: none; color: var(--text);
	transition: all .25s var(--ease);
}
.chip:hover { border-color: var(--ink); }
.chip.is-active { background: var(--ink); border-color: var(--ink); color: #fff; }
.chip--red { background: var(--red); border-color: var(--red); color: #fff; }

.pill {
	display: inline-flex; align-items: center; gap: 10px;
	padding: 8px 16px 8px 12px; border-radius: 999px;
	background: rgba(255,255,255,.06); border: 1px solid var(--line-dark);
	color: #e6e6ea; font-size: .88rem; font-weight: 500;
	backdrop-filter: blur(8px);
}
.pill__dot {
	width: 8px; height: 8px; border-radius: 50%; background: var(--red-bright);
	box-shadow: 0 0 0 0 rgba(255,90,84,.6); animation: ping 2s infinite;
}
@keyframes ping { 70% { box-shadow: 0 0 0 10px rgba(255,90,84,0); } 100% { box-shadow: 0 0 0 0 rgba(255,90,84,0); } }

.eyebrow {
	display: inline-flex; align-items: center; gap: 10px;
	margin-bottom: 14px;
	font-family: var(--font-display); font-weight: 700; font-stretch: 112%;
	font-size: .78rem; letter-spacing: .16em; text-transform: uppercase;
	color: var(--red);
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: currentColor; }
.section--dark .eyebrow,
.eyebrow--light { color: var(--red-bright); }

.price-tag {
	display: inline-flex; align-items: center;
	padding: .45em .9em; border-radius: 999px;
	background: var(--red-soft); color: var(--red-600);
	font-weight: 700; font-size: .9rem;
}
.price-tag--sm { font-size: .78rem; }

.ticks { list-style: none; display: grid; gap: 10px; }
.ticks li { display: flex; gap: 10px; align-items: flex-start; }
.ticks .icon {
	width: 22px; height: 22px; padding: 4px; margin-top: 1px;
	border-radius: 50%; background: var(--red); color: #fff; stroke-width: 3;
}
.ticks--sm { font-size: .93rem; gap: 7px; }
.ticks--sm .icon { width: 19px; height: 19px; }

.text-link {
	display: inline-flex; align-items: center; gap: 8px;
	font-weight: 700; text-decoration: none; color: var(--red-bright);
}
.text-link:hover .icon { transform: translateX(4px); }
.text-link .icon { transition: transform .3s var(--ease); }

/* ---------- Sections ---------- */

.section { position: relative; padding-block: var(--section); }
.section--tight { padding-block: clamp(48px, 6vw, 72px); }
.section--flush-top { padding-top: 0; }
.section--light { background: var(--paper); }
.section--muted { background: var(--paper-2); }
.section--dark { background: var(--ink); color: #f2f2f4; }
.section--dark p { color: var(--muted-dark); }

.section-head { max-width: 760px; margin-bottom: clamp(36px, 5vw, 60px); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }
.section-head--left { margin-bottom: 28px; }

.section-title {
	font-size: clamp(2rem, 4.6vw, 3.4rem);
	font-stretch: 110%;
	line-height: 1.04;
	text-wrap: balance;
}
.section-title--sm { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 10px; }
.lede { margin-top: 16px; font-size: 1.15rem; color: var(--muted); text-wrap: pretty; }
.section--dark .lede { color: var(--muted-dark); }

.split-head {
	display: flex; align-items: flex-end; justify-content: space-between;
	gap: 20px; flex-wrap: wrap; margin-bottom: 32px;
}
.split-head .section-head { margin-bottom: 0; }

/* ---------- Scroll progress / announcement ---------- */

.scroll-progress { position: fixed; inset: 0 0 auto; height: 3px; z-index: 200; pointer-events: none; }
.scroll-progress span {
	display: block; height: 100%; width: 100%;
	background: linear-gradient(90deg, var(--red), var(--red-bright));
	transform-origin: 0 50%; transform: scaleX(var(--p, 0));
}

.announce {
	position: relative; z-index: 60;
	background: var(--red); color: #fff;
	text-align: center; font-size: .88rem; font-weight: 600; padding: 8px 0;
}

/* ---------- Header ---------- */

.site-header {
	position: fixed; top: 0; left: 0; right: 0; z-index: 100;
	height: var(--header-h);
	transition: background-color .35s, box-shadow .35s, transform .45s var(--ease), height .35s var(--ease);
}
.announce ~ .site-header { top: 37px; }
.site-header.is-scrolled {
	top: 0;
	--header-h: 66px;
	background: rgba(9, 9, 11, 0.82);
	backdrop-filter: saturate(160%) blur(16px);
	-webkit-backdrop-filter: saturate(160%) blur(16px);
	box-shadow: 0 1px 0 var(--line-dark);
}
.site-header.is-hidden { transform: translateY(-110%); }
.admin-bar .site-header { margin-top: 32px; }
@media (max-width: 782px) { .admin-bar .site-header { margin-top: 46px; } }

.site-header__inner { height: 100%; display: flex; align-items: center; gap: 24px; }

.brand { display: inline-flex; flex: none; }
.brand img { width: clamp(170px, 18vw, 220px); height: auto; transition: transform .4s var(--ease); }
.brand:hover img { transform: scale(1.03); }

.site-nav { margin-inline: auto; }
.nav { list-style: none; display: flex; gap: 4px; padding: 5px; border-radius: 999px; background: rgba(255,255,255,.05); border: 1px solid var(--line-dark); }
.nav a {
	position: relative; display: block;
	padding: 9px 16px; border-radius: 999px;
	color: #d7d7dd; text-decoration: none; font-weight: 600; font-size: .93rem;
	transition: color .25s, background-color .25s;
}
.nav a:hover { color: #fff; background: rgba(255,255,255,.07); }
.nav a.is-current, .nav .current-menu-item > a { color: #fff; background: var(--red); }

.site-header__actions { display: flex; align-items: center; gap: 14px; margin-left: auto; }
.site-nav + .site-header__actions { margin-left: 0; }

.header-call { display: flex; align-items: center; gap: 10px; color: #fff; text-decoration: none; font-weight: 700; font-size: .95rem; line-height: 1.2; }
.header-call small { display: block; font-weight: 500; font-size: .72rem; color: var(--muted-dark); }
.header-call__icon {
	display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%;
	background: rgba(255,255,255,.08); border: 1px solid var(--line-dark);
	transition: background-color .25s;
}
.header-call:hover .header-call__icon { background: var(--red); animation: ring .6s; }
@keyframes ring { 20%, 60% { transform: rotate(-12deg); } 40%, 80% { transform: rotate(12deg); } }

.menu-toggle {
	display: none; width: 46px; height: 46px; border-radius: 50%;
	border: 1px solid var(--line-dark); background: rgba(255,255,255,.06);
}
.menu-toggle__bars { position: relative; display: block; width: 20px; height: 14px; margin: auto; }
.menu-toggle__bars i {
	position: absolute; left: 0; width: 100%; height: 2px; border-radius: 2px; background: #fff;
	transition: transform .4s var(--ease), opacity .2s, top .4s var(--ease);
}
.menu-toggle__bars i:nth-child(1) { top: 0; }
.menu-toggle__bars i:nth-child(2) { top: 6px; }
.menu-toggle__bars i:nth-child(3) { top: 12px; }
.menu-toggle[aria-expanded="true"] i:nth-child(1) { top: 6px; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] i:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] i:nth-child(3) { top: 6px; transform: rotate(-45deg); }

.mobile-menu {
	position: fixed; inset: 0; z-index: 90;
	background: rgba(9,9,11,.97);
	backdrop-filter: blur(20px);
	padding: calc(var(--header-h) + 20px) var(--gutter) 28px;
	display: flex;
	clip-path: circle(0 at calc(100% - 44px) 38px);
	transition: clip-path .6s var(--ease);
	visibility: hidden;
}
.mobile-menu[hidden] { display: flex; }
.mobile-menu.is-open { clip-path: circle(150% at calc(100% - 44px) 38px); visibility: visible; }
.mobile-menu__inner { display: flex; flex-direction: column; justify-content: space-between; width: 100%; gap: 32px; overflow-y: auto; }
.mobile-nav { list-style: none; }
.mobile-nav li { overflow: hidden; border-bottom: 1px solid var(--line-dark); }
.mobile-nav a {
	display: flex; justify-content: space-between; align-items: center;
	padding: 16px 0; color: #fff; text-decoration: none;
	font-family: var(--font-display); font-weight: 800; font-stretch: 112%;
	font-size: clamp(1.9rem, 8vw, 2.6rem); letter-spacing: -0.02em;
	transform: translateY(100%); transition: transform .6s var(--ease), color .2s;
}
.mobile-nav a::after { content: "→"; font-size: .6em; color: var(--red-bright); }
.mobile-nav a.is-current { color: var(--red-bright); }
.mobile-menu.is-open .mobile-nav a { transform: none; }
.mobile-menu.is-open .mobile-nav li:nth-child(2) a { transition-delay: .05s; }
.mobile-menu.is-open .mobile-nav li:nth-child(3) a { transition-delay: .1s; }
.mobile-menu.is-open .mobile-nav li:nth-child(4) a { transition-delay: .15s; }
.mobile-menu.is-open .mobile-nav li:nth-child(5) a { transition-delay: .2s; }
.mobile-menu__foot { display: grid; gap: 10px; }
.mobile-menu__foot .btn span { overflow: hidden; text-overflow: ellipsis; }

/* ---------- Shared dark backdrop ---------- */

.hero, .page-hero, .article-hero, .error-page { position: relative; overflow: hidden; background: var(--ink); color: #fff; isolation: isolate; }
.hero__bg, .page-hero__bg { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.orb { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .55; }
.orb--1 { width: 560px; height: 560px; right: -140px; top: -160px; background: radial-gradient(circle, rgba(204,48,45,.85), transparent 65%); animation: drift 14s ease-in-out infinite alternate; }
.orb--2 { width: 480px; height: 480px; left: -200px; bottom: -220px; background: radial-gradient(circle, rgba(204,48,45,.45), transparent 65%); animation: drift 18s ease-in-out infinite alternate-reverse; }
@keyframes drift { to { transform: translate3d(-60px, 50px, 0) scale(1.1); } }
.grid-lines {
	position: absolute; inset: 0;
	background-image:
		linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
	background-size: 56px 56px;
	mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 30%, transparent 75%);
	-webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 30%, transparent 75%);
}

/* ---------- Home hero ---------- */

.hero { min-height: 100svh; display: flex; flex-direction: column; justify-content: center; padding: calc(var(--header-h) + 40px) 0 80px; }
.hero__sparks { position: absolute; inset: 0; width: 100%; height: 100%; opacity: .7; }
.hero__inner { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr); align-items: center; gap: clamp(32px, 5vw, 72px); }

.hero__kicker { margin: 24px 0 12px; min-height: 1.6em; }
.hero__kicker-q {
	display: inline-block;
	font-family: var(--font-display); font-weight: 600; font-stretch: 110%;
	font-size: clamp(1.05rem, 1.8vw, 1.3rem); color: var(--red-bright);
}
.hero__kicker-q::after { content: ""; display: inline-block; width: 2px; height: 1em; margin-left: 4px; vertical-align: -0.12em; background: currentColor; animation: caret 1s steps(1) infinite; }
@keyframes caret { 50% { opacity: 0; } }

.hero__title {
	font-size: clamp(2.6rem, 5.4vw, 4.6rem);
	font-stretch: 110%;
	font-weight: 900;
	line-height: .95;
	letter-spacing: -0.035em;
}
.hero__title .line { display: block; }
.hero__title .accent { position: relative; display: inline-block; }
.hero__title .accent::after {
	content: ""; position: absolute; left: 0; right: 0; bottom: -.04em; height: .09em;
	background: var(--red); border-radius: 4px;
	transform: scaleX(0); transform-origin: left; transition: transform 1s .9s var(--ease);
}
.is-in .hero__title .accent::after, .hero__title.is-in .accent::after { transform: scaleX(1); }

.hero__lede { margin-top: 26px; max-width: 540px; font-size: clamp(1.05rem, 1.4vw, 1.2rem); color: #c4c4cc; }
.hero__lede strong { color: #fff; }
.hero .btn-row { margin-top: 34px; }
.hero__facts { list-style: none; display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 36px; color: #bdbdc6; font-size: .93rem; font-weight: 500; }
.hero__facts li { display: inline-flex; align-items: center; gap: 8px; }
.hero__facts .icon { color: var(--red-bright); }

.hero__visual { position: relative; display: grid; place-items: center; min-height: 560px; }

.device { position: relative; width: min(300px, 70vw); transform-style: preserve-3d; transition: transform .6s var(--ease); }
.device__svg { position: relative; width: 100%; height: auto; filter: drop-shadow(0 40px 60px rgba(0,0,0,.6)); animation: bob 6s ease-in-out infinite; }
@keyframes bob { 50% { transform: translateY(-14px); } }
.device__halo {
	position: absolute; inset: 10% -20%; border-radius: 50%;
	background: radial-gradient(circle, rgba(204,48,45,.55), transparent 60%);
	filter: blur(30px); animation: pulse 6s ease-in-out infinite;
}
@keyframes pulse { 50% { opacity: .6; transform: scale(1.08); } }

.ui-time { fill: #fff; font: 700 22px var(--font-body); }
.ui-card { fill: rgba(255,255,255,.07); }
.ui-card--red { fill: rgba(204,48,45,.5); }
.ui-dot { fill: var(--red); }
.ui-line { fill: rgba(255,255,255,.4); }
.ui-line--dim { fill: rgba(255,255,255,.14); }

.device__crack path {
	fill: none; stroke: rgba(255,255,255,.85); stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round;
	stroke-dasharray: 400; stroke-dashoffset: 400;
	animation: crack 8s var(--ease) infinite;
}
.device__crack path:nth-child(2) { stroke-width: 1.5; animation-delay: .1s; }
.device__crack path:nth-child(n+3) { stroke-width: 1.2; animation-delay: .18s; }
@keyframes crack {
	0%, 4% { stroke-dashoffset: 400; opacity: 1; }
	16%, 44% { stroke-dashoffset: 0; opacity: 1; }
	62%, 100% { stroke-dashoffset: 0; opacity: 0; }
}
.device__ui { animation: ui 8s infinite; }
@keyframes ui { 12%, 46% { opacity: .45; } 0%, 6%, 64%, 100% { opacity: 1; } }
.device__beam { animation: beam 8s var(--ease) infinite; opacity: 0; }
@keyframes beam {
	0%, 40% { transform: translateY(0); opacity: 0; }
	42% { opacity: 1; }
	64% { transform: translateY(680px); opacity: 1; }
	66%, 100% { transform: translateY(680px); opacity: 0; }
}
.device__badge {
	position: absolute; left: 50%; top: 46%;
	display: flex; align-items: center; gap: 8px;
	padding: 10px 16px; border-radius: 999px;
	background: #fff; color: var(--ink); font-weight: 700; font-size: .9rem; white-space: nowrap;
	box-shadow: var(--shadow-lg);
	transform: translate(-50%, -50%) scale(.6); opacity: 0;
	animation: badge 8s var(--ease-spring) infinite;
}
.device__badge .icon { width: 22px; height: 22px; padding: 4px; border-radius: 50%; background: #1f9d55; color: #fff; stroke-width: 3; }
@keyframes badge {
	0%, 64% { opacity: 0; transform: translate(-50%, -50%) scale(.6); }
	70%, 92% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
	100% { opacity: 0; transform: translate(-50%, -50%) scale(.9); }
}

.hotspot {
	position: absolute; left: var(--x); top: var(--y);
	width: 34px; height: 34px; margin: -17px 0 0 -17px;
	border: 0; padding: 0; background: none; z-index: 3;
}
.hotspot--left { left: calc(var(--x) - 34%); }
.hotspot--right { left: calc(var(--x) + 34%); }
.hotspot__dot {
	position: absolute; inset: 7px; border-radius: 50%;
	background: var(--red); border: 3px solid #fff;
	box-shadow: 0 0 0 0 rgba(204,48,45,.7);
	animation: hs 2.2s infinite;
}
@keyframes hs { 70% { box-shadow: 0 0 0 16px rgba(204,48,45,0); } 100% { box-shadow: 0 0 0 0 rgba(204,48,45,0); } }
.hotspot__tip {
	position: absolute; top: 50%;
	display: flex; align-items: center; gap: 8px;
	padding: 9px 14px; border-radius: 12px;
	background: #fff; color: var(--ink); white-space: nowrap; font-size: .85rem;
	box-shadow: var(--shadow-lg);
	opacity: 0; pointer-events: none;
	transition: opacity .25s, transform .35s var(--ease);
}
.hotspot__tip .icon { color: var(--red); }
.hotspot--left .hotspot__tip { right: calc(100% + 8px); transform: translate(8px, -50%); }
.hotspot--right .hotspot__tip { left: calc(100% + 8px); transform: translate(-8px, -50%); }
.hotspot:hover .hotspot__tip,
.hotspot:focus-visible .hotspot__tip,
.hotspot.is-active .hotspot__tip { opacity: 1; transform: translate(0, -50%); }

.float-card {
	position: absolute; z-index: 2;
	display: flex; align-items: center; gap: 12px;
	padding: 12px 18px 12px 12px; border-radius: 16px;
	background: rgba(22,22,27,.72); border: 1px solid var(--line-dark);
	backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
	font-weight: 700; font-size: .95rem; line-height: 1.2;
	box-shadow: 0 20px 40px rgba(0,0,0,.35);
}
.float-card small { display: block; font-weight: 500; font-size: .75rem; color: var(--muted-dark); }
.float-card__icon { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 12px; background: var(--red); }
.float-card--a { left: -4%; top: 58%; animation: bob 7s ease-in-out infinite .6s; }
.float-card--b { right: -6%; top: 22%; animation: bob 8s ease-in-out infinite 1.2s; }

.hero__scroll {
	position: absolute; left: 50%; bottom: 24px;
	width: 26px; height: 42px; margin-left: -13px;
	border: 2px solid rgba(255,255,255,.3); border-radius: 20px;
}
.hero__scroll span { position: absolute; left: 50%; top: 8px; width: 4px; height: 8px; margin-left: -2px; border-radius: 4px; background: #fff; animation: wheel 1.8s infinite; }
@keyframes wheel { 0% { opacity: 0; transform: translateY(0); } 30% { opacity: 1; } 100% { opacity: 0; transform: translateY(14px); } }

/* ---------- Page hero ---------- */

.page-hero { padding: calc(var(--header-h) + clamp(56px, 8vw, 110px)) 0 clamp(64px, 8vw, 110px); }
.page-hero__art {
	position: absolute; right: max(4vw, calc((100vw - var(--container)) / 2 + 40px)); top: 50%;
	width: 380px; height: 380px; margin-top: -170px;
	display: grid; place-items: center; pointer-events: none; z-index: -1;
}
.page-hero__art img { width: 124px; height: auto; opacity: .92; filter: drop-shadow(0 20px 40px rgba(204,48,45,.45)); animation: bob 6s ease-in-out infinite; }
.spin-ring { position: absolute; inset: 0; border-radius: 50%; border: 1.5px dashed rgba(255,255,255,.16); animation: spin 40s linear infinite; }
.spin-ring--2 { inset: 60px; border: 2px solid transparent; border-top-color: var(--red); border-right-color: rgba(204,48,45,.3); animation-duration: 9s; }
@keyframes spin { to { transform: rotate(360deg); } }
.page-hero__title {
	max-width: 900px;
	font-size: clamp(2.5rem, 6.4vw, 5rem);
	font-stretch: 116%; font-weight: 900; line-height: .98; letter-spacing: -0.035em;
	text-wrap: balance;
}
.page-hero__lede { max-width: 640px; margin-top: 22px; font-size: clamp(1.05rem, 1.4vw, 1.2rem); color: #c4c4cc; }
.page-hero .btn-row { margin-top: 32px; }

.crumbs { margin-bottom: 26px; font-size: .88rem; }
.crumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; color: var(--muted-dark); }
.crumbs li + li::before { content: "/"; margin-right: 6px; opacity: .5; }
.crumbs a { color: #e3e3e8; text-decoration: none; }
.crumbs a:hover { color: var(--red-bright); }
.crumbs [aria-current] { color: var(--muted-dark); display: inline-block; max-width: 40ch; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; vertical-align: bottom; }

/* ---------- Repair picker ---------- */

.picker { display: grid; grid-template-columns: 320px 1fr; gap: 24px; }
.picker__tabs { display: grid; gap: 8px; align-content: start; }
.picker__tab {
	position: relative; display: flex; align-items: center; gap: 14px;
	width: 100%; padding: 12px 16px 12px 12px;
	border: 1.5px solid var(--line); border-radius: 16px; background: #fff;
	text-align: left; font-weight: 600;
	transition: border-color .25s, background-color .25s, color .25s, transform .3s var(--ease);
}
.picker__tab:hover { border-color: var(--ink); transform: translateX(4px); }
.picker__icon {
	display: grid; place-items: center; width: 42px; height: 42px; flex: none; border-radius: 12px;
	background: var(--paper-2); color: var(--red); transition: background-color .25s, color .25s;
}
.picker__tab[aria-selected="true"] { background: var(--ink); color: #fff; border-color: var(--ink); transform: translateX(8px); }
.picker__tab[aria-selected="true"] .picker__icon { background: var(--red); color: #fff; }
.picker__tab[aria-selected="true"]::after { content: "→"; margin-left: auto; color: var(--red-bright); }

.picker__stage {
	position: relative; overflow: hidden;
	border-radius: var(--radius-lg);
	background: var(--ink); color: #fff;
	min-height: 440px;
}
.picker__panel { display: grid; grid-template-columns: .85fr 1.15fr; height: 100%; animation: panelIn .6s var(--ease); }
.picker__panel[hidden] { display: none; }
@keyframes panelIn { from { opacity: 0; transform: translateY(16px); } }
.picker__art {
	position: relative; display: grid; place-items: center; overflow: hidden;
	background: radial-gradient(circle at 50% 50%, rgba(204,48,45,.45), transparent 60%), var(--ink-2);
}
.picker__big { width: 104px; height: 104px; color: #fff; stroke-width: 1.3; animation: pop .8s var(--ease-spring); filter: drop-shadow(0 10px 30px rgba(204,48,45,.7)); }
@keyframes pop { from { transform: scale(.4) rotate(-20deg); opacity: 0; } }
.ring { position: absolute; left: 50%; top: 50%; border-radius: 50%; border: 1px solid rgba(255,255,255,.14); transform: translate(-50%, -50%); animation: ripple 4s linear infinite; }
.ring--1 { width: 170px; height: 170px; }
.ring--2 { width: 260px; height: 260px; animation-delay: 1.3s; }
.ring--3 { width: 350px; height: 350px; animation-delay: 2.6s; }
@keyframes ripple { 0% { opacity: 0; transform: translate(-50%, -50%) scale(.7); } 30% { opacity: 1; } 100% { opacity: 0; transform: translate(-50%, -50%) scale(1.25); } }
.picker__copy { padding: clamp(28px, 4vw, 48px); display: flex; flex-direction: column; gap: 18px; }
.picker__copy h3 { font-size: clamp(1.7rem, 2.8vw, 2.3rem); font-stretch: 112%; }
.picker__copy p { color: var(--muted-dark); font-size: 1.05rem; }
.picker__copy .ticks { color: #e3e3e8; }
.picker__foot { margin-top: auto; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px; padding-top: 18px; border-top: 1px solid var(--line-dark); }
.picker__foot .price-tag { background: rgba(255,255,255,.08); color: #fff; }

/* ---------- Duo cards ---------- */

.duo { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.duo__card {
	position: relative; overflow: hidden; isolation: isolate;
	display: flex; flex-direction: column; gap: 16px;
	min-height: 440px; padding: clamp(28px, 4vw, 48px);
	border-radius: var(--radius-lg);
	border: 1px solid var(--line-dark);
	background: linear-gradient(160deg, var(--ink-3), var(--ink-2));
	text-decoration: none; color: #fff;
	transition: border-color .3s, transform .5s var(--ease);
}
.duo__card--repair { background: linear-gradient(160deg, #3a1110 0%, var(--ink-2) 60%); }
.duo__card:hover { border-color: rgba(255,90,84,.5); }
.duo__num { position: absolute; right: 24px; top: 6px; z-index: -1; font-family: var(--font-display); font-weight: 900; font-stretch: 125%; font-size: 9rem; line-height: 1; color: rgba(255,255,255,.05); }
.duo__icon { display: grid; place-items: center; width: 64px; height: 64px; border-radius: 18px; background: var(--red); box-shadow: var(--shadow-red); transition: transform .5s var(--ease-spring); }
.duo__icon .icon { width: 30px; height: 30px; }
.duo__card:hover .duo__icon { transform: rotate(-12deg) scale(1.08); }
.duo__card h3 { font-size: clamp(1.8rem, 3vw, 2.5rem); font-stretch: 114%; margin-top: 12px; }
.duo__card p { color: var(--muted-dark); max-width: 440px; }
.duo__tags { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; }
.duo__tags li { padding: 5px 12px; border-radius: 999px; border: 1px solid var(--line-dark); font-size: .82rem; color: #d4d4da; }
.duo__link { margin-top: auto; display: inline-flex; align-items: center; gap: 8px; font-weight: 700; color: var(--red-bright); }
.duo__link .icon { transition: transform .3s var(--ease); }
.duo__card:hover .duo__link .icon { transform: translateX(6px); }

/* Cursor-follow glow (JS sets --mx/--my) */
[data-glow] { position: relative; }
[data-glow]::before {
	content: ""; position: absolute; inset: 0; border-radius: inherit; z-index: 0; pointer-events: none;
	background: radial-gradient(420px circle at var(--mx, -100%) var(--my, -100%), rgba(204,48,45,.18), transparent 45%);
	opacity: 0; transition: opacity .4s;
}
[data-glow]:hover::before { opacity: 1; }
[data-glow] > * { position: relative; z-index: 1; }
[data-glow] > .duo__num { z-index: 0; }

/* ---------- Steps ---------- */

@property --fill { syntax: '<percentage>'; inherits: true; initial-value: 0%; }

.steps { list-style: none; position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.steps::before {
	content: ""; position: absolute; left: 6%; right: 6%; top: 44px; height: 2px;
	background: linear-gradient(90deg, var(--red) var(--fill, 0%), var(--line) var(--fill, 0%));
	transition: --fill 1.6s var(--ease);
}
.steps.is-in { --fill: 100%; }
.step { position: relative; text-align: center; padding: 0 8px; }
.step__num { display: block; font-family: var(--font-display); font-weight: 800; font-size: .8rem; letter-spacing: .15em; color: var(--muted); margin-bottom: 8px; }
.step__icon {
	position: relative; display: grid; place-items: center;
	width: 64px; height: 64px; margin: 0 auto 20px; border-radius: 50%;
	background: #fff; border: 2px solid var(--line); color: var(--ink);
	transition: all .5s var(--ease);
}
.step.is-in .step__icon { background: var(--red); border-color: var(--red); color: #fff; box-shadow: var(--shadow-red); transition-delay: calc(var(--d, 0) * 150ms + 200ms); }
.step__icon .icon { width: 26px; height: 26px; }
.step h3 { font-size: 1.2rem; font-stretch: 108%; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: .96rem; }

/* ---------- Why ---------- */

.why { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(32px, 6vw, 80px); align-items: center; }
.why__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.feature {
	padding: 28px; border-radius: var(--radius);
	background: var(--ink-2); border: 1px solid var(--line-dark);
	transition: transform .4s var(--ease), border-color .3s;
}
.feature:hover { transform: translateY(-6px); border-color: rgba(255,90,84,.4); }
.feature__icon { display: inline-grid; place-items: center; width: 50px; height: 50px; margin-bottom: 18px; border-radius: 14px; background: rgba(204,48,45,.16); color: var(--red-bright); }
.feature h3 { font-size: 1.18rem; margin-bottom: 8px; font-stretch: 106%; }
.feature p { font-size: .96rem; }
.why__grid .feature:nth-child(even) { transform: translateY(32px); }
.why__grid .feature:nth-child(even):hover { transform: translateY(26px); }

.feature--light { background: #fff; border-color: var(--line); box-shadow: var(--shadow); }
.feature--light p { color: var(--muted); }
.feature--light .feature__icon { background: var(--red-soft); color: var(--red); }
.feature-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

/* ---------- Accessories rail ---------- */

.rail-controls { display: flex; gap: 10px; }
.rail {
	display: grid; grid-auto-flow: column; grid-auto-columns: minmax(260px, 1fr);
	gap: 18px; overflow-x: auto; scroll-snap-type: x mandatory;
	padding: 8px 4px 24px; margin-inline: -4px;
	scrollbar-width: none;
}
.rail::-webkit-scrollbar { display: none; }
.acc-card {
	scroll-snap-align: start;
	display: flex; flex-direction: column; gap: 10px;
	padding: 18px 18px 24px; border-radius: var(--radius);
	background: var(--paper-2); border: 1px solid var(--line);
	text-decoration: none;
	transition: transform .45s var(--ease), box-shadow .45s var(--ease), background-color .3s;
}
.acc-card:hover { background: #fff; box-shadow: var(--shadow-lg); }
.acc-card h3 { font-size: 1.15rem; margin-top: 8px; }
.acc-card p { color: var(--muted); font-size: .93rem; }
.acc-card__art { position: relative; display: grid; place-items: center; height: 170px; border-radius: 14px; overflow: hidden; }
.acc-card__art .icon, .acc-tile__art .icon { position: relative; width: 64px; height: 64px; stroke-width: 1.4; color: #fff; transition: transform .6s var(--ease-spring); }
.acc-card:hover .acc-card__art .icon, .acc-tile:hover .acc-tile__art .icon { transform: scale(1.15) rotate(-8deg); }

.acc-art--cases { background: linear-gradient(135deg, #cc302d, #6d1412); }
.acc-art--protectors { background: linear-gradient(135deg, #22222a, #4a4a55); }
.acc-art--chargers { background: linear-gradient(135deg, #111114, #cc302d); }
.acc-art--power { background: linear-gradient(135deg, #a92421, #ff5a54); }
.acc-art--audio { background: linear-gradient(135deg, #2c2c34, #0b0b0d); }
.acc-art--car { background: linear-gradient(135deg, #7a1916, #1a1a1f); }

/* ---------- Visit ---------- */

.visit { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.visit__map {
	position: relative; overflow: hidden; aspect-ratio: 4 / 3;
	border-radius: var(--radius-lg); border: 1px solid var(--line-dark);
	background: var(--ink-3);
}
.visit__map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(.9) invert(.92) contrast(.9); transition: filter .6s; }
.visit__map:hover iframe { filter: none; }

.info-list { list-style: none; display: grid; gap: 18px; margin-bottom: 30px; }
.info-list li { display: flex; gap: 16px; align-items: flex-start; }
.info-list__icon { display: grid; place-items: center; width: 48px; height: 48px; flex: none; border-radius: 14px; background: rgba(204,48,45,.16); color: var(--red-bright); }
.info-list small { display: block; color: var(--muted-dark); font-size: .8rem; text-transform: uppercase; letter-spacing: .12em; font-weight: 600; margin-bottom: 2px; }
.info-list a { color: #fff; text-decoration: none; font-weight: 600; font-size: 1.08rem; }
.info-list a:hover { color: var(--red-bright); }

.hours { display: grid; gap: 2px; margin: 0; }
.hours div { display: flex; justify-content: space-between; gap: 16px; padding: 7px 0; border-bottom: 1px dashed var(--line); }
.hours dt { font-weight: 600; }
.hours dd { margin: 0; color: var(--muted); text-align: right; }
.hours .is-today dt, .hours .is-today dd { color: var(--red); font-weight: 700; }
.section--dark .hours div, .site-footer .hours div { border-color: var(--line-dark); }
.section--dark .hours dd, .site-footer .hours dd { color: var(--muted-dark); }
.section--dark .hours .is-today dt, .section--dark .hours .is-today dd,
.site-footer .hours .is-today dt, .site-footer .hours .is-today dd { color: var(--red-bright); }
.hours-note a { font-weight: 700; color: inherit; }
.section--dark .hours-note, .site-footer .hours-note { color: #e3e3e8; }

/* ---------- Posts ---------- */

.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.post-card {
	display: flex; flex-direction: column; overflow: hidden;
	border-radius: var(--radius); background: #fff; border: 1px solid var(--line);
	transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.post-card:hover { box-shadow: var(--shadow-lg); }
.post-card__media { display: block; aspect-ratio: 16 / 9; overflow: hidden; background: var(--ink); }
.post-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.post-card:hover .post-card__media img { transform: scale(1.06); }
.post-card__placeholder { display: grid; place-items: center; height: 100%; color: var(--red-bright); }
.post-card__placeholder .icon { width: 48px; height: 48px; }
.post-card__body { display: flex; flex-direction: column; gap: 12px; padding: 22px 24px 26px; flex: 1; }
.post-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; font-size: .84rem; color: var(--muted); }
.post-meta .chip { padding: .28em .8em; font-size: .78rem; }
.post-meta--light { color: var(--muted-dark); }
.post-card__title { font-size: 1.28rem; line-height: 1.2; font-stretch: 104%; }
.post-card__title a { text-decoration: none; background: linear-gradient(currentColor, currentColor) 0 100% / 0 2px no-repeat; transition: background-size .4s var(--ease); }
.post-card:hover .post-card__title a { background-size: 100% 2px; }
.post-card__title a::after { content: ""; position: absolute; inset: 0; }
.post-card { position: relative; }
.post-card .chip { position: relative; z-index: 2; }
.post-card__excerpt { color: var(--muted); font-size: .95rem; }
.post-card__more { margin-top: auto; display: inline-flex; align-items: center; gap: 6px; color: var(--red); font-weight: 700; font-size: .92rem; }
.post-card__more .icon { transition: transform .3s var(--ease); }
.post-card:hover .post-card__more .icon { transform: translateX(5px); }

.post-grid--blog .post-card.featured { grid-column: 1 / -1; display: grid; grid-template-columns: 1.3fr 1fr; }
.post-card.featured .post-card__media { aspect-ratio: auto; min-height: 340px; }
.post-card.featured .post-card__body { padding: clamp(24px, 4vw, 48px); justify-content: center; }
.post-card.featured .post-card__title { font-size: clamp(1.6rem, 2.8vw, 2.3rem); }
.post-card.featured .post-card__more { margin-top: 8px; }

.blog-toolbar { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 16px; margin-bottom: 36px; }
.chip-row { display: flex; flex-wrap: wrap; gap: 8px; }
.search-pill {
	display: flex; align-items: center; gap: 8px;
	padding: 0 16px; min-height: 46px; min-width: min(300px, 100%);
	border: 1.5px solid var(--line); border-radius: 999px; background: #fff;
	transition: border-color .2s, box-shadow .2s;
}
.search-pill:focus-within { border-color: var(--ink); box-shadow: 0 0 0 4px rgba(204,48,45,.12); }
.search-pill .icon { color: var(--muted); }
.search-pill input { flex: 1; border: 0; outline: 0; background: none; min-width: 0; padding: 10px 0; }

.pagination { margin-top: 48px; }
.pagination ul { list-style: none; display: flex; justify-content: center; flex-wrap: wrap; gap: 8px; }
.pagination a, .pagination span {
	display: grid; place-items: center; min-width: 46px; height: 46px; padding: 0 12px;
	border-radius: 999px; border: 1.5px solid var(--line); text-decoration: none; font-weight: 600;
}
.pagination a:hover { border-color: var(--ink); }
.pagination .current { background: var(--ink); border-color: var(--ink); color: #fff; }

.empty { text-align: center; padding: 60px 20px; display: grid; justify-items: center; gap: 12px; }
.empty .icon { width: 48px; height: 48px; color: var(--red); }

/* ---------- Review CTA ---------- */

.review-cta {
	display: flex; align-items: center; gap: 28px; flex-wrap: wrap;
	padding: clamp(24px, 4vw, 40px); border-radius: var(--radius-lg);
	background: var(--paper-2); border: 1px solid var(--line);
}
.review-cta > div { flex: 1; min-width: 240px; }
.review-cta h2 { font-size: 1.6rem; margin-bottom: 4px; }
.review-cta p { color: var(--muted); }
.review-cta__stars { display: flex; color: #f5b400; }
.review-cta__stars .icon { fill: currentColor; }

/* ---------- CTA band ---------- */

.cta-band { padding-block: 0 var(--section); background: var(--paper); }
.section--dark + .cta-band, .map-full + .cta-band { padding-top: var(--section); }
.cta-band__card {
	position: relative; overflow: hidden; isolation: isolate;
	display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap;
	padding: clamp(32px, 5vw, 64px); border-radius: var(--radius-lg);
	background: var(--red); color: #fff;
}
.cta-band__glow {
	position: absolute; inset: 0; z-index: -1;
	background:
		radial-gradient(600px circle at var(--mx, 85%) var(--my, 20%), rgba(255,255,255,.22), transparent 50%),
		repeating-linear-gradient(-45deg, rgba(0,0,0,.05) 0 2px, transparent 2px 14px);
}
.cta-band__card::after {
	content: ""; position: absolute; right: -80px; bottom: -120px; z-index: -1;
	width: 360px; height: 360px; border-radius: 50%; border: 60px solid rgba(0,0,0,.12);
}
.cta-band__copy { flex: 1 1 380px; }
.cta-band h2 { font-size: clamp(1.9rem, 4vw, 3rem); font-stretch: 114%; line-height: 1.02; margin-bottom: 12px; }
.cta-band p { font-size: 1.1rem; color: rgba(255,255,255,.9); max-width: 560px; }

/* ---------- Repairs page ---------- */

.jump {
	position: sticky; top: 0; z-index: 50;
	background: rgba(255,255,255,.9); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
	border-bottom: 1px solid var(--line);
	transition: top .45s var(--ease);
}
.jump.is-pinned { top: 66px; }
.jump ul { list-style: none; display: flex; gap: 6px; overflow-x: auto; padding: 12px 0; scrollbar-width: none; }
.jump ul::-webkit-scrollbar { display: none; }
.jump a {
	display: inline-flex; align-items: center; gap: 8px; white-space: nowrap;
	padding: 8px 14px; border-radius: 999px; text-decoration: none;
	font-size: .88rem; font-weight: 600; color: var(--muted);
	transition: background-color .2s, color .2s;
}
.jump a .icon { width: 18px; height: 18px; color: var(--red); }
.jump a:hover, .jump a.is-active { background: var(--ink); color: #fff; }

.repair-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.repair-card {
	display: flex; flex-direction: column; gap: 14px;
	padding: 26px; border-radius: var(--radius);
	background: #fff; border: 1px solid var(--line);
	scroll-margin-top: 160px;
	transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .3s;
}
.repair-card:hover, .repair-card:target { border-color: var(--red); box-shadow: var(--shadow-lg); }
.repair-card:target { outline: 3px solid rgba(204,48,45,.25); }
.repair-card__top { display: flex; justify-content: space-between; align-items: flex-start; gap: 10px; }
.repair-card__icon { display: grid; place-items: center; width: 54px; height: 54px; border-radius: 16px; background: var(--ink); color: #fff; transition: background-color .3s, transform .5s var(--ease-spring); }
.repair-card:hover .repair-card__icon { background: var(--red); transform: rotate(-10deg); }
.repair-card__icon .icon { width: 26px; height: 26px; }
.repair-card h3 { font-size: 1.25rem; font-stretch: 106%; }
.repair-card p { color: var(--muted); font-size: .95rem; }
.repair-card__link { margin-top: auto; padding-top: 14px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; gap: 8px; font-weight: 700; font-size: .92rem; color: var(--red); text-decoration: none; }
.repair-card__link .icon { transition: transform .3s var(--ease); }
.repair-card__link:hover .icon { transform: translateX(5px); }

.brands { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.brand-list { list-style: none; display: flex; flex-wrap: wrap; gap: 12px; }
.brand-list li {
	padding: 14px 24px; border-radius: 999px; border: 1px solid var(--line-dark);
	font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; font-stretch: 110%;
	transition: background-color .3s, border-color .3s;
}
.brand-list li:hover { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.3); }
.brand-list__more { background: var(--red); border-color: var(--red) !important; }
.brand-list__more a { color: #fff; text-decoration: none; }

.tips { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(32px, 6vw, 80px); align-items: start; }
.tips__copy { position: sticky; top: 160px; }
.checklist { list-style: none; display: grid; gap: 14px; }
.checklist li {
	display: flex; gap: 20px; align-items: flex-start;
	padding: 24px; border-radius: var(--radius); background: var(--paper-2);
	transition: background-color .3s, transform .4s var(--ease);
}
.checklist li:hover { background: #fff; box-shadow: var(--shadow); transform: translateX(6px); }
.checklist__n { display: grid; place-items: center; width: 44px; height: 44px; flex: none; border-radius: 50%; background: var(--ink); color: #fff; font-family: var(--font-display); font-weight: 800; }
.checklist h3 { font-size: 1.15rem; margin-bottom: 4px; }
.checklist p { color: var(--muted); }

.faq { display: grid; gap: 12px; }
.faq__item { border-radius: var(--radius); background: #fff; border: 1px solid var(--line); overflow: hidden; transition: box-shadow .3s; }
.faq__item[open] { box-shadow: var(--shadow); }
.faq__item summary {
	display: flex; justify-content: space-between; align-items: center; gap: 16px;
	padding: 20px 24px; cursor: pointer; list-style: none;
	font-family: var(--font-display); font-weight: 700; font-size: 1.1rem;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary i { display: grid; place-items: center; width: 34px; height: 34px; flex: none; border-radius: 50%; background: var(--paper-2); transition: transform .4s var(--ease), background-color .3s, color .3s; }
.faq__item[open] summary i { transform: rotate(45deg); background: var(--red); color: #fff; }
.faq__a { padding: 0 24px 22px; color: var(--muted); }
.faq__item[open] .faq__a { animation: panelIn .5s var(--ease); }

/* ---------- Accessories page ---------- */

.filter { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-bottom: 40px; }
.filter .chip { font-size: .93rem; padding: .55em 1.2em; }
.acc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.acc-tile {
	display: flex; flex-direction: column; overflow: hidden;
	border-radius: var(--radius-lg); background: #fff; border: 1px solid var(--line);
	scroll-margin-top: 120px;
	transition: transform .45s var(--ease), box-shadow .45s var(--ease), opacity .4s, scale .4s var(--ease);
}
.acc-tile:hover { box-shadow: var(--shadow-lg); }
.acc-tile.is-filtered { opacity: .12; scale: .96; pointer-events: none; }
.acc-tile__art { position: relative; display: grid; place-items: center; height: 220px; overflow: hidden; }
.acc-tile__blob { position: absolute; width: 180px; height: 180px; border-radius: 42% 58% 60% 40% / 45% 45% 55% 55%; background: rgba(255,255,255,.12); animation: morph 10s ease-in-out infinite; }
@keyframes morph { 50% { border-radius: 60% 40% 38% 62% / 55% 60% 40% 45%; transform: rotate(40deg) scale(1.1); } }
.acc-tile__body { display: flex; flex-direction: column; gap: 10px; padding: 24px 26px 28px; flex: 1; }
.acc-tile__title { font-size: 1.35rem; font-stretch: 108%; }
.acc-tile p { color: var(--muted); }
.acc-tile__link { margin-top: auto; padding-top: 12px; display: inline-flex; align-items: center; gap: 8px; color: var(--red); font-weight: 700; font-size: .92rem; text-decoration: none; }
.acc-tile__link .icon { width: 18px; height: 18px; }
.acc-tile__link:hover { text-decoration: underline; }

.glass-guide { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(32px, 6vw, 80px); align-items: center; }
.glass-guide__copy p { margin-bottom: 20px; }
.compare { display: grid; gap: 14px; }
.compare__row {
	display: grid; grid-template-columns: 1fr 180px; gap: 20px; align-items: center;
	padding: 22px 24px; border-radius: var(--radius); background: var(--ink-2); border: 1px solid var(--line-dark);
}
.compare__row h3 { font-size: 1.12rem; margin-bottom: 4px; }
.compare__row p { font-size: .93rem; }
.meter small { display: block; color: var(--muted-dark); font-size: .75rem; margin-bottom: 6px; }
.meter__bar { display: block; height: 8px; border-radius: 8px; background: rgba(255,255,255,.08); overflow: hidden; }
.meter__bar i { display: block; height: 100%; width: 0; border-radius: inherit; background: linear-gradient(90deg, var(--red), var(--red-bright)); transition: width 1.2s var(--ease) .3s; }
.is-in .meter__bar i { width: calc(var(--v) / 3 * 100%); }

/* ---------- Contact page ---------- */

.section--overlap { padding-top: 0; padding-bottom: 60px; }
.contact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: -56px; position: relative; z-index: 2; }
.contact-card {
	display: flex; flex-direction: column; gap: 4px; min-width: 0;
	padding: 28px; border-radius: var(--radius-lg);
	background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-lg);
	text-decoration: none;
	transition: transform .45s var(--ease), border-color .3s;
}
.contact-card:hover { border-color: var(--red); }
.contact-card__icon { display: grid; place-items: center; width: 54px; height: 54px; margin-bottom: 14px; border-radius: 16px; background: var(--red); color: #fff; box-shadow: var(--shadow-red); }
.contact-card small { color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: .12em; font-size: .75rem; }
.contact-card strong { font-family: var(--font-display); font-size: 1.45rem; font-stretch: 108%; line-height: 1.2; }
.contact-card__email { font-size: 1.1rem !important; overflow-wrap: anywhere; }
.contact-card__sub { color: var(--muted); }
.contact-card__cta { margin-top: 14px; display: inline-flex; align-items: center; gap: 6px; color: var(--red); font-weight: 700; font-size: .92rem; }
.contact-card__cta .icon { transition: transform .3s var(--ease); }
.contact-card:hover .contact-card__cta .icon { transform: translateX(5px); }

.contact-layout { display: grid; grid-template-columns: 1.4fr .8fr; gap: clamp(28px, 4vw, 56px); align-items: start; }
.contact-layout__form {
	padding: clamp(24px, 4vw, 48px); border-radius: var(--radius-lg);
	background: var(--paper-2); border: 1px solid var(--line);
}
.contact-layout__form > .muted { margin-bottom: 28px; }
.contact-layout__side { display: grid; gap: 18px; position: sticky; top: 100px; }
.side-card { padding: 28px; border-radius: var(--radius-lg); background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow); }
.side-card--dark { background: var(--ink); color: #fff; border-color: var(--ink); }
.side-card--dark p { color: var(--muted-dark); margin-bottom: 20px; }
.side-card__title { display: flex; align-items: center; gap: 10px; font-size: 1.2rem; margin-bottom: 16px; }
.side-card__title .icon { color: var(--red); }
.side-card--dark .side-card__title .icon { color: var(--red-bright); }

.map-full { position: relative; height: clamp(360px, 50vw, 520px); background: var(--paper-3); }
.map-full iframe { width: 100%; height: 100%; border: 0; filter: grayscale(.4); }
.map-full__pin {
	position: absolute; left: var(--gutter); bottom: 28px;
	max-width: calc(100% - 2 * var(--gutter));
	padding: 18px 22px; border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-lg);
}
.map-full__pin .brand img { width: 180px; }
.map-full__pin p { margin-top: 6px; color: var(--muted); font-size: .92rem; }

/* Form */
.quote-form { display: grid; gap: 22px; }
.hp { position: absolute !important; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { position: relative; }
.field--full { grid-column: 1 / -1; }
.field input, .field textarea, .field select {
	width: 100%; padding: 26px 16px 10px; min-height: 60px;
	border: 1.5px solid var(--line); border-radius: 14px; background: #fff;
	font-size: 1rem; outline: 0; appearance: none;
	transition: border-color .2s, box-shadow .2s;
}
.field textarea { resize: vertical; min-height: 130px; }
.field label {
	position: absolute; left: 17px; top: 19px;
	color: var(--muted); font-size: 1rem; pointer-events: none;
	transform-origin: 0 0; transition: transform .25s var(--ease), color .2s;
}
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--ink); box-shadow: 0 0 0 4px rgba(204,48,45,.12); }
.field input:focus + label, .field input:not(:placeholder-shown) + label,
.field textarea:focus + label, .field textarea:not(:placeholder-shown) + label,
.field--select label { transform: translateY(-10px) scale(.78); color: var(--red-600); font-weight: 600; }
.field--select::after { content: ""; position: absolute; right: 18px; top: 50%; width: 8px; height: 8px; border-right: 2px solid var(--ink); border-bottom: 2px solid var(--ink); transform: translateY(-40%) rotate(45deg); pointer-events: none; }
.field.is-invalid input, .field.is-invalid textarea { border-color: var(--red); background: #fff7f7; }
.form-foot { display: flex; flex-wrap: wrap; align-items: center; gap: 16px 24px; }
.form-note { color: var(--muted); font-size: .85rem; flex: 1; min-width: 200px; }
.form-note a { color: inherit; }
.form-status { display: flex; gap: 12px; align-items: flex-start; padding: 16px 18px; border-radius: 14px; font-weight: 600; animation: panelIn .5s var(--ease); }
.form-status .icon { flex: none; width: 26px; height: 26px; padding: 5px; border-radius: 50%; color: #fff; stroke-width: 3; }
.form-status--success { background: #e9f7ef; color: #14532d; }
.form-status--success .icon { background: #1f9d55; }
.form-status--error { background: var(--red-soft); color: #7f1d1b; }
.form-status--error .icon { background: var(--red); }
.quote-form button[disabled] { opacity: .7; pointer-events: none; }

/* ---------- Article ---------- */

.article-hero { padding: calc(var(--header-h) + clamp(48px, 7vw, 90px)) 0 clamp(90px, 10vw, 140px); }
.article-hero__title { margin-top: 18px; font-size: clamp(2.1rem, 5vw, 3.8rem); font-stretch: 110%; line-height: 1.04; text-wrap: balance; }
.article-hero__lede { margin-top: 20px; font-size: 1.2rem; color: #c4c4cc; max-width: 720px; }
.article-cover { margin-top: clamp(-100px, -8vw, -60px); position: relative; z-index: 2; }
.article-cover img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.article-layout { display: grid; grid-template-columns: 240px minmax(0, 720px); justify-content: center; gap: clamp(28px, 5vw, 72px); padding-block: clamp(48px, 6vw, 80px); }
.article-aside { position: sticky; top: 100px; align-self: start; display: grid; gap: 28px; }
.toc__title { font-family: var(--font-display); font-weight: 700; font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; }
.toc ol { list-style: none; display: grid; gap: 2px; border-left: 2px solid var(--line); }
.toc a { display: block; padding: 6px 0 6px 14px; margin-left: -2px; border-left: 2px solid transparent; color: var(--muted); text-decoration: none; font-size: .9rem; line-height: 1.4; transition: color .2s, border-color .2s; }
.toc a:hover { color: var(--text); }
.toc a.is-active { color: var(--red); border-color: var(--red); font-weight: 600; }
.share__row { display: flex; gap: 8px; }
.share .icon-btn { width: 42px; height: 42px; }
.share .icon-btn.is-copied { background: #1f9d55; border-color: #1f9d55; color: #fff; }

.article-cta {
	display: flex; gap: 22px; align-items: flex-start;
	margin-top: 56px; padding: clamp(24px, 4vw, 36px);
	border-radius: var(--radius-lg); background: var(--paper-2); border: 1px solid var(--line);
}
.article-cta__icon { display: grid; place-items: center; width: 56px; height: 56px; flex: none; border-radius: 16px; background: var(--red); color: #fff; }
.article-cta h2 { font-size: 1.5rem; margin-bottom: 6px; }
.article-cta p { color: var(--muted); margin-bottom: 18px; }
.tag-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }

/* ---------- 404 ---------- */

.error-page { min-height: 100svh; display: grid; place-items: center; text-align: center; padding: calc(var(--header-h) + 40px) 0 80px; }
.error-page__inner { display: grid; justify-items: center; gap: 18px; }
.error-page__inner > p:not(.error-page__code) { color: #c4c4cc; max-width: 480px; }
.error-page h1 { font-size: clamp(2rem, 5vw, 3.4rem); font-stretch: 112%; }
.error-page__code { position: relative; font-family: var(--font-display); font-weight: 900; font-stretch: 125%; font-size: clamp(7rem, 22vw, 14rem); line-height: .9; color: var(--red); }
.error-page__code::before, .error-page__code::after { content: attr(data-glitch); position: absolute; inset: 0; }
.error-page__code::before { color: #fff; mix-blend-mode: difference; animation: glitch 3s infinite steps(1); clip-path: inset(0 0 60% 0); }
.error-page__code::after { color: var(--red-bright); animation: glitch 2.4s infinite steps(1) reverse; clip-path: inset(55% 0 0 0); }
@keyframes glitch { 0%, 88%, 100% { transform: none; } 90% { transform: translate(-6px, 2px); } 94% { transform: translate(6px, -2px); } }

/* ---------- Footer ---------- */

.site-footer { background: var(--ink); color: #e3e3e8; overflow: hidden; }
.marquee { border-block: 1px solid var(--line-dark); padding: 22px 0; overflow: hidden; }
.marquee__track { display: flex; width: max-content; animation: marquee 40s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__track > span { display: flex; align-items: center; gap: 28px; padding-right: 28px; }
.marquee b { font-family: var(--font-display); font-weight: 800; font-stretch: 118%; font-size: clamp(1.6rem, 3.4vw, 2.6rem); white-space: nowrap; color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.35); transition: color .3s; }
.marquee b:hover { color: #fff; }
.marquee i { font-style: normal; color: var(--red); font-size: 1.4rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

.site-footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.3fr; gap: 40px; padding-block: 72px 48px; }
.site-footer__about p { margin: 20px 0; color: var(--muted-dark); max-width: 340px; }
.site-footer__brand img { width: 230px; }
.footer-title { font-size: .8rem; letter-spacing: .16em; text-transform: uppercase; color: #fff; margin-bottom: 18px; font-stretch: 112%; }
.footer-links { list-style: none; display: grid; gap: 10px; }
.footer-links a { color: var(--muted-dark); text-decoration: none; transition: color .2s, padding .3s var(--ease); }
.footer-links a:hover { color: #fff; padding-left: 6px; }
.footer-contact { display: grid; gap: 12px; margin-bottom: 18px; }
.footer-contact a { display: flex; gap: 12px; align-items: flex-start; color: #e3e3e8; text-decoration: none; }
.footer-contact a:hover { color: var(--red-bright); }
.footer-contact .icon { margin-top: 3px; color: var(--red-bright); }
.hours--footer, .hours-note.hours--footer { font-size: .9rem; }
.socials { list-style: none; display: flex; gap: 10px; }
.socials a { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line-dark); color: #fff; transition: background-color .25s, transform .3s var(--ease); }
.socials a:hover { background: var(--red); transform: translateY(-3px); }
.site-footer__bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px 24px; padding-block: 22px 28px; border-top: 1px solid var(--line-dark); font-size: .85rem; color: var(--muted-dark); }

.dock { display: none; }

.to-top {
	position: fixed; right: 20px; bottom: 20px; z-index: 80;
	display: grid; place-items: center; width: 50px; height: 50px; border-radius: 50%;
	border: 0; background: var(--red); color: #fff; box-shadow: var(--shadow-red);
	opacity: 0; transform: translateY(20px) scale(.8); pointer-events: none;
	transition: opacity .3s, transform .4s var(--ease-spring);
}
.to-top.is-visible { opacity: 1; transform: none; pointer-events: auto; }
.to-top:hover { background: var(--red-600); }


/* ---------- Real shop photos ---------- */

.why__photos { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 36px; max-width: 540px; }
.photo-card { margin: 0; position: relative; overflow: hidden; border-radius: var(--radius); border: 1px solid var(--line-dark); background: var(--ink-3); transition: transform .45s var(--ease); }
.photo-card img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; transition: transform .8s var(--ease); }
.photo-card:hover img { transform: scale(1.06); }
.photo-card--b { margin-top: 40px; }
.photo-card figcaption {
	position: absolute; left: 10px; bottom: 10px; padding: 6px 12px; border-radius: 999px;
	background: rgba(9,9,11,.75); backdrop-filter: blur(8px); color: #fff; font-size: .78rem; font-weight: 600;
}

.instore { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(32px, 6vw, 80px); align-items: center; }
.instore__photo { position: relative; }
.instore__photo img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.instore__badge {
	position: absolute; right: -14px; bottom: 28px; display: inline-flex; align-items: center; gap: 8px;
	padding: 12px 18px; border-radius: 999px; background: var(--red); color: #fff; font-weight: 700; box-shadow: var(--shadow-red);
	animation: bob 6s ease-in-out infinite;
}
.brand-chips { list-style: none; display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
.brand-chips li { padding: 10px 18px; border-radius: 999px; background: #fff; border: 1.5px solid var(--line); font-family: var(--font-display); font-weight: 700; font-stretch: 108%; }

.side-card__photo img { width: calc(100% + 56px); max-width: none; margin: -28px -28px 20px; aspect-ratio: 4 / 3; object-fit: cover; object-position: center 70%; border-radius: var(--radius-lg) var(--radius-lg) 0 0; }

@media (max-width: 1024px) {
	.instore { grid-template-columns: 1fr; }
	.instore__photo { max-width: 520px; }
}
@media (max-width: 782px) {
	.instore__badge { right: 12px; }
	.why__photos { margin-top: 28px; }
}

/* ---------- Reveal & motion ---------- */

.js [data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease), transform .9s var(--ease); transition-delay: calc(var(--d, 0) * 90ms); }
.js [data-reveal].is-in { opacity: 1; transform: none; }
.js [data-reveal].is-done { transition: transform .35s var(--ease), box-shadow .45s var(--ease), border-color .3s, background-color .3s, opacity .4s, scale .4s var(--ease); transition-delay: 0s; }
.js .hero__title[data-reveal] .line { display: block; overflow: hidden; }
[data-tilt] { transform-style: preserve-3d; }

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
	.js [data-reveal] { opacity: 1; transform: none; }
	.device__crack path { stroke-dashoffset: 0; opacity: 0; }
	.device__badge { opacity: 1; transform: translate(-50%, -50%); }
	.marquee__track { animation: none; }
}

/* ---------- Responsive ---------- */

@media (max-width: 1180px) {
	.header-call__text { display: none; }
	.repair-grid { grid-template-columns: repeat(3, 1fr); }
	.site-footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 1024px) {
	.site-nav, .header-call, .page-hero__art { display: none; }
	.menu-toggle { display: grid; place-items: center; }
	.hero__inner { grid-template-columns: 1fr; text-align: left; }
	.hero__visual { min-height: 520px; }
	.picker { grid-template-columns: 1fr; }
	.picker__tabs { grid-auto-flow: column; grid-auto-columns: max-content; overflow-x: auto; padding-bottom: 6px; scrollbar-width: none; }
	.picker__tabs::-webkit-scrollbar { display: none; }
	.picker__tab, .picker__tab:hover, .picker__tab[aria-selected="true"] { transform: none; }
	.picker__tab[aria-selected="true"]::after { display: none; }
	.why, .visit, .glass-guide, .tips { grid-template-columns: 1fr; }
	.tips__copy { position: static; }
	.steps { grid-template-columns: 1fr 1fr; row-gap: 40px; }
	.steps::before { display: none; }
	.post-grid, .acc-grid { grid-template-columns: 1fr 1fr; }
	.contact-layout { grid-template-columns: 1fr; }
	.contact-layout__side { position: static; grid-template-columns: 1fr 1fr; }
	.article-layout { grid-template-columns: minmax(0, 720px); }
	.article-aside { position: static; order: 2; }
	.toc { display: none; }
}

@media (max-width: 782px) {
	:root { --header-h: 66px; }
	body { font-size: 1rem; padding-bottom: 76px; }
	.header-quote { display: none; }
	.brand img { width: 170px; }
	.hero { min-height: auto; padding-bottom: 60px; }
	.hero__scroll { display: none; }
	.hero__visual { min-height: 440px; }
	.device { width: min(230px, 60vw); }
	.float-card { padding: 8px 12px 8px 8px; font-size: .82rem; }
	.float-card__icon { width: 34px; height: 34px; border-radius: 10px; }
	.float-card--a { left: 0; top: 62%; }
	.float-card--b { right: 0; top: 18%; }
	.hotspot--left { left: calc(var(--x) - 38%); }
	.hotspot--right { left: calc(var(--x) + 38%); }
	.hotspot__tip { display: none; font-size: .78rem; padding: 7px 11px; }
	.hotspot.is-active .hotspot__tip { display: flex; }
	/* Point tips inward so they never run off the screen edge. */
	.hotspot--left .hotspot__tip { right: auto; left: calc(100% + 6px); transform: translate(0, -50%); }
	.hotspot--right .hotspot__tip { left: auto; right: calc(100% + 6px); transform: translate(0, -50%); }
	.section-head--center .eyebrow::before { display: none; }
	.eyebrow { letter-spacing: .12em; }
	.picker__panel { grid-template-columns: 1fr; }
	.picker__art { min-height: 180px; }
	.duo, .why__grid, .feature-row, .post-grid, .acc-grid, .repair-grid, .contact-cards, .contact-layout__side { grid-template-columns: 1fr; }
	.why__grid .feature:nth-child(even), .why__grid .feature:nth-child(even):hover { transform: none; }
	.duo__card { min-height: 0; }
	.duo__num { font-size: 6rem; }
	.steps { grid-template-columns: 1fr; }
	.step { display: grid; grid-template-columns: 64px 1fr; column-gap: 18px; text-align: left; padding: 0; }
	.step__icon { grid-row: 1 / span 3; margin: 0; }
	.step__num { margin: 0; }
	.form-grid { grid-template-columns: 1fr; }
	.compare__row { grid-template-columns: 1fr; }
	.post-grid--blog .post-card.featured { grid-template-columns: 1fr; }
	.post-card.featured .post-card__media { min-height: 0; aspect-ratio: 16 / 9; }
	.blog-toolbar { flex-direction: column; flex-wrap: nowrap; align-items: stretch; }
	.blog-toolbar > * { min-width: 0; max-width: 100%; }
	.chip-row { flex-wrap: nowrap; overflow-x: auto; scrollbar-width: none; padding-bottom: 4px; }
	.chip-row .chip { white-space: nowrap; }
	.search-pill { min-width: 0; }
	.contact-cards { margin-top: -40px; gap: 12px; }
	.contact-card { display: grid; grid-template-columns: 50px 1fr; column-gap: 16px; align-items: center; padding: 18px 20px; border-radius: var(--radius); }
	.contact-card__icon { grid-row: 1 / span 4; width: 50px; height: 50px; margin: 0; }
	.contact-card strong { font-size: 1.2rem; }
	.contact-card__cta { margin-top: 4px; }
	.site-footer__grid { grid-template-columns: 1fr; gap: 32px; padding-top: 48px; }
	.cta-band__card .btn-row { width: 100%; }
	.cta-band__card .btn { flex: 1 1 200px; }
	.article-cta { flex-direction: column; }
	.jump.is-pinned { top: 66px; }

	.dock {
		position: fixed; left: 10px; right: 10px; bottom: calc(10px + env(safe-area-inset-bottom)); z-index: 85;
		display: grid; grid-template-columns: 1fr 1fr 1.3fr; gap: 6px; padding: 6px;
		border-radius: 20px; background: rgba(9,9,11,.9);
		backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
		box-shadow: 0 10px 30px rgba(0,0,0,.35);
		transition: transform .45s var(--ease);
	}
	.dock.is-hidden { transform: translateY(140%); }
	.dock__btn {
		display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px;
		min-height: 52px; border-radius: 14px; color: #fff; text-decoration: none;
		font-size: .74rem; font-weight: 600;
	}
	.dock__btn:active { background: rgba(255,255,255,.08); }
	.dock__btn--primary { background: var(--red); flex-direction: row; gap: 8px; font-size: .9rem; }
	.to-top { bottom: 96px; right: 14px; width: 44px; height: 44px; }
}

@media (max-width: 480px) {
	.btn-row .btn { flex: 1 1 100%; }
	.hero .btn-row .btn { flex: 1 1 100%; }
	.hero__visual { min-height: 400px; }
	.float-card { display: none; }
	.picker__foot .btn { width: 100%; }
	.brand-list li { padding: 10px 18px; font-size: 1rem; }
	.contact-layout__form { padding: 20px; }
	.map-full__pin { bottom: 16px; padding: 14px 16px; }
}
