/* =========================================================================
   Asorin Voltline
   Neon-white ground, electric blue ink, obsidian plates, key-signal motion.
   ========================================================================= */

:root {
	--bg: #F7FAFF;
	--surface: #FFFFFF;
	--ink: #0A1B4D;
	--ink-soft: #33477F;
	--accent: #0B44FF;
	--accent-soft: #5B7CFF;
	--hairline: #D6E0FA;
	--obsidian: #060B1F;

	--font-display: 'Space Grotesk', ui-sans-serif, system-ui, sans-serif;
	--font-body: 'Manrope', ui-sans-serif, system-ui, sans-serif;

	--r-sm: 6px;
	--r-md: 14px;
	--r-lg: 28px;
	--r-pill: 999px;

	--s-xs: 8px;
	--s-sm: 16px;
	--s-md: 28px;
	--s-lg: 56px;
	--s-xl: 104px;
	--s-xxl: 160px;

	--shell: 1240px;
	--gutter: 24px;
	--header-h: 80px;

	--ease: cubic-bezier(0.22, 1, 0.36, 1);
	--lift: 0 24px 60px -24px rgba(11, 68, 255, 0.28);
	--lift-sm: 0 14px 34px -18px rgba(11, 68, 255, 0.32);
}

/* ---------------------------------------------------------------- reset
   :where() keeps these at zero specificity so component rules always win. */

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

:where(body, h1, h2, h3, h4, p, figure, blockquote, dl, dd, ol, ul) { margin: 0; padding: 0; }
:where(ul, ol) { list-style: none; }
:where(img, svg, video) { display: block; max-width: 100%; }
:where(button, input, select, textarea) { font: inherit; color: inherit; }

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

body {
	background: var(--bg);
	color: var(--ink);
	font-family: var(--font-body);
	font-size: 1.0625rem;
	line-height: 1.65;
	font-weight: 400;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	padding-top: var(--header-h);
	overflow-x: hidden;
}

::selection { background: var(--accent); color: #fff; }

:focus-visible {
	outline: 2px solid var(--accent);
	outline-offset: 3px;
	border-radius: var(--r-sm);
}

/* ---------------------------------------------------------------- type */

.h1, .h2, .h3, h1, h2, h3 {
	font-family: var(--font-display);
	font-weight: 700;
	letter-spacing: -0.025em;
	line-height: 1.06;
	text-wrap: balance;
}

.h1, h1 { font-size: clamp(2.6rem, 6.4vw, 5.4rem); line-height: 1.02; }
.h2, h2 { font-size: clamp(1.95rem, 3.9vw, 3.3rem); line-height: 1.08; }
.h3, h3 { font-size: clamp(1.1rem, 1.6vw, 1.35rem); line-height: 1.18; letter-spacing: -0.015em; }

em.accent,
.accent { color: var(--accent); font-style: normal; }

.lede {
	font-size: clamp(1.05rem, 1.35vw, 1.2rem);
	line-height: 1.6;
	color: var(--ink-soft);
	max-width: 48ch;
}

a { color: var(--accent); text-decoration-thickness: 1px; text-underline-offset: 3px; }

.marker {
	display: block;
	width: 2px;
	height: 46px;
	background: linear-gradient(var(--accent), rgba(11, 68, 255, 0));
	margin-bottom: 22px;
}

.screen-reader-text {
	position: absolute !important;
	width: 1px; height: 1px;
	overflow: hidden; clip-path: inset(50%);
	white-space: nowrap;
}

.skip {
	position: absolute;
	left: 16px;
	top: -60px;
	z-index: 200;
	background: var(--accent);
	color: #fff;
	padding: 10px 18px;
	border-radius: var(--r-pill);
	text-decoration: none;
	transition: top 0.2s var(--ease);
}
.skip:focus { top: 14px; }

/* ---------------------------------------------------------------- layout */

.shell {
	width: min(100% - (var(--gutter) * 2), var(--shell));
	margin-inline: auto;
}

.section-head { margin-bottom: clamp(40px, 5vw, 72px); max-width: 22ch; }
.section-head .h2 { max-width: 18ch; }

.prose { max-width: 66ch; }
.prose p { margin-bottom: 1.15em; }
.prose p:last-child { margin-bottom: 0; }
.prose h2 { font-size: clamp(1.5rem, 2.4vw, 2rem); margin: 1.9em 0 0.6em; }
.prose h3 { margin: 1.6em 0 0.5em; }
.prose ul { margin: 0 0 1.2em; padding-left: 0; }
.prose ul li {
	position: relative;
	padding-left: 26px;
	margin-bottom: 0.5em;
}
.prose ul li::before {
	content: "";
	position: absolute;
	left: 4px; top: 0.72em;
	width: 8px; height: 8px;
	border-radius: 2px;
	background: var(--accent);
}
.prose ol { margin: 0 0 1.2em; padding-left: 22px; list-style: decimal; }
.prose ol li { margin-bottom: 0.5em; padding-left: 6px; }
.prose strong { font-weight: 700; color: var(--ink); }

/* ---------------------------------------------------------------- buttons */

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

.btn {
	--btn-bg: var(--accent);
	--btn-fg: #fff;
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 17px 32px;
	border: 1px solid transparent;
	border-radius: var(--r-pill);
	background: var(--btn-bg);
	color: var(--btn-fg);
	font-family: var(--font-body);
	font-weight: 600;
	font-size: 1rem;
	line-height: 1;
	text-decoration: none;
	white-space: nowrap;
	cursor: pointer;
	transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background-color 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}

.btn--sm { padding: 13px 24px; font-size: 0.94rem; }

.btn__icon { display: inline-flex; transition: transform 0.3s var(--ease); }
.btn:hover .btn__icon { transform: translateX(4px); }

.btn--primary:hover,
.btn--primary:focus-visible { transform: translateY(-2px); box-shadow: 0 16px 38px -14px rgba(11, 68, 255, 0.62); }
.btn--primary:active { transform: translateY(-1px); }

.btn--secondary {
	--btn-bg: transparent;
	--btn-fg: var(--accent);
	border-color: var(--accent);
}
.btn--secondary:hover,
.btn--secondary:focus-visible { --btn-bg: var(--accent); --btn-fg: #fff; transform: translateY(-2px); }

.btn--onDark { --btn-bg: #fff; --btn-fg: var(--obsidian); }
.btn--onDark:hover { transform: translateY(-2px); box-shadow: 0 16px 38px -16px rgba(91, 124, 255, 0.7); }

.btn--ghost { --btn-bg: transparent; --btn-fg: #fff; border-color: rgba(214, 224, 250, 0.4); }
.btn--ghost:hover, .btn--ghost:focus-visible { border-color: #fff; transform: translateY(-2px); }

.icon { width: 24px; height: 24px; }
.icon--sm { width: 18px; height: 18px; }

/* ---------------------------------------------------------------- masthead */

.masthead {
	position: fixed;
	inset: 0 0 auto 0;
	z-index: 60;
	height: var(--header-h);
	display: flex;
	align-items: center;
	background: rgba(247, 250, 255, 0.72);
	backdrop-filter: blur(14px) saturate(1.4);
	-webkit-backdrop-filter: blur(14px) saturate(1.4);
	border-bottom: 1px solid transparent;
	transition: border-color 0.3s var(--ease), transform 0.4s var(--ease), background-color 0.3s var(--ease);
}
.masthead.is-stuck { border-bottom-color: var(--hairline); }
.masthead.is-hidden { transform: translateY(-100%); }

.masthead__inner { display: flex; align-items: center; gap: clamp(16px, 3vw, 40px); width: min(100% - (var(--gutter) * 2), var(--shell)); margin-inline: auto; }

.brand { margin-right: auto; display: block; text-decoration: none; }
.brand__plate {
	display: block;
	background: var(--obsidian);
	border-radius: var(--r-lg);
	padding: 9px 16px;
	width: clamp(132px, 13vw, 168px);
	transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.brand:hover .brand__plate { transform: translateY(-2px); box-shadow: var(--lift-sm); }
.brand__plate img { width: 100%; height: auto; }
.brand__plate--footer { width: clamp(150px, 16vw, 190px); background: rgba(255, 255, 255, 0.06); }

.nav__list { display: flex; align-items: center; gap: clamp(18px, 2.4vw, 34px); }
.nav__list a {
	position: relative;
	color: var(--ink);
	text-decoration: none;
	font-weight: 500;
	font-size: 0.98rem;
	padding-block: 6px;
	transition: color 0.25s var(--ease);
}
.nav__list a::after {
	content: "";
	position: absolute;
	left: 0; right: 0; bottom: 0;
	height: 2px;
	background: var(--accent);
	transform: scaleX(0);
	transform-origin: right;
	transition: transform 0.35s var(--ease);
}
.nav__list a:hover,
.nav__list .current-menu-item > a { color: var(--accent); }
.nav__list a:hover::after,
.nav__list .current-menu-item > a::after { transform: scaleX(1); transform-origin: left; }

.burger { display: none; background: none; border: 0; padding: 10px; cursor: pointer; color: var(--ink); }
.burger__bars { display: block; width: 24px; }
.burger__bars i {
	display: block;
	height: 2px;
	background: currentColor;
	border-radius: 2px;
	transition: transform 0.35s var(--ease), width 0.35s var(--ease);
}
.burger__bars i:first-child { width: 24px; margin-bottom: 6px; }
.burger__bars i:last-child { width: 16px; margin-left: auto; }
.burger[aria-expanded="true"] .burger__bars i:first-child { transform: translateY(4px) rotate(45deg); }
.burger[aria-expanded="true"] .burger__bars i:last-child { width: 24px; transform: translateY(-4px) rotate(-45deg); }

/* ---------------------------------------------------------------- nav panel */

.navpanel {
	position: fixed;
	inset: var(--header-h) 0 0 0;
	z-index: 55;
	background: var(--bg);
	display: grid;
	align-items: center;
	overflow-y: auto;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.35s var(--ease);
}
.navpanel::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(70% 55% at 20% 20%, rgba(11, 68, 255, 0.14), transparent 70%);
	pointer-events: none;
}
.navpanel.is-open { opacity: 1; pointer-events: auto; }
.navpanel__inner { position: relative; width: min(100% - (var(--gutter) * 2), var(--shell)); margin-inline: auto; padding-block: var(--s-lg); }
.navpanel__list { display: grid; gap: 4px; margin-bottom: var(--s-lg); }
.navpanel__list a {
	display: block;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: clamp(2rem, 8vw, 3.4rem);
	letter-spacing: -0.03em;
	line-height: 1.1;
	color: var(--ink);
	text-decoration: none;
	padding-block: 6px;
	opacity: 0;
	transform: translateY(18px);
}
.navpanel.is-open .navpanel__list a {
	opacity: 1;
	transform: none;
	transition: opacity 0.5s var(--ease), transform 0.55s var(--ease), color 0.25s var(--ease);
	transition-delay: calc(var(--i, 0) * 60ms + 80ms);
}
.navpanel__list a:hover, .navpanel__list .current-menu-item > a { color: var(--accent); }
.navpanel__foot { display: grid; gap: 6px; border-top: 1px solid var(--hairline); padding-top: var(--s-md); }
.navpanel__link { color: var(--ink-soft); text-decoration: none; font-size: 1.05rem; }
.navpanel__link:hover { color: var(--accent); }

body.is-locked { overflow: hidden; }

/* ---------------------------------------------------------------- wipe + rail */

.wipe {
	position: fixed;
	inset: 0;
	z-index: 120;
	pointer-events: none;
	display: grid;
}
.wipe__panel {
	display: block;
	background: var(--accent);
	transform: scaleY(0);
	transform-origin: bottom;
	will-change: transform;
}
.wipe.is-out .wipe__panel { transform: scaleY(1); transform-origin: bottom; transition: transform 0.42s var(--ease); }
.wipe.is-in .wipe__panel { transform: scaleY(0); transform-origin: top; transition: transform 0.6s var(--ease); }

.rail { position: fixed; inset: 0 0 auto 0; height: 2px; z-index: 70; pointer-events: none; }
.rail__fill { display: block; height: 100%; width: 100%; background: var(--accent); transform: scaleX(0); transform-origin: left; }

/* ---------------------------------------------------------------- reveals */

.js-on [data-reveal] { opacity: 0; transform: translateY(30px); }
.js-on [data-reveal="scale"] { transform: scale(0.955); }
.js-on [data-reveal].is-in {
	opacity: 1;
	transform: none;
	transition: opacity 0.75s var(--ease), transform 0.85s var(--ease);
	transition-delay: calc(var(--reveal-order, 0) * 75ms);
}

.word { display: inline-block; overflow: hidden; vertical-align: top; }
.word > span { display: inline-block; transform: translateY(105%); }
.is-typed .word > span { transform: none; transition: transform 0.85s var(--ease); transition-delay: calc(var(--w, 0) * 45ms); }

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

.hero { position: relative; padding-block: clamp(56px, 8vh, 96px) clamp(64px, 9vw, 120px); overflow: clip; }
.hero__field {
	position: absolute;
	inset: -30% -10% auto -30%;
	height: 130%;
	background:
		radial-gradient(48% 46% at 22% 34%, rgba(11, 68, 255, 0.17), transparent 68%),
		radial-gradient(38% 40% at 78% 18%, rgba(91, 124, 255, 0.16), transparent 70%);
	pointer-events: none;
}
.hero__inner {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
	gap: clamp(32px, 4vw, 64px);
	align-items: center;
}
.hero__title { margin-bottom: clamp(22px, 2.6vw, 32px); }
.hero__line { display: block; }
.hero__intro { margin-bottom: clamp(26px, 3vw, 38px); max-width: 44ch; }

.hero__visual { position: relative; margin-right: calc(50% - 50vw); }
.hero__plate {
	position: relative;
	border-radius: var(--r-lg) 0 0 var(--r-lg);
	overflow: hidden;
	clip-path: polygon(5.5% 0, 100% 0, 100% 100%, 0 100%);
	box-shadow: var(--lift);
}
.hero__img { width: 100%; height: clamp(340px, 46vw, 560px); object-fit: cover; }
.hero__signal { position: absolute; left: 8%; bottom: 7%; width: clamp(96px, 11vw, 148px); height: auto; color: #fff; }
.hero__ring { fill: none; stroke: currentColor; stroke-width: 2; opacity: 0; transform-origin: 100px 100px; }
.hero__core { fill: currentColor; }

@keyframes pulse-ring {
	0% { transform: scale(0.35); opacity: 0; }
	18% { opacity: 0.85; }
	100% { transform: scale(2.6); opacity: 0; }
}
.hero__ring { animation: pulse-ring 3.2s var(--ease) infinite; }
.hero__ring:nth-child(2) { animation-delay: 1.05s; }
.hero__ring:nth-child(3) { animation-delay: 2.1s; }

/* ---------------------------------------------------------------- brand wall */

.wall { border-block: 1px solid var(--hairline); padding-block: clamp(22px, 2.6vw, 32px); overflow: hidden; background: var(--surface); }
.wall__track { display: flex; width: max-content; animation: marquee 58s linear infinite; }
.wall:hover .wall__track { animation-play-state: paused; }
.wall__row { display: flex; align-items: center; gap: clamp(34px, 4.6vw, 68px); padding-inline: clamp(17px, 2.3vw, 34px); }
.wall__mark img {
	height: clamp(26px, 2.6vw, 34px);
	width: auto;
	filter: grayscale(1) brightness(0.52) sepia(1) hue-rotate(197deg) saturate(6);
	opacity: 0.62;
	transition: filter 0.35s var(--ease), opacity 0.35s var(--ease), transform 0.35s var(--ease);
}
.wall__mark:hover img { filter: none; opacity: 1; transform: translateY(-4px); }

@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------------------------------------------------------------- bento */

.services { padding-block: var(--s-xxl); }

.bento { display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px; }
.bento__cell {
	position: relative;
	grid-column: span 4;
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding: clamp(22px, 2.4vw, 32px);
	background: var(--surface);
	border: 1px solid var(--hairline);
	border-radius: var(--r-md);
	overflow: hidden;
	transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}
.bento__cell:hover { transform: translateY(-4px); border-color: var(--accent-soft); box-shadow: var(--lift-sm); }

.bento__cell--five { grid-column: span 5; }
.bento__cell--eight { grid-column: span 8; }
.bento__cell--four { grid-column: span 4; }
.bento__cell--tinted { background: linear-gradient(140deg, rgba(11, 68, 255, 0.08), rgba(91, 124, 255, 0.03)); border-color: rgba(11, 68, 255, 0.18); }

.bento__cell--feature {
	grid-column: span 7;
	grid-row: span 2;
	min-height: 400px;
	justify-content: flex-end;
	border-color: transparent;
	color: #fff;
	background: var(--obsidian);
}
.bento__art {
	position: absolute;
	inset: 0;
	width: 100%; height: 100%;
	object-fit: cover;
	opacity: 0.5;
	transition: transform 0.9s var(--ease), opacity 0.6s var(--ease);
}
.bento__cell--feature::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(200deg, rgba(6, 11, 31, 0.28) 12%, rgba(6, 11, 31, 0.9) 72%);
}
.bento__cell--feature:hover .bento__art { transform: scale(1.06); opacity: 0.62; }
.bento__cell--feature > *:not(.bento__art) { position: relative; z-index: 2; }
.bento__cell--feature .bento__title { font-size: clamp(1.5rem, 2.4vw, 2.1rem); }
.bento__cell--feature .bento__copy { color: rgba(255, 255, 255, 0.84); max-width: 44ch; }
.bento__cell--feature .bento__icon { color: var(--accent-soft); }

.bento__icon { color: var(--accent); display: inline-flex; transition: transform 0.45s var(--ease); }
.bento__cell:hover .bento__icon { transform: translateY(-3px) rotate(-8deg); }
.bento__title { font-family: var(--font-display); }
.bento__copy { color: var(--ink-soft); font-size: 0.99rem; line-height: 1.6; }

/* ---------------------------------------------------------------- steps */

.steps { padding-block: 0 var(--s-xxl); }
.steps__title { max-width: 16ch; margin-bottom: clamp(40px, 5vw, 68px); }
.steps__list { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(20px, 2.6vw, 40px); }
.steps__item { display: flex; flex-direction: column; gap: 10px; }
.steps__num {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: clamp(3.2rem, 6vw, 5.4rem);
	line-height: 0.9;
	color: transparent;
	-webkit-text-stroke: 1.5px var(--accent-soft);
	letter-spacing: -0.04em;
	transition: color 0.5s var(--ease);
}
.steps__item:hover .steps__num { color: rgba(11, 68, 255, 0.1); }
.steps__head { font-family: var(--font-display); font-size: clamp(1.02rem, 1.35vw, 1.2rem); }
.steps__copy { color: var(--ink-soft); font-size: 0.97rem; line-height: 1.6; }
.steps__rail { position: relative; height: 2px; background: var(--hairline); margin-top: clamp(34px, 4vw, 56px); }
.steps__rail-fill { position: absolute; inset: 0; background: var(--accent); transform: scaleX(0); transform-origin: left; }
.steps__rail-fill.is-drawn { transform: scaleX(1); transition: transform 1.5s var(--ease); }

/* ---------------------------------------------------------------- promise */

.promise {
	display: grid;
	grid-template-columns: minmax(0, 0.88fr) minmax(0, 1fr);
	align-items: center;
	gap: clamp(32px, 4.5vw, 86px);
	padding-block: 0 var(--s-xxl);
	padding-right: max(var(--gutter), calc((100vw - var(--shell)) / 2));
}
.promise__media { position: relative; }
.promise__media::before {
	content: "";
	position: absolute;
	inset: 14px -18px -18px 0;
	border-radius: 0 var(--r-lg) var(--r-lg) 0;
	background: linear-gradient(140deg, rgba(11, 68, 255, 0.16), rgba(91, 124, 255, 0.05));
}
.promise__img {
	position: relative;
	width: 100%;
	height: clamp(360px, 42vw, 580px);
	object-fit: cover;
	border-radius: 0 var(--r-lg) var(--r-lg) 0;
	transform: rotate(-1deg);
	box-shadow: var(--lift);
}
.promise__type { max-width: 58ch; }
.promise__type .prose { margin-top: 22px; }

.stats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(16px, 2vw, 28px); margin-top: clamp(34px, 4vw, 52px); border-top: 1px solid var(--hairline); padding-top: clamp(24px, 3vw, 34px); }
.stats__value { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.7rem, 2.6vw, 2.5rem); line-height: 1; color: var(--accent); letter-spacing: -0.03em; }
.stats__label { font-weight: 600; font-size: 0.95rem; margin-top: 8px; }
.stats__note { display: block; font-weight: 400; font-size: 0.87rem; color: var(--ink-soft); line-height: 1.5; margin-top: 4px; }

/* ---------------------------------------------------------------- coverage */

.coverage { padding-block: 0 var(--s-xxl); }
.coverage__inner { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(30px, 4vw, 70px); align-items: start; }
.coverage__type .lede { margin-top: 18px; }
.coverage__list { display: flex; flex-wrap: wrap; gap: 10px; padding-top: 8px; }
.coverage__area {
	border: 1px solid var(--hairline);
	border-radius: var(--r-pill);
	padding: 10px 20px;
	font-size: 0.94rem;
	font-weight: 500;
	background: var(--surface);
	transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), color 0.3s var(--ease);
}
.coverage__area:hover { transform: translateY(-3px); border-color: var(--accent); color: var(--accent); }

/* ---------------------------------------------------------------- obsidian band */

.band { background: var(--obsidian); color: #fff; padding-block: clamp(72px, 9vw, 128px); position: relative; overflow: hidden; }
.band::before {
	content: "";
	position: absolute;
	inset: auto -10% -60% -10%;
	height: 120%;
	background: radial-gradient(46% 60% at 50% 100%, rgba(11, 68, 255, 0.5), transparent 70%);
}
.band__inner { position: relative; text-align: center; display: grid; justify-items: center; gap: 20px; }
.band__title { max-width: 16ch; }
.band__copy { color: rgba(255, 255, 255, 0.76); max-width: 54ch; }
.band .btn-row { justify-content: center; margin-top: 12px; }

/* ---------------------------------------------------------------- contact */

.contact { position: relative; padding-block: var(--s-xxl); overflow: hidden; background: var(--bg); }
.contact__field {
	position: absolute;
	inset: -20% -20% auto -20%;
	height: 140%;
	background: radial-gradient(40% 50% at 30% 30%, rgba(11, 68, 255, 0.13), transparent 70%);
	pointer-events: none;
}
.contact__inner { position: relative; }
.contact__lead { margin-bottom: clamp(36px, 4vw, 56px); }
.contact__title { max-width: 20ch; }
.contact__copy { margin-top: 18px; }

.contact__actions { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 16px; }
.contact__card,
.contact__area {
	display: flex;
	flex-direction: column;
	gap: 6px;
	padding: clamp(24px, 2.6vw, 34px);
	border: 1px solid var(--hairline);
	border-radius: var(--r-md);
	background: var(--surface);
	text-decoration: none;
	color: var(--ink);
	transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}
.contact__card:hover { transform: translateY(-4px); box-shadow: var(--lift-sm); border-color: var(--accent-soft); }
.contact__card:first-child { background: var(--accent); border-color: transparent; color: #fff; }
.contact__card:first-child:hover { box-shadow: 0 22px 48px -20px rgba(11, 68, 255, 0.7); }
.contact__icon { color: var(--accent); margin-bottom: 8px; }
.contact__card:first-child .contact__icon { color: #fff; }
.contact__label { font-size: 0.86rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; opacity: 0.72; }
.contact__value { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.15rem, 1.7vw, 1.5rem); letter-spacing: -0.02em; word-break: break-word; }
.contact__note { font-size: 0.9rem; color: var(--ink-soft); line-height: 1.5; }
.contact__card:first-child .contact__note { color: rgba(255, 255, 255, 0.8); }
.contact__area { background: transparent; }

/* ---------------------------------------------------------------- footer */

.footer { background: var(--obsidian); color: rgba(255, 255, 255, 0.8); padding-block: clamp(56px, 6vw, 84px) 28px; }
.footer__inner { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.8fr) minmax(0, 1fr); gap: clamp(30px, 4vw, 64px); }
.footer__line { margin-top: 20px; max-width: 40ch; font-size: 0.97rem; line-height: 1.6; color: rgba(255, 255, 255, 0.66); }
.footer__title { font-family: var(--font-display); font-size: 0.86rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255, 255, 255, 0.5); margin-bottom: 16px; }
.footer__list { display: grid; gap: 9px; }
.footer__list a, .footer__list span { color: rgba(255, 255, 255, 0.82); text-decoration: none; font-size: 0.98rem; transition: color 0.25s var(--ease); }
.footer__list a:hover { color: var(--accent-soft); }
.footer__base {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	align-items: center;
	justify-content: space-between;
	margin-top: clamp(40px, 5vw, 64px);
	padding-top: 22px;
	border-top: 1px solid rgba(214, 224, 250, 0.14);
	font-size: 0.88rem;
	color: rgba(255, 255, 255, 0.52);
}
.footer__legal { display: flex; gap: 20px; }
.footer__legal a { color: rgba(255, 255, 255, 0.72); text-decoration: none; }
.footer__legal a:hover { color: var(--accent-soft); }

/* ---------------------------------------------------------------- prose page */

.prose-page { position: relative; padding-block: clamp(56px, 7vw, 96px) var(--s-xxl); overflow: hidden; }
.prose-page__field { position: absolute; inset: -40% -20% auto -20%; height: 120%; background: radial-gradient(38% 42% at 24% 26%, rgba(11, 68, 255, 0.13), transparent 70%); pointer-events: none; }
.prose-page .shell { position: relative; }
.prose-page__head { margin-bottom: clamp(32px, 4vw, 52px); }
.prose-page .h1 { max-width: 18ch; }
.prose-page .btn-row { margin-top: 28px; }

/* ---------------------------------------------------------------- responsive */

@media (max-width: 1080px) {
	.bento__cell--feature { grid-column: span 12; grid-row: span 1; min-height: 340px; }
	.bento__cell--five { grid-column: span 6; }
	.bento__cell--eight { grid-column: span 7; }
	.bento__cell--four { grid-column: span 5; }
	.bento__cell:nth-child(6) { grid-column: span 6; }
	.bento__cell:nth-child(7) { grid-column: span 6; }
}

@media (max-width: 900px) {
	:root { --s-xxl: 100px; --s-xl: 72px; --header-h: 72px; }
	.nav, .masthead__action { display: none; }
	.burger { display: block; }
	.hero__inner { grid-template-columns: 1fr; gap: clamp(34px, 6vw, 52px); }
	.hero__visual { margin-right: calc(50% - 50vw); margin-left: calc(50% - 50vw); }
	.hero__plate { border-radius: 0; clip-path: polygon(0 3.5%, 100% 0, 100% 100%, 0 100%); }
	.promise { grid-template-columns: 1fr; padding-right: 0; }
	.promise__type { width: min(100% - (var(--gutter) * 2), var(--shell)); margin-inline: auto; }
	.promise__img { transform: none; border-radius: 0; height: clamp(300px, 62vw, 460px); }
	.promise__media::before { display: none; }
	.coverage__inner { grid-template-columns: 1fr; }
	.contact__actions { grid-template-columns: 1fr 1fr; }
	.contact__card:first-child { grid-column: span 2; }
	.footer__inner { grid-template-columns: 1fr 1fr; }
	.footer__brand { grid-column: span 2; }
	.steps__list { grid-template-columns: repeat(2, 1fr); gap: clamp(26px, 5vw, 40px); }
}

@media (max-width: 760px) {
	.bento { grid-template-columns: 1fr; }
	.bento__cell,
	.bento__cell--five,
	.bento__cell--eight,
	.bento__cell--four,
	.bento__cell--feature,
	.bento__cell:nth-child(6),
	.bento__cell:nth-child(7) { grid-column: span 1; }
	.stats { grid-template-columns: 1fr; gap: 20px; }
	.contact__actions { grid-template-columns: 1fr; }
	.contact__card:first-child { grid-column: span 1; }
	.footer__inner { grid-template-columns: 1fr; }
	.footer__brand { grid-column: span 1; }
	.steps__list { grid-template-columns: 1fr; }
	.btn { width: 100%; justify-content: center; }
	.btn--sm { width: auto; }
}

/* ---------------------------------------------------------------- reduced motion */

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	.js-on [data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; }
	.word > span { transform: none !important; transition: none !important; }
	.wall__track { animation: none; }
	.hero__ring { animation: none; opacity: 0.35; }
	.wipe { display: none; }
	.steps__rail-fill { transform: scaleX(1); transition: none; }
	.navpanel__list a { opacity: 1; transform: none; transition: none; }
	*, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}
