/* Everything Ice: site stylesheet. Plain CSS, no build step.
   Palette: deep arena navy with ice-blue accents; Inter for UI, Instrument
   Serif italic for accent words. Mobile first. */

:root {
	--bg: #0b1226;
	--bg-elevated: #111a33;
	--bg-surface: #172242;
	--border: #223056;
	--border-subtle: #1a2545;
	--text: #c9d3e6;
	--text-bright: #eef3fa;
	--text-muted: #8492b3;
	--brand: #4b5ce6;
	--brand-hover: #6272f0;
	--brand-dim: rgba(75, 92, 230, 0.16);
	--ice: #8fc3ea;
	--ice-bright: #a9d3f2;
	--frost: #d6e8f6;
	--teal: #56c9a8;
	--teal-dim: rgba(86, 201, 168, 0.14);
	--warning: #d9a441;
	--container: 1120px;
	--container-narrow: 760px;
	--font-display: 'Instrument Serif', Georgia, 'Times New Roman', serif;
	--font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
	--ease-out: cubic-bezier(0.2, 0.8, 0.2, 1);
	--header-h: 68px;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}
html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
}
@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}
}
body {
	margin: 0;
	background: var(--bg);
	color: var(--text);
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.6;
	overflow-x: clip;
	-webkit-font-smoothing: antialiased;
}
body::before {
	content: '';
	position: fixed;
	inset: 0;
	z-index: -2;
	pointer-events: none;
	background-image:
		radial-gradient(ellipse 70% 55% at 50% -12%, rgba(143, 195, 234, 0.22) 0%, rgba(143, 195, 234, 0) 70%),
		radial-gradient(ellipse 45% 40% at 100% 28%, rgba(86, 201, 168, 0.07) 0%, rgba(86, 201, 168, 0) 70%),
		radial-gradient(ellipse 55% 45% at 0% 100%, rgba(75, 92, 230, 0.14) 0%, rgba(75, 92, 230, 0) 70%);
}
body::after {
	content: '';
	position: fixed;
	inset: 0;
	z-index: -1;
	pointer-events: none;
	background-image:
		url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.05 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"),
		url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='72' height='72'%3E%3Cpath d='M36 0v72M0 36h72' stroke='rgba(169,211,242,0.06)'/%3E%3C/svg%3E");
	background-size:
		200px 200px,
		72px 72px;
	-webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 0%, #000 0%, rgba(0, 0, 0, 0.5) 45%, rgba(0, 0, 0, 0.1) 100%);
	mask-image: radial-gradient(ellipse 90% 80% at 50% 0%, #000 0%, rgba(0, 0, 0, 0.5) 45%, rgba(0, 0, 0, 0.1) 100%);
}

img,
video,
canvas {
	max-width: 100%;
	height: auto;
	display: block;
}
a {
	color: var(--ice);
	text-decoration: none;
}
a:hover {
	color: var(--ice-bright);
}
h1,
h2,
h3,
h4 {
	color: var(--text-bright);
	font-weight: 600;
	letter-spacing: -0.02em;
	line-height: 1.12;
	margin: 0 0 0.5em;
	text-wrap: balance;
}
h1 {
	font-size: clamp(2.2rem, 5.6vw, 4.1rem);
	letter-spacing: -0.03em;
}
h2 {
	font-size: clamp(1.7rem, 3.6vw, 2.6rem);
}
h3 {
	font-size: 1.2rem;
}
p {
	margin: 0 0 1em;
}
.lede {
	font-size: clamp(1.05rem, 1.6vw, 1.25rem);
	color: var(--text);
	max-width: 40ch;
}
.accent-word {
	font-family: var(--font-display);
	font-style: italic;
	font-weight: 400;
	color: var(--ice-bright);
	letter-spacing: 0;
}
.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--ice);
	margin-bottom: 14px;
}
.eyebrow::before {
	content: '';
	width: 22px;
	height: 1px;
	background: currentColor;
	opacity: 0.7;
}
.muted {
	color: var(--text-muted);
}
.skip-link {
	position: absolute;
	left: 12px;
	top: -60px;
	background: var(--brand);
	color: #fff;
	padding: 8px 14px;
	border-radius: 8px;
	z-index: 100;
}
.skip-link:focus {
	top: 12px;
}
.visually-hidden {
	position: absolute !important;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
}

.container {
	width: min(100% - 40px, var(--container));
	margin-inline: auto;
}
.container-narrow {
	width: min(100% - 40px, var(--container-narrow));
	margin-inline: auto;
}
section {
	padding: clamp(56px, 8vw, 104px) 0;
}
.section-head {
	max-width: 62ch;
	margin-bottom: clamp(28px, 4vw, 48px);
}
.section-head p {
	color: var(--text-muted);
	font-size: 1.05rem;
}
.section-head.center {
	margin-inline: auto;
	text-align: center;
}
.section-head.center .eyebrow {
	justify-content: center;
}

/* Buttons */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 22px;
	border-radius: 10px;
	font-size: 0.92rem;
	font-weight: 500;
	text-decoration: none;
	border: 1px solid transparent;
	cursor: pointer;
	font-family: inherit;
	line-height: 1.2;
	transition:
		background 0.2s var(--ease-out),
		color 0.2s var(--ease-out),
		border-color 0.2s var(--ease-out),
		transform 0.25s var(--ease-out),
		box-shadow 0.3s var(--ease-out);
}
.btn-primary {
	background: var(--brand);
	color: #fff;
}
.btn-primary:hover {
	background: var(--brand-hover);
	color: #fff;
	transform: translateY(-1px);
	box-shadow: 0 8px 30px rgba(75, 92, 230, 0.4);
}
.btn-ghost {
	background: transparent;
	color: var(--text-bright);
	border-color: var(--border);
}
.btn-ghost:hover {
	border-color: var(--ice);
	color: var(--text-bright);
	transform: translateY(-1px);
}
.btn-ice {
	background: var(--ice);
	color: #0b1226;
}
.btn-ice:hover {
	background: var(--ice-bright);
	color: #0b1226;
	transform: translateY(-1px);
}
.btn svg {
	width: 16px;
	height: 16px;
	flex: 0 0 auto;
}
.btn .arrow {
	transition: transform 0.25s var(--ease-out);
}
.btn:hover .arrow {
	transform: translateX(3px);
}
.btn-row {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	align-items: center;
}

/* Header */
.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	height: var(--header-h);
	background: rgba(11, 18, 38, 0.72);
	-webkit-backdrop-filter: blur(14px);
	backdrop-filter: blur(14px);
	border-bottom: 1px solid var(--border-subtle);
}
.proposal-bar { background: var(--bg-elevated); border-bottom: 1px solid var(--border); font-size: 0.8rem; color: var(--text-muted); }
.proposal-bar .container { display: flex; flex-wrap: wrap; gap: 6px 18px; align-items: center; justify-content: space-between; padding: 8px 0; }
.proposal-bar strong { color: var(--ice-bright); font-weight: 600; }
.proposal-bar a { color: var(--text-bright); }
.proposal-bar a:hover { color: var(--ice-bright); }
.proposal-link { white-space: nowrap; font-weight: 500; }
.header-inner {
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}
.brand {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: var(--text-bright);
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	font-size: 0.95rem;
	white-space: nowrap;
}
.brand svg {
	width: 26px;
	height: 26px;
}
.brand:hover {
	color: var(--text-bright);
}
.nav-desktop {
	display: none;
	align-items: center;
	gap: 4px;
}
.nav-desktop > li {
	position: relative;
	list-style: none;
}
.nav-desktop > li > a,
.nav-desktop > li > button {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 12px;
	border-radius: 8px;
	color: var(--text);
	font: inherit;
	font-size: 0.9rem;
	font-weight: 500;
	background: none;
	border: 0;
	cursor: pointer;
}
.nav-desktop > li > a:hover,
.nav-desktop > li > button:hover,
.nav-desktop > li > a[aria-current='page'] {
	color: var(--text-bright);
	background: rgba(255, 255, 255, 0.05);
}
.nav-desktop > li > a[aria-current='page'] {
	box-shadow: inset 0 -2px 0 var(--ice);
	border-radius: 8px 8px 0 0;
}
.nav-desktop .chev {
	width: 12px;
	height: 12px;
	opacity: 0.7;
	transition: transform 0.2s var(--ease-out);
}
.nav-desktop li[data-open='true'] .chev {
	transform: rotate(180deg);
}
.menu {
	position: absolute;
	top: calc(100% + 10px);
	left: 0;
	min-width: 280px;
	padding: 8px;
	margin: 0;
	list-style: none;
	background: var(--bg-elevated);
	border: 1px solid var(--border);
	border-radius: 14px;
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
	opacity: 0;
	visibility: hidden;
	transform: translateY(-6px);
	transition:
		opacity 0.18s var(--ease-out),
		transform 0.18s var(--ease-out),
		visibility 0s 0.18s;
}
.nav-desktop li[data-open='true'] .menu {
	opacity: 1;
	visibility: visible;
	transform: none;
	transition-delay: 0s;
}
.menu a {
	display: block;
	padding: 9px 12px;
	border-radius: 8px;
	color: var(--text-bright);
	font-size: 0.9rem;
	font-weight: 500;
}
.menu a small {
	display: block;
	color: var(--text-muted);
	font-weight: 400;
	font-size: 0.78rem;
	margin-top: 1px;
}
.menu a:hover {
	background: rgba(255, 255, 255, 0.05);
}
.header-cta {
	display: flex;
	align-items: center;
	gap: 10px;
}
.header-phone {
	display: none;
	color: var(--text);
	font-size: 0.88rem;
	font-weight: 500;
	font-variant-numeric: tabular-nums;
}
.header-phone:hover {
	color: var(--text-bright);
}
.header-cta .btn {
	padding: 9px 16px;
	font-size: 0.85rem;
	white-space: nowrap;
}
.nav-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 10px;
	border: 1px solid var(--border);
	background: transparent;
	color: var(--text-bright);
	cursor: pointer;
}
.nav-toggle svg {
	width: 20px;
	height: 20px;
}
@media (min-width: 980px) {
	.nav-desktop {
		display: flex;
		margin: 0;
		padding: 0;
	}
	.nav-toggle {
		display: none;
	}
	.header-phone {
		display: inline-block;
	}
}

/* Mobile sheet: lives outside <header> so the blur header cannot trap it. */
.sheet {
	position: fixed;
	inset: 0;
	z-index: 60;
	background: var(--bg);
	padding: 20px;
	overflow-y: auto;
	display: none;
}
.sheet[data-open='true'] {
	display: block;
}
.sheet-top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: var(--header-h);
	margin-top: -20px;
}
.sheet-group {
	margin: 22px 0;
}
.sheet-group h2 {
	font-size: 0.72rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--ice);
	margin-bottom: 8px;
}
.sheet-group a {
	display: block;
	padding: 11px 0;
	border-bottom: 1px solid var(--border-subtle);
	color: var(--text-bright);
	font-size: 1.1rem;
	font-weight: 500;
}
.sheet-group a small {
	display: block;
	color: var(--text-muted);
	font-size: 0.82rem;
	font-weight: 400;
}
.sheet .btn-row {
	margin-top: 24px;
}
body[data-sheet-open='true'] {
	overflow: hidden;
}

/* Hero */
.hero {
	padding: clamp(40px, 6vw, 84px) 0 clamp(36px, 5vw, 64px);
	position: relative;
}
.hero-grid {
	display: grid;
	gap: 36px;
	align-items: center;
}
.hero-copy .lede {
	margin-top: 14px;
	margin-bottom: 26px;
}
.hero-stage {
	--rink-tilt: 0;
	position: relative;
	aspect-ratio: 16 / 9;
	width: 100%;
	touch-action: pan-y;
}
.hero-stage canvas {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}
.build-steps {
	display: flex;
	flex-wrap: wrap;
	gap: 6px 16px;
	margin: 12px 0 0;
	padding: 0;
	list-style: none;
	font-size: 0.72rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--text-muted);
}
.build-steps li {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	transition: color 0.4s var(--ease-out);
}
.build-steps li::before {
	content: '';
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: currentColor;
	opacity: 0.5;
	transition:
		background 0.4s var(--ease-out),
		box-shadow 0.4s var(--ease-out),
		opacity 0.4s;
}
.build-steps li.is-done {
	color: var(--text);
}
.build-steps li.is-active {
	color: var(--ice-bright);
}
.build-steps li.is-active::before {
	opacity: 1;
	background: var(--ice-bright);
	box-shadow: 0 0 10px var(--ice);
}
.hero-proof {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 22px;
	margin-top: 26px;
	font-size: 0.85rem;
	color: var(--text-muted);
}
.hero-proof span {
	display: inline-flex;
	align-items: center;
	gap: 7px;
}
.hero-proof svg {
	width: 14px;
	height: 14px;
	color: var(--teal);
}
@media (min-width: 900px) {
	.hero-grid {
		grid-template-columns: minmax(0, 1.02fr) minmax(0, 1fr);
		gap: 48px;
	}
	.hero-stage {
		--rink-tilt: -0.09;
		aspect-ratio: 4 / 3;
	}
}

/* Stat band */
.stats {
	display: grid;
	gap: 14px;
	grid-template-columns: repeat(2, 1fr);
	padding: 0;
}
.stat {
	padding: 22px 20px;
	border: 1px solid var(--border);
	border-radius: 14px;
	background: rgba(17, 26, 51, 0.6);
}
.stat strong {
	display: block;
	font-size: clamp(1.9rem, 3.4vw, 2.6rem);
	font-weight: 600;
	color: var(--frost);
	letter-spacing: -0.03em;
	line-height: 1;
	font-variant-numeric: tabular-nums;
}
.stat span {
	display: block;
	margin-top: 8px;
	font-size: 0.85rem;
	color: var(--text-muted);
}
@media (min-width: 760px) {
	.stats {
		grid-template-columns: repeat(4, 1fr);
	}
}

/* Cards */
.spot {
	position: relative;
	isolation: isolate;
	background: var(--bg-elevated);
	border: 1px solid var(--border);
	border-radius: 16px;
	transition:
		border-color 0.3s var(--ease-out),
		transform 0.35s var(--ease-out);
}
.spot::before {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: inherit;
	background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 50%), rgba(143, 195, 234, 0.13), transparent 45%);
	opacity: 0;
	transition: opacity 0.35s var(--ease-out);
	pointer-events: none;
}
.spot::after {
	content: '';
	position: absolute;
	inset: 0;
	z-index: -1;
	border-radius: inherit;
	box-shadow: 0 18px 50px rgba(0, 0, 0, 0.4);
	opacity: 0;
	transition: opacity 0.35s var(--ease-out);
	pointer-events: none;
}
.spot:hover {
	border-color: rgba(143, 195, 234, 0.45);
	transform: translateY(-2px);
}
.spot:hover::before,
.spot:hover::after {
	opacity: 1;
}
.grid {
	display: grid;
	gap: 18px;
}
.grid-2 {
	grid-template-columns: 1fr;
}
.grid-3 {
	grid-template-columns: 1fr;
}
@media (min-width: 700px) {
	.grid-2,
	.grid-3 {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (min-width: 1000px) {
	.grid-3 {
		grid-template-columns: repeat(3, 1fr);
	}
}
.card {
	display: flex;
	flex-direction: column;
	padding: 26px;
	color: inherit;
	overflow: hidden;
}
.card:hover {
	color: inherit;
}
.card-icon {
	width: 42px;
	height: 42px;
	border-radius: 11px;
	display: grid;
	place-items: center;
	background: var(--brand-dim);
	color: var(--ice-bright);
	margin-bottom: 18px;
}
.card-icon svg {
	width: 22px;
	height: 22px;
}
.card-kicker {
	font-size: 0.7rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--ice);
	margin-bottom: 8px;
	font-weight: 600;
}
.card h3 {
	margin-bottom: 8px;
}
.card p {
	color: var(--text-muted);
	font-size: 0.95rem;
	margin: 0;
}
.card-foot {
	margin-top: auto;
	padding-top: 18px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 0.85rem;
	color: var(--ice-bright);
	font-weight: 500;
}
.card-foot .arrow {
	transition: transform 0.25s var(--ease-out);
}
.card:hover .card-foot .arrow {
	transform: translateX(4px);
}
.card-media {
	margin: -26px -26px 20px;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: var(--bg-surface);
}
.card-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s var(--ease-out);
}
.card:hover .card-media img {
	transform: scale(1.04);
}

/* Split feature rows */
.split {
	display: grid;
	gap: 28px;
	align-items: center;
}
.split .media {
	border-radius: 18px;
	overflow: hidden;
	border: 1px solid var(--border);
	background: var(--bg-elevated);
	aspect-ratio: 4 / 3;
}
.split .media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.split ul {
	padding: 0;
	margin: 18px 0 0;
	list-style: none;
	display: grid;
	gap: 12px;
}
.split li {
	display: grid;
	grid-template-columns: 22px 1fr;
	gap: 12px;
	align-items: start;
}
.split li strong {
	color: var(--text-bright);
	font-weight: 600;
}
.split li svg {
	width: 22px;
	height: 22px;
	color: var(--teal);
	margin-top: 2px;
}
@media (min-width: 860px) {
	.split {
		grid-template-columns: 1fr 1fr;
		gap: 56px;
	}
	.split.flip .media {
		order: 2;
	}
}

/* Steps / process */
.process {
	display: grid;
	gap: 14px;
	counter-reset: step;
}
.step {
	padding: 24px;
	display: grid;
	grid-template-columns: 52px 1fr;
	gap: 18px;
}
.step .num {
	font-family: var(--font-display);
	font-style: italic;
	font-size: 2.2rem;
	color: var(--ice-bright);
	line-height: 1;
}
.step h3 {
	margin-bottom: 6px;
}
.step p {
	color: var(--text-muted);
	margin: 0;
	font-size: 0.95rem;
}
@media (min-width: 900px) {
	.process {
		grid-template-columns: repeat(3, 1fr);
	}
	.step {
		grid-template-columns: 1fr;
	}
}

/* Testimonials */
.quotes {
	display: grid;
	gap: 18px;
}
.quote {
	padding: 28px;
	display: flex;
	flex-direction: column;
	gap: 18px;
}
.quote blockquote {
	margin: 0;
	font-size: 1.05rem;
	color: var(--text-bright);
	line-height: 1.55;
}
.quote blockquote::before {
	content: '\201C';
	font-family: var(--font-display);
	font-size: 3rem;
	line-height: 0;
	color: var(--ice);
	vertical-align: -0.4em;
	margin-right: 4px;
}
.quote figcaption {
	font-size: 0.85rem;
	color: var(--text-muted);
}
.quote figcaption strong {
	display: block;
	color: var(--text);
	font-weight: 600;
}
.quote .save {
	display: inline-block;
	margin-top: 4px;
	font-size: 0.72rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--teal);
	font-weight: 600;
}
@media (min-width: 760px) {
	.quotes {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* Logo strip */
.logo-strip {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 28px;
	align-items: center;
	justify-content: center;
	padding: 22px 0 0;
	color: var(--text-muted);
	font-size: 0.85rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}
.logo-strip span {
	opacity: 0.8;
}

/* CTA band */
.cta-band {
	position: relative;
	overflow: hidden;
	padding: clamp(40px, 6vw, 72px);
	border-radius: 22px;
	border: 1px solid var(--border);
	background:
		radial-gradient(ellipse 60% 80% at 80% 50%, rgba(143, 195, 234, 0.18), transparent 70%),
		var(--bg-elevated);
	display: grid;
	gap: 22px;
	align-items: center;
}
.cta-band h2 {
	margin-bottom: 6px;
}
.cta-band p {
	color: var(--text-muted);
	margin: 0;
	max-width: 48ch;
}
@media (min-width: 860px) {
	.cta-band {
		grid-template-columns: 1fr auto;
	}
}

/* Page hero (inner pages) */
.page-hero {
	padding: clamp(36px, 5vw, 64px) 0 clamp(28px, 4vw, 40px);
}
.crumbs {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	list-style: none;
	padding: 0;
	margin: 0 0 18px;
	font-size: 0.8rem;
	color: var(--text-muted);
}
.crumbs li + li::before {
	content: '/';
	margin-right: 6px;
	opacity: 0.5;
}
.crumbs a {
	color: var(--text-muted);
}
.crumbs a:hover {
	color: var(--text-bright);
}
.page-hero .lede {
	max-width: 56ch;
}
.page-hero-media {
	margin-top: 32px;
	border-radius: 20px;
	overflow: hidden;
	border: 1px solid var(--border);
	aspect-ratio: 21 / 9;
	background: var(--bg-elevated);
}
.page-hero-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Prose */
.prose {
	font-size: 1.02rem;
}
.prose h2 {
	font-size: clamp(1.4rem, 2.6vw, 1.9rem);
	margin-top: 1.6em;
}
.prose h3 {
	margin-top: 1.4em;
}
.prose ul {
	padding-left: 1.2em;
}
.prose li {
	margin-bottom: 0.4em;
}
.prose li::marker {
	color: var(--ice);
}
.prose strong {
	color: var(--text-bright);
}
.prose-cols {
	display: grid;
	gap: 40px;
	align-items: start;
}
@media (min-width: 900px) {
	.prose-cols {
		grid-template-columns: minmax(0, 1fr) 300px;
	}
	.prose-cols aside {
		position: sticky;
		top: calc(var(--header-h) + 24px);
	}
}
.aside-card {
	padding: 22px;
	display: grid;
	gap: 10px;
}
.aside-card h3 {
	font-size: 0.75rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--ice);
	margin: 0;
}
.aside-card a.link {
	display: flex;
	justify-content: space-between;
	color: var(--text);
	padding: 8px 0;
	border-bottom: 1px solid var(--border-subtle);
	font-size: 0.92rem;
}
.aside-card a.link:hover,
.aside-card a.link[aria-current='page'] {
	color: var(--text-bright);
}
.aside-card a.link[aria-current='page'] {
	font-weight: 600;
}
.aside-card .btn {
	margin-top: 6px;
}
.spec {
	display: grid;
	gap: 0;
	border: 1px solid var(--border);
	border-radius: 14px;
	overflow: hidden;
	margin: 1.4em 0;
}
.spec div {
	display: grid;
	grid-template-columns: 1fr 1.4fr;
	gap: 12px;
	padding: 12px 16px;
	font-size: 0.93rem;
	border-bottom: 1px solid var(--border-subtle);
}
.spec div:last-child {
	border-bottom: 0;
}
.spec dt {
	color: var(--text-muted);
	margin: 0;
}
.spec dd {
	margin: 0;
	color: var(--text-bright);
}

/* FAQ */
.faq {
	display: grid;
	gap: 10px;
}
.faq details {
	border: 1px solid var(--border);
	border-radius: 12px;
	background: var(--bg-elevated);
	padding: 0 20px;
}
.faq summary {
	cursor: pointer;
	padding: 16px 0;
	font-weight: 600;
	color: var(--text-bright);
	list-style: none;
	display: flex;
	justify-content: space-between;
	gap: 16px;
}
.faq summary::-webkit-details-marker {
	display: none;
}
.faq summary::after {
	content: '+';
	color: var(--ice);
	font-weight: 400;
	font-size: 1.3rem;
	line-height: 1;
}
.faq details[open] summary::after {
	content: '\2212';
}
.faq details p {
	color: var(--text-muted);
	padding-bottom: 16px;
	margin: 0;
}

/* Portfolio */
.filters {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 26px;
}
.filters button {
	font: inherit;
	font-size: 0.82rem;
	font-weight: 500;
	padding: 7px 14px;
	border-radius: 100px;
	border: 1px solid var(--border);
	background: transparent;
	color: var(--text);
	cursor: pointer;
}
.filters button[aria-pressed='true'] {
	background: var(--ice);
	border-color: var(--ice);
	color: #0b1226;
}
.project {
	padding: 0;
}
.project .card-media {
	margin: 0;
	aspect-ratio: 4 / 3;
}
.project-body {
	padding: 20px 22px 22px;
}
.project-body h3 {
	margin-bottom: 4px;
}
.project-meta {
	font-size: 0.8rem;
	color: var(--text-muted);
	display: flex;
	flex-wrap: wrap;
	gap: 6px 14px;
	margin-bottom: 10px;
}
.project-body p {
	font-size: 0.92rem;
}
.tag {
	display: inline-block;
	font-size: 0.68rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	font-weight: 600;
	color: var(--ice);
	background: var(--brand-dim);
	padding: 3px 9px;
	border-radius: 100px;
}
[hidden] {
	display: none !important;
}

/* Contact */
.contact-grid {
	display: grid;
	gap: 32px;
}
@media (min-width: 900px) {
	.contact-grid {
		grid-template-columns: 1.1fr 0.9fr;
		gap: 56px;
	}
}
.form {
	padding: 28px;
	display: grid;
	gap: 16px;
}
.field {
	display: grid;
	gap: 6px;
}
.field label {
	font-size: 0.82rem;
	font-weight: 600;
	color: var(--text-bright);
}
.field input,
.field select,
.field textarea {
	width: 100%;
	font: inherit;
	font-size: 0.95rem;
	color: var(--text-bright);
	background: var(--bg);
	border: 1px solid var(--border);
	border-radius: 10px;
	padding: 11px 13px;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
	outline: 2px solid var(--ice);
	outline-offset: 1px;
	border-color: var(--ice);
}
.field textarea {
	min-height: 130px;
	resize: vertical;
}
.field-row {
	display: grid;
	gap: 16px;
}
@media (min-width: 600px) {
	.field-row {
		grid-template-columns: 1fr 1fr;
	}
}
.form-note {
	font-size: 0.8rem;
	color: var(--text-muted);
	margin: 0;
}
.form-status {
	font-size: 0.9rem;
	color: var(--teal);
	margin: 0;
}
.contact-list {
	display: grid;
	gap: 18px;
}
.contact-list .spot {
	padding: 22px;
}
.contact-list h3 {
	font-size: 0.75rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--ice);
	margin-bottom: 10px;
}
.contact-list p {
	margin: 0 0 4px;
}
.contact-list a {
	color: var(--text-bright);
}
.contact-list a:hover {
	color: var(--ice-bright);
}
.person {
	display: grid;
	gap: 2px;
	padding: 12px 0;
	border-top: 1px solid var(--border-subtle);
	font-size: 0.93rem;
}
.person:first-of-type {
	border-top: 0;
	padding-top: 0;
}
.person strong {
	color: var(--text-bright);
}
.person span {
	color: var(--text-muted);
	font-size: 0.82rem;
}

/* Careers */
.job {
	padding: 24px;
}
.job h3 {
	margin-bottom: 4px;
}

/* Footer */
.site-footer {
	margin-top: clamp(40px, 6vw, 80px);
	border-top: 1px solid var(--border-subtle);
	padding: 56px 0 28px;
	font-size: 0.9rem;
}
.footer-grid {
	display: grid;
	gap: 32px;
}
.footer-brand p {
	color: var(--text-muted);
	max-width: 34ch;
	margin-top: 12px;
}
.footer-col h2 {
	font-size: 0.72rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--ice);
	margin-bottom: 12px;
}
.footer-col ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 8px;
}
.footer-col a {
	color: var(--text);
}
.footer-col a:hover {
	color: var(--text-bright);
}
.footer-col address {
	font-style: normal;
	color: var(--text-muted);
	line-height: 1.7;
}
.footer-bottom {
	margin-top: 40px;
	padding-top: 20px;
	border-top: 1px solid var(--border-subtle);
	display: flex;
	flex-wrap: wrap;
	gap: 10px 24px;
	justify-content: space-between;
	color: var(--text-muted);
	font-size: 0.8rem;
}
.footer-bottom a {
	color: var(--text-muted);
}
.footer-bottom a:hover {
	color: var(--text-bright);
}
@media (min-width: 760px) {
	.footer-grid {
		grid-template-columns: 1.4fr 1fr 1fr 1fr;
	}
}

/* Reveal on scroll (only when JS is present) */
html.js [data-reveal] {
	opacity: 0;
	transform: translateY(18px);
	transition:
		opacity 0.7s var(--ease-out),
		transform 0.7s var(--ease-out);
	transition-delay: calc(var(--reveal-delay, 0) * 1ms);
}
html.js [data-reveal].is-visible {
	opacity: 1;
	transform: none;
}
html.js .spot[data-reveal].is-visible {
	transition:
		border-color 0.3s var(--ease-out),
		transform 0.35s var(--ease-out);
}
@media (prefers-reduced-motion: reduce) {
	html.js [data-reveal] {
		opacity: 1;
		transform: none;
		transition: none;
	}
}

/* Comparison tables */
.cmp {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.93rem;
	min-width: 520px;
}
.cmp th,
.cmp td {
	text-align: left;
	padding: 12px 14px;
	border-bottom: 1px solid var(--border-subtle);
	vertical-align: top;
}
.cmp thead th {
	font-size: 0.72rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--ice);
	border-bottom: 1px solid var(--border);
}
.cmp tbody th {
	color: var(--text-bright);
	font-weight: 600;
	width: 28%;
}
.cmp td {
	color: var(--text);
}

/* YouTube facade: thumbnail + play button, iframe loads on click */
.yt-grid {
	grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 900px) {
	.yt-grid {
		grid-template-columns: repeat(4, 1fr);
	}
}
.yt {
	position: relative;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	border-radius: 14px;
	background: var(--bg-surface);
}
.yt img,
.yt iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border: 0;
}
.yt img {
	opacity: 0.75;
	transition: opacity 0.3s var(--ease-out);
}
.yt:hover img {
	opacity: 0.95;
}
.yt button {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 56px;
	height: 56px;
	border-radius: 50%;
	border: 0;
	background: var(--brand);
	color: #fff;
	cursor: pointer;
	display: grid;
	place-items: center;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.45);
	transition: transform 0.25s var(--ease-out), background 0.2s;
}
.yt button svg {
	width: 22px;
	height: 22px;
	margin-left: 3px;
	fill: currentColor;
	stroke: none;
}
.yt:hover button {
	transform: translate(-50%, -50%) scale(1.08);
	background: var(--brand-hover);
}
.yt-title {
	position: absolute;
	left: 12px;
	bottom: 10px;
	font-size: 0.78rem;
	font-weight: 600;
	color: #fff;
	text-shadow: 0 1px 6px rgba(0, 0, 0, 0.8);
}
