/* ============================================================
   Super Vending 24 — dark technical theme, orange accent
   Display: Bricolage Grotesque · Body: Hanken Grotesk · Mono: JetBrains Mono
   ============================================================ */

:root {
	--bg: #08080b;
	--bg-2: #0c0c10;
	--surface: rgba(255, 255, 255, 0.024);
	--surface-2: rgba(255, 255, 255, 0.04);
	--surface-hover: rgba(255, 255, 255, 0.06);
	--line: rgba(255, 255, 255, 0.09);
	--line-strong: rgba(255, 255, 255, 0.16);

	--text: #f4f4f6;
	--text-dim: #a8a8b3;
	--text-mute: #6f6f7b;

	--orange: #f97316;
	--orange-bright: #fb923c;
	--orange-deep: #c2410c;
	--orange-12: rgba(249, 115, 22, 0.12);
	--orange-20: rgba(249, 115, 22, 0.2);
	--orange-glow: rgba(249, 115, 22, 0.45);

	--font-display: "Bricolage Grotesque", ui-sans-serif, system-ui, sans-serif;
	--font-body: "Hanken Grotesk", ui-sans-serif, system-ui, -apple-system, sans-serif;
	--font-mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

	--header-height: 70px;
	--section-x: clamp(20px, 5.5vw, 88px);
	--section-y: clamp(72px, 9vw, 132px);
	--container: 1200px;
	--radius: 16px;

	--ease: cubic-bezier(0.22, 1, 0.36, 1);
	--ease-in: cubic-bezier(0.4, 0, 1, 1);
}

* { box-sizing: border-box; }

html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
	background: var(--bg);
	color: var(--text);
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.6;
	letter-spacing: -0.005em;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

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

a { color: inherit; text-decoration: none; }

::selection { background: var(--orange); color: #1a0a00; }

::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #26262e; border-radius: 20px; border: 3px solid var(--bg); }
::-webkit-scrollbar-thumb:hover { background: #34343e; }

/* ---------- Background atmosphere ---------- */

.bg-grid {
	position: fixed;
	inset: 0;
	z-index: -2;
	pointer-events: none;
	background-image:
		linear-gradient(to right, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
		linear-gradient(to bottom, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
	background-size: 64px 64px;
	mask-image: radial-gradient(ellipse 90% 70% at 50% 0%, #000 35%, transparent 78%);
	-webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 0%, #000 35%, transparent 78%);
}

.bg-glow {
	position: fixed;
	inset: 0;
	z-index: -2;
	pointer-events: none;
	background:
		radial-gradient(560px 420px at 78% -4%, rgba(249, 115, 22, 0.16), transparent 70%),
		radial-gradient(620px 520px at 8% 6%, rgba(249, 115, 22, 0.08), transparent 72%),
		radial-gradient(900px 700px at 50% 110%, rgba(249, 115, 22, 0.05), transparent 70%);
}

.cursor-spot {
	position: fixed;
	top: 0;
	left: 0;
	width: 460px;
	height: 460px;
	margin: -230px 0 0 -230px;
	border-radius: 50%;
	z-index: -1;
	pointer-events: none;
	background: radial-gradient(circle, rgba(249, 115, 22, 0.1), transparent 62%);
	opacity: 0;
	transition: opacity 0.5s ease;
	will-change: transform;
}
body.is-pointer .cursor-spot { opacity: 1; }

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

.scroll-progress {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
	z-index: 200;
	pointer-events: none;
}
.scroll-progress span {
	display: block;
	height: 100%;
	transform-origin: 0 50%;
	transform: scaleX(0);
	background: linear-gradient(90deg, var(--orange-deep), var(--orange), var(--orange-bright));
	box-shadow: 0 0 12px var(--orange-glow);
}

.skip-link {
	position: fixed;
	top: -60px;
	left: 16px;
	z-index: 300;
	padding: 10px 16px;
	background: var(--orange);
	color: #160800;
	font-weight: 600;
	border-radius: 8px;
	transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 14px; }

/* ---------- Shared primitives ---------- */

.mono {
	font-family: var(--font-mono);
	font-weight: 500;
	letter-spacing: 0.04em;
}

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	margin: 0 0 22px;
	padding: 7px 14px;
	font-family: var(--font-mono);
	font-size: 11.5px;
	font-weight: 500;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--text-dim);
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: 100px;
}
.eyebrow::before {
	content: "";
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--orange);
	box-shadow: 0 0 10px var(--orange-glow);
	animation: blink 2.4s var(--ease) infinite;
}
.eyebrow--accent { color: var(--orange-bright); border-color: var(--orange-20); }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }

h1, h2, h3 {
	font-family: var(--font-display);
	font-weight: 700;
	letter-spacing: -0.025em;
	line-height: 1.04;
	margin: 0;
	color: #fff;
}

h2 {
	font-size: clamp(28px, 4.4vw, 50px);
	letter-spacing: -0.03em;
}
h3 { font-size: clamp(19px, 2vw, 23px); letter-spacing: -0.02em; }

p { margin: 0; }

/* Corner-tick "tech frame" decoration (Evervault-style markers) */
.tech { position: relative; }
.tech::before,
.tech::after {
	content: "";
	position: absolute;
	width: 11px;
	height: 11px;
	z-index: 3;
	pointer-events: none;
	background:
		linear-gradient(var(--orange), var(--orange)) center / 100% 1.5px no-repeat,
		linear-gradient(var(--orange), var(--orange)) center / 1.5px 100% no-repeat;
	opacity: 0;
	transition: opacity 0.35s var(--ease);
}
.tech::before { top: -6px; left: -6px; }
.tech::after { bottom: -6px; right: -6px; }
.tech:hover::before,
.tech:hover::after,
.tech.is-active::before,
.tech.is-active::after { opacity: 0.95; }

.tech--frame {
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--surface);
}

/* ---------- Buttons ---------- */

.button {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 14px 22px;
	font-family: var(--font-body);
	font-size: 15px;
	font-weight: 600;
	letter-spacing: -0.01em;
	border-radius: 100px;
	border: 1px solid transparent;
	cursor: pointer;
	white-space: nowrap;
	transition: transform 0.25s var(--ease), background 0.25s var(--ease),
		border-color 0.25s var(--ease), box-shadow 0.25s var(--ease), color 0.25s var(--ease);
	will-change: transform;
}
.button svg {
	width: 18px;
	height: 18px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
	transition: transform 0.3s var(--ease);
}
.button--sm { padding: 10px 18px; font-size: 14px; }

.button--primary {
	background: var(--orange);
	color: #160800;
	box-shadow: 0 8px 26px rgba(249, 115, 22, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}
.button--primary:hover {
	background: var(--orange-bright);
	transform: translateY(-2px);
	box-shadow: 0 14px 38px rgba(249, 115, 22, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}
.button--primary:hover svg { transform: translateX(4px); }

.button--ghost {
	background: var(--surface-2);
	color: var(--text);
	border-color: var(--line-strong);
	-webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
}
.button--ghost:hover {
	background: var(--surface-hover);
	border-color: var(--orange-20);
	transform: translateY(-2px);
	color: #fff;
}

.button:focus-visible {
	outline: 2px solid var(--orange-bright);
	outline-offset: 3px;
}

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

.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	height: var(--header-height);
	padding: 0 var(--section-x);
	background: rgba(8, 8, 11, 0.55);
	border-bottom: 1px solid transparent;
	-webkit-backdrop-filter: blur(14px) saturate(140%);
	backdrop-filter: blur(14px) saturate(140%);
	transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
}
.site-header.is-stuck {
	background: rgba(8, 8, 11, 0.82);
	border-bottom-color: var(--line);
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 16px;
	letter-spacing: -0.02em;
	color: #fff;
}
.brand__mark {
	display: grid;
	place-items: center;
	width: 38px;
	height: 38px;
	border-radius: 10px;
	overflow: hidden;
	border: 1px solid var(--line-strong);
	box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.06);
}
.brand__mark img { width: 100%; height: 100%; object-fit: cover; }

.main-nav {
	display: flex;
	gap: 4px;
	margin: 0 auto;
}
.main-nav a {
	position: relative;
	padding: 8px 14px;
	font-size: 14.5px;
	font-weight: 500;
	color: var(--text-dim);
	border-radius: 8px;
	transition: color 0.2s var(--ease), background 0.2s var(--ease);
}
.main-nav a::after {
	content: "";
	position: absolute;
	left: 14px;
	right: 14px;
	bottom: 4px;
	height: 1.5px;
	background: var(--orange);
	transform: scaleX(0);
	transform-origin: 0 50%;
	transition: transform 0.3s var(--ease);
}
.main-nav a:hover { color: #fff; }
.main-nav a:hover::after { transform: scaleX(1); }

/* ---------- Hero ---------- */

.hero {
	position: relative;
	padding: clamp(56px, 9vw, 110px) var(--section-x) clamp(48px, 6vw, 76px);
	max-width: calc(var(--container) + 120px);
	margin: 0 auto;
}
.hero__grid {
	display: grid;
	grid-template-columns: 1.15fr 0.85fr;
	gap: clamp(32px, 5vw, 72px);
	align-items: center;
}
.hero__content { max-width: 640px; }

.hero__title {
	font-size: clamp(46px, 8.5vw, 104px);
	font-weight: 800;
	line-height: 0.92;
	letter-spacing: -0.045em;
	margin: 0 0 22px;
}
.hero__title-line { display: block; }
.hero__title-line--accent {
	background: linear-gradient(100deg, var(--orange-bright) 10%, var(--orange) 55%, var(--orange-deep) 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	position: relative;
	width: max-content;
	max-width: 100%;
}
.hero__cursor {
	display: inline-block;
	width: 0.5ch;
	height: 0.9em;
	margin-left: 0.12em;
	vertical-align: text-bottom;
	background: var(--orange);
	box-shadow: 0 0 14px var(--orange-glow);
	-webkit-text-fill-color: var(--orange);
	animation: caret 1.05s steps(1) infinite;
}
@keyframes caret { 0%, 50% { opacity: 1; } 51%, 100% { opacity: 0; } }

.hero__slogan {
	font-family: var(--font-display);
	font-size: clamp(18px, 2.3vw, 24px);
	font-weight: 600;
	letter-spacing: -0.02em;
	color: var(--orange-bright);
	margin: 0 0 16px;
}
.hero__copy {
	font-size: clamp(15.5px, 1.4vw, 17.5px);
	color: var(--text-dim);
	max-width: 52ch;
	margin: 0 0 30px;
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 44px;
}

.hero__proof {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 14px;
	margin: 0;
}
.hero__proof div {
	padding: 16px;
	border: 1px solid var(--line);
	border-radius: 12px;
	background: var(--surface);
	transition: border-color 0.3s var(--ease), background 0.3s var(--ease), transform 0.3s var(--ease);
}
.hero__proof div:hover {
	border-color: var(--orange-20);
	background: var(--surface-2);
	transform: translateY(-3px);
}
.hero__proof dt {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 15px;
	color: #fff;
	margin-bottom: 5px;
}
.hero__proof dd {
	margin: 0;
	font-size: 12.5px;
	line-height: 1.45;
	color: var(--text-mute);
}

.hero__visual {
	position: relative;
	overflow: hidden;
	aspect-ratio: 5 / 6;
	box-shadow: 0 40px 90px rgba(0, 0, 0, 0.6);
	transform-style: preserve-3d;
	will-change: transform;
}
.hero__visual img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: saturate(1.05) contrast(1.02);
}
.hero__visual--logo {
	background:
		radial-gradient(120% 90% at 50% 0%, rgba(249, 115, 22, 0.14), transparent 62%),
		#0a0a0d;
}
.hero__visual--logo img {
	object-fit: contain;
	padding: clamp(10px, 2vw, 22px);
	filter: none;
}
.hero__visual--logo::after { display: none; }
.hero__visual::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 40%, rgba(8, 8, 11, 0.55) 100%);
	pointer-events: none;
}
.hero__scan {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	height: 24%;
	z-index: 2;
	pointer-events: none;
	background: linear-gradient(180deg, transparent, rgba(249, 115, 22, 0.28), transparent);
	mix-blend-mode: screen;
	animation: scan 4.5s var(--ease) infinite;
}
@keyframes scan {
	0% { transform: translateY(-30%); opacity: 0; }
	18% { opacity: 1; }
	82% { opacity: 1; }
	100% { transform: translateY(430%); opacity: 0; }
}
.hero__visual figcaption {
	position: absolute;
	left: 14px;
	bottom: 14px;
	z-index: 3;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 13px;
	font-family: var(--font-mono);
	font-size: 11px;
	letter-spacing: 0.04em;
	color: var(--text);
	background: rgba(8, 8, 11, 0.7);
	border: 1px solid var(--line);
	border-radius: 100px;
	-webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
}
.dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #4ade80;
	box-shadow: 0 0 9px rgba(74, 222, 128, 0.8);
	animation: blink 2s var(--ease) infinite;
}

/* ---------- Marquee ---------- */

.marquee {
	overflow: hidden;
	border-block: 1px solid var(--line);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.015), transparent);
	padding: 16px 0;
	-webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
	mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee__track {
	display: flex;
	align-items: center;
	gap: 32px;
	width: max-content;
	animation: marquee 26s linear infinite;
}
.marquee__track span {
	font-family: var(--font-display);
	font-size: clamp(18px, 2.4vw, 28px);
	font-weight: 600;
	letter-spacing: -0.02em;
	color: var(--text-mute);
	white-space: nowrap;
}
.marquee__track .marquee__dot { color: var(--orange); }
@keyframes marquee {
	to { transform: translateX(-50%); }
}

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

.section {
	max-width: var(--container);
	margin: 0 auto;
	padding: var(--section-y) var(--section-x);
}

.section__heading {
	max-width: 720px;
	margin-bottom: clamp(36px, 4vw, 56px);
}
.section__heading p:not(.eyebrow) {
	margin-top: 18px;
	font-size: clamp(15.5px, 1.4vw, 17px);
	color: var(--text-dim);
}

.section__copy h2 { margin-bottom: 18px; }
.section__copy > p {
	font-size: clamp(15.5px, 1.4vw, 17px);
	color: var(--text-dim);
	max-width: 54ch;
}

.section--split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(36px, 5vw, 80px);
	align-items: center;
}

.check-list {
	list-style: none;
	margin: 26px 0 0;
	padding: 0;
	display: grid;
	gap: 14px;
}
.check-list li {
	position: relative;
	padding-left: 34px;
	font-size: 15px;
	color: var(--text-dim);
}
.check-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 1px;
	width: 22px;
	height: 22px;
	border-radius: 7px;
	background: var(--orange-12);
	border: 1px solid var(--orange-20);
}
.check-list li::after {
	content: "";
	position: absolute;
	left: 7px;
	top: 7px;
	width: 8px;
	height: 5px;
	border-left: 1.8px solid var(--orange-bright);
	border-bottom: 1.8px solid var(--orange-bright);
	transform: rotate(-45deg);
}

/* image stack */
.image-stack { display: grid; gap: 18px; }
.image-stack__main { overflow: hidden; }
.image-stack__main img {
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
}
.image-stack__main figcaption {
	padding: 18px 20px;
	border-top: 1px solid var(--line);
}
.image-stack__main figcaption span {
	display: block;
	font-family: var(--font-mono);
	font-size: 11px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--orange-bright);
	margin-bottom: 6px;
}
.image-stack__main figcaption strong {
	font-family: var(--font-display);
	font-weight: 600;
	font-size: 16px;
	color: #fff;
}
.image-stack__panel {
	display: grid;
	grid-template-columns: 120px 1fr;
	gap: 18px;
	align-items: center;
	padding: 18px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--surface);
}
.image-stack__machine {
	margin: 0;
	border-radius: 12px;
	overflow: hidden;
	background: #111;
}
.image-stack__machine img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; }
.image-stack__note span {
	font-family: var(--font-mono);
	font-size: 11px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--orange-bright);
}
.image-stack__note h3 { margin: 8px 0; font-size: 18px; }
.image-stack__note p { font-size: 13.5px; color: var(--text-mute); }

/* ---------- Trust strip ---------- */

.trust-strip {
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 var(--section-x);
}
.trust-strip__inner {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	overflow: hidden;
	background: var(--surface);
}
.trust-strip__inner > div {
	padding: 28px 24px;
	border-right: 1px solid var(--line);
	transition: background 0.3s var(--ease);
}
.trust-strip__inner > div:last-child { border-right: none; }
.trust-strip__inner > div:hover { background: var(--surface-2); }
.trust-strip__inner span {
	font-family: var(--font-mono);
	font-size: 12px;
	color: var(--orange);
	letter-spacing: 0.1em;
}
.trust-strip__inner strong {
	display: block;
	margin-top: 12px;
	font-family: var(--font-display);
	font-weight: 600;
	font-size: 17px;
	letter-spacing: -0.02em;
	color: #fff;
}

/* ---------- Machines ---------- */

.machine-tabs {
	border: 1px solid var(--line);
	border-radius: clamp(18px, 2vw, 26px);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent);
	overflow: hidden;
}
.machine-tabs__toolbar {
	display: flex;
	align-items: center;
	gap: 18px;
	padding: 18px clamp(18px, 3vw, 28px);
	border-bottom: 1px solid var(--line);
}
.machine-tabs__toolbar p { color: var(--text-dim); font-size: 13px; }
.machine-tabs__progress {
	flex: 1;
	height: 3px;
	border-radius: 3px;
	background: var(--line);
	overflow: hidden;
}
.machine-tabs__progress span {
	display: block;
	height: 100%;
	width: 100%;
	transform-origin: 0 50%;
	transform: scaleX(0.33);
	background: linear-gradient(90deg, var(--orange-deep), var(--orange-bright));
	transition: transform 0.5s var(--ease);
}
.machine-tabs__controls { display: flex; gap: 8px; }
.machine-tabs__controls button {
	display: grid;
	place-items: center;
	width: 40px;
	height: 40px;
	border-radius: 10px;
	border: 1px solid var(--line-strong);
	background: var(--surface-2);
	color: var(--text);
	cursor: pointer;
	transition: background 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.machine-tabs__controls button svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.machine-tabs__controls button:hover { background: var(--orange); color: #160800; border-color: var(--orange); transform: translateY(-2px); }

.machine-tabs__selector {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 12px;
	padding: clamp(18px, 3vw, 28px);
	border-bottom: 1px solid var(--line);
}
.machine-tabs__selector button {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 4px;
	padding: 14px;
	text-align: left;
	border: 1px solid var(--line);
	border-radius: 14px;
	background: var(--surface);
	color: var(--text-dim);
	cursor: pointer;
	overflow: hidden;
	transition: border-color 0.3s var(--ease), background 0.3s var(--ease), transform 0.3s var(--ease);
}
.machine-tabs__selector button img {
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	border-radius: 9px;
	margin-bottom: 10px;
	filter: grayscale(0.12) brightness(0.94);
	transition: filter 0.4s var(--ease), transform 0.5s var(--ease);
}
.machine-tabs__selector button span { font-family: var(--font-mono); font-size: 11px; color: var(--orange); }
.machine-tabs__selector button strong { font-family: var(--font-display); font-weight: 600; font-size: 15px; color: var(--text); letter-spacing: -0.02em; }
.machine-tabs__selector button:hover { transform: translateY(-3px); border-color: var(--line-strong); }
.machine-tabs__selector button:hover img { filter: grayscale(0) brightness(1); transform: scale(1.04); }
.machine-tabs__selector button.is-active {
	border-color: var(--orange-20);
	background: var(--orange-12);
}
.machine-tabs__selector button.is-active img { filter: grayscale(0) brightness(1); }
.machine-tabs__selector button.is-active strong { color: #fff; }
.machine-tabs__selector button:focus-visible { outline: 2px solid var(--orange-bright); outline-offset: 2px; }

.machine-tabs__panels { padding: clamp(20px, 3.4vw, 36px); }
.machine-panel {
	display: grid;
	grid-template-columns: 0.82fr 1.18fr;
	gap: clamp(24px, 4vw, 52px);
	align-items: center;
	animation: panelIn 0.5s var(--ease);
}
.machine-panel[hidden] { display: none; }
@keyframes panelIn {
	from { opacity: 0; transform: translateY(14px); }
	to { opacity: 1; transform: none; }
}
.card-kicker { color: var(--orange-bright); font-size: 12px; margin-bottom: 14px; letter-spacing: 0.04em; }
.machine-panel__copy h3 { font-size: clamp(24px, 3vw, 34px); margin-bottom: 14px; }
.machine-panel__copy > p { color: var(--text-dim); font-size: 15.5px; margin-bottom: 20px; }
.machine-panel__copy ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.machine-panel__copy li {
	position: relative;
	padding-left: 22px;
	font-size: 14.5px;
	color: var(--text-dim);
}
.machine-panel__copy li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 9px;
	width: 7px;
	height: 7px;
	border-radius: 2px;
	background: var(--orange);
	box-shadow: 0 0 8px var(--orange-glow);
}

.machine-panel__doc { margin-top: 22px; }

.machine-panel__media { overflow: hidden; padding: 16px; }
.machine-panel__stage {
	position: relative;
	width: 100%;
	max-width: 100%;
	aspect-ratio: 4 / 3;
	min-height: clamp(300px, 38vw, 460px);
	border-radius: 12px;
	overflow: hidden;
	background:
		radial-gradient(120% 100% at 50% 0%, rgba(249, 115, 22, 0.08), transparent 60%),
		#0a0a0d;
}
.machine-panel__image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: contain;
	padding: 6px;
	opacity: 0;
	transform: scale(1.03);
	transition: opacity 0.6s var(--ease), transform 0.7s var(--ease);
}
.machine-panel__image.is-active { opacity: 1; transform: scale(1); }
.machine-panel__zoom {
	position: absolute;
	top: 12px;
	right: 12px;
	z-index: 4;
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	border: 1px solid var(--line-strong);
	background: rgba(8, 8, 11, 0.6);
	color: #fff;
	cursor: zoom-in;
	-webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
	transition: background 0.25s var(--ease), transform 0.25s var(--ease), border-color 0.25s var(--ease);
}
.machine-panel__zoom svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.machine-panel__zoom:hover { background: var(--orange); color: #160800; border-color: var(--orange); transform: scale(1.06); }
.machine-panel__zoom:focus-visible { outline: 2px solid var(--orange-bright); outline-offset: 2px; }
.machine-panel__image-nav { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.machine-panel__image-nav button {
	width: 60px;
	height: 44px;
	padding: 0;
	border-radius: 8px;
	overflow: hidden;
	border: 1px solid var(--line);
	background: none;
	cursor: pointer;
	opacity: 0.55;
	transition: opacity 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.machine-panel__image-nav button img { width: 100%; height: 100%; object-fit: cover; }
.machine-panel__image-nav button:hover { opacity: 0.85; transform: translateY(-2px); }
.machine-panel__image-nav button.is-active { opacity: 1; border-color: var(--orange); }

/* ---------- AI section ---------- */

.section--ai { position: relative; }
.ai-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
}
.ai-card {
	position: relative;
	padding: 30px 26px 34px;
	overflow: hidden;
	transition: border-color 0.4s var(--ease), background 0.4s var(--ease), transform 0.4s var(--ease);
}
.ai-card:hover {
	border-color: var(--orange-20);
	background: var(--surface-2);
	transform: translateY(-5px);
}
.ai-card__index { display: block; font-size: 12px; color: var(--orange); margin-bottom: 60px; }
.ai-card h3 { margin-bottom: 12px; }
.ai-card p { font-size: 14.5px; color: var(--text-dim); }
.ai-card__pulse {
	position: absolute;
	top: -50px;
	right: -50px;
	width: 160px;
	height: 160px;
	border-radius: 50%;
	background: radial-gradient(circle, var(--orange-glow), transparent 65%);
	opacity: 0;
	transition: opacity 0.5s var(--ease);
	pointer-events: none;
}
.ai-card:hover .ai-card__pulse { opacity: 0.55; }

/* ---------- Service band ---------- */

.service-band {
	position: relative;
	margin: 0 auto;
	max-width: var(--container);
	padding: var(--section-y) var(--section-x);
}
.service-band__inner {
	display: grid;
	grid-template-columns: 0.95fr 1.05fr;
	gap: clamp(36px, 5vw, 72px);
	align-items: start;
}
.service-band .button { margin-top: 28px; }
.service-steps {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
}
.service-steps article {
	padding: 24px 22px;
	border: 1px solid var(--line);
	border-radius: 14px;
	background: var(--surface);
	transition: border-color 0.3s var(--ease), background 0.3s var(--ease), transform 0.3s var(--ease);
}
.service-steps article:hover {
	border-color: var(--orange-20);
	background: var(--surface-2);
	transform: translateY(-4px);
}
.service-steps span { font-size: 12px; color: var(--orange); }
.service-steps h3 { margin: 12px 0 8px; font-size: 17px; }
.service-steps p { font-size: 13.5px; color: var(--text-mute); }

/* ---------- Locations ---------- */

.location-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}
.location-grid article {
	padding: 26px 24px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--surface);
	transition: border-color 0.3s var(--ease), background 0.3s var(--ease), transform 0.3s var(--ease);
}
.location-grid article:hover {
	border-color: var(--orange-20);
	background: var(--surface-2);
	transform: translateY(-4px);
}
.location-grid h3 { font-size: 18px; margin-bottom: 10px; }
.location-grid h3::before {
	content: "→ ";
	color: var(--orange);
	font-family: var(--font-mono);
}
.location-grid p { font-size: 14px; color: var(--text-dim); }

/* ---------- Visual section ---------- */

.visual-section {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: clamp(32px, 5vw, 72px);
	align-items: center;
	max-width: var(--container);
	margin: 0 auto;
	padding: var(--section-y) var(--section-x);
}
.visual-section__image { margin: 0; overflow: hidden; }
.visual-section__image img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	transition: transform 0.8s var(--ease);
}
.visual-section__image:hover img { transform: scale(1.04); }
.visual-section__copy h2 { margin-bottom: 16px; }
.visual-section__copy p { color: var(--text-dim); font-size: clamp(15px, 1.4vw, 17px); }

/* ---------- Gallery ---------- */

.gallery-slider { display: grid; gap: 18px; }
.gallery-slider__viewport {
	position: relative;
	display: flex;
	align-items: center;
	overflow: hidden;
	padding: 12px;
}
.gallery-slider__track {
	display: flex;
	width: 100%;
	transition: transform 0.6s var(--ease);
}
.gallery-slide {
	flex: 0 0 100%;
	margin: 0;
	opacity: 0.4;
	transform: scale(0.97);
	transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.gallery-slide.is-active { opacity: 1; transform: scale(1); }
.gallery-slide__button {
	position: relative;
	display: block;
	width: 100%;
	padding: 0;
	border: none;
	border-radius: 12px;
	overflow: hidden;
	cursor: zoom-in;
	background: #0c0c10;
}
.gallery-slide__button img {
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
}
.gallery-slide__button span {
	position: absolute;
	right: 14px;
	bottom: 14px;
	padding: 7px 13px;
	font-family: var(--font-mono);
	font-size: 11px;
	letter-spacing: 0.05em;
	color: #160800;
	background: var(--orange);
	border-radius: 100px;
	opacity: 0;
	transform: translateY(8px);
	transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}
.gallery-slide.is-active .gallery-slide__button:hover span { opacity: 1; transform: none; }
.gallery-slide__button:focus-visible { outline: 2px solid var(--orange-bright); outline-offset: 3px; }

.gallery-slider__nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 4;
	display: grid;
	place-items: center;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	border: 1px solid var(--line-strong);
	background: rgba(8, 8, 11, 0.7);
	color: #fff;
	cursor: pointer;
	-webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
	transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}
.gallery-slider__nav svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.gallery-slider__nav:hover { background: var(--orange); color: #160800; }
.gallery-slider__nav--prev { left: 22px; }
.gallery-slider__nav--next { right: 22px; }
.gallery-slider__nav--prev:hover { transform: translateY(-50%) translateX(-3px); }
.gallery-slider__nav--next:hover { transform: translateY(-50%) translateX(3px); }

.gallery-slider__meta {
	display: flex;
	align-items: center;
	gap: 18px;
	flex-wrap: wrap;
}
.gallery-slider__meta p { color: var(--text-dim); font-size: 13px; }
.gallery-slider__thumbs { display: flex; gap: 8px; flex-wrap: wrap; }
.gallery-slider__thumbs button {
	width: 64px;
	height: 44px;
	padding: 0;
	border-radius: 8px;
	overflow: hidden;
	border: 1px solid var(--line);
	background: none;
	cursor: pointer;
	opacity: 0.5;
	transition: opacity 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.gallery-slider__thumbs button img { width: 100%; height: 100%; object-fit: cover; }
.gallery-slider__thumbs button:hover { opacity: 0.85; transform: translateY(-2px); }
.gallery-slider__thumbs button.is-active { opacity: 1; border-color: var(--orange); }

/* lightbox */
.lightbox {
	width: min(92vw, 1040px);
	max-width: 92vw;
	padding: 0;
	border: 1px solid var(--line-strong);
	border-radius: var(--radius);
	background: #0c0c10;
	color: var(--text);
	overflow: hidden;
}
.lightbox::backdrop { background: rgba(4, 4, 6, 0.82); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); }
.lightbox figure { margin: 0; }
.lightbox img { width: 100%; max-height: 78vh; object-fit: contain; background: #08080b; }
.lightbox figcaption {
	padding: 16px 20px;
	font-family: var(--font-mono);
	font-size: 12px;
	letter-spacing: 0.04em;
	color: var(--text-dim);
	border-top: 1px solid var(--line);
}
.lightbox__close {
	position: absolute;
	top: 14px;
	right: 14px;
	display: grid;
	place-items: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 1px solid var(--line-strong);
	background: rgba(8, 8, 11, 0.7);
	color: #fff;
	cursor: pointer;
	transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}
.lightbox__close svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.lightbox__close:hover { background: var(--orange); color: #160800; transform: rotate(90deg); }

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

.contact-section {
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 var(--section-x) var(--section-y);
}
.contact-section__inner {
	position: relative;
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	gap: clamp(28px, 4vw, 56px);
	align-items: center;
	padding: clamp(36px, 5vw, 64px);
	overflow: hidden;
	background:
		radial-gradient(700px 400px at 100% 0%, rgba(249, 115, 22, 0.14), transparent 65%),
		var(--surface);
}
.contact-section__scan {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background-image:
		linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
		linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
	background-size: 40px 40px;
	-webkit-mask-image: radial-gradient(circle at 100% 0%, #000, transparent 60%);
	mask-image: radial-gradient(circle at 100% 0%, #000, transparent 60%);
}
.contact-section__copy { position: relative; z-index: 1; }
.contact-section__copy h2 { margin-bottom: 14px; }
.contact-section__copy p { color: var(--text-dim); font-size: 16px; max-width: 46ch; }
.contact-actions {
	position: relative;
	z-index: 1;
	display: grid;
	gap: 12px;
}
.contact-actions .button { width: 100%; justify-content: center; }

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

.site-footer {
	border-top: 1px solid var(--line);
	padding: clamp(40px, 5vw, 60px) var(--section-x);
	max-width: var(--container);
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 14px;
	text-align: center;
}
.footer-brand {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 17px;
	color: #fff;
}
.footer-slogan { color: var(--text-dim); font-size: 15px; }
.footer-owner { color: var(--text-mute); font-size: 13.5px; max-width: 46ch; }
.footer-address { font-style: normal; }
.footer-address a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--text-dim);
	font-size: 13.5px;
	transition: color 0.2s var(--ease);
}
.footer-address a:hover { color: #fff; }
.footer-address svg {
	width: 16px;
	height: 16px;
	fill: none;
	stroke: var(--orange);
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
	flex-shrink: 0;
}
.footer-meta { color: var(--text-mute); font-size: 12px; }

/* ---------- Reveal animations ---------- */

.reveal-target {
	opacity: 0;
	transform: translateY(26px);
	transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal-target.is-visible { opacity: 1; transform: none; }

.is-enhanced .hero__content > * { opacity: 0; animation: heroIn 0.8s var(--ease) forwards; }
.is-enhanced .hero__content > *:nth-child(1) { animation-delay: 0.05s; }
.is-enhanced .hero__content > *:nth-child(2) { animation-delay: 0.13s; }
.is-enhanced .hero__content > *:nth-child(3) { animation-delay: 0.21s; }
.is-enhanced .hero__content > *:nth-child(4) { animation-delay: 0.29s; }
.is-enhanced .hero__content > *:nth-child(5) { animation-delay: 0.37s; }
.is-enhanced .hero__content > *:nth-child(6) { animation-delay: 0.45s; }
.is-enhanced .hero__visual { opacity: 0; animation: heroVisualIn 1s var(--ease) 0.3s forwards; }
@keyframes heroIn { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
@keyframes heroVisualIn { from { opacity: 0; transform: translateY(30px) scale(0.97); } to { opacity: 1; transform: none; } }

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

@media (max-width: 960px) {
	.hero__grid { grid-template-columns: 1fr; }
	.hero__visual { max-width: 460px; }
	.section--split,
	.service-band__inner,
	.visual-section,
	.contact-section__inner { grid-template-columns: 1fr; }
	.machine-panel { grid-template-columns: 1fr; }
	.machine-tabs__selector { grid-template-columns: 1fr 1fr; }
	.ai-grid { grid-template-columns: 1fr; }
	.location-grid { grid-template-columns: 1fr 1fr; }
	.main-nav { display: none; }
}

@media (max-width: 600px) {
	:root { --header-height: 62px; }
	.hero__proof { grid-template-columns: 1fr; }
	.trust-strip__inner { grid-template-columns: 1fr 1fr; }
	.trust-strip__inner > div:nth-child(2n) { border-right: none; }
	.trust-strip__inner > div:nth-child(1),
	.trust-strip__inner > div:nth-child(2) { border-bottom: 1px solid var(--line); }
	.machine-tabs__selector { grid-template-columns: 1fr; }
	.machine-panel__media { padding: 12px; }
	.machine-panel__stage { min-height: clamp(240px, 72vw, 360px); }
	.machine-panel__image-nav { justify-content: center; }
	.service-steps,
	.location-grid { grid-template-columns: 1fr; }
	.site-header .button--sm { display: none; }
	.image-stack__panel { grid-template-columns: 1fr; }
	.gallery-slider__nav { width: 40px; height: 40px; }
	.gallery-slider__nav--prev { left: 12px; }
	.gallery-slider__nav--next { right: 12px; }
}

/* ---------- Reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after {
		animation-duration: 0.001ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.001ms !important;
		scroll-behavior: auto !important;
	}
	.reveal-target { opacity: 1; transform: none; }
	.hero__scan, .marquee__track, .eyebrow::before, .dot, .hero__cursor { animation: none; }
	.cursor-spot { display: none; }
	.is-enhanced .hero__content > *, .is-enhanced .hero__visual { opacity: 1; animation: none; }
}
