/* ============================================================
   R3 Data Lab — styles
   Palette: bg #080d20 · accent #0E8C9E · text #e9edf8
   Fonts: Space Grotesk (display) · Manrope (body) · JetBrains Mono (labels)
   ============================================================ */

:root {
	--accent: #0e8c9e;
	--accent-2: #3fd8cf;
	--bg: #080d20;
	--text: #e9edf8;
	--muted: #a6afca;
	--muted-2: #9aa3bd;
	--line: rgba(255, 255, 255, 0.08);
	--card: linear-gradient(160deg, #0e1533, #0b1027);
	--panel: linear-gradient(155deg, #0e1740, #0a1028);
	--band: linear-gradient(135deg, #0f1a3f, #0a1128);
	--disp: "Space Grotesk", system-ui, sans-serif;
	--body: "Manrope", system-ui, sans-serif;
	--mono: "JetBrains Mono", ui-monospace, monospace;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

[hidden] {
	display: none !important;
}
html {
	scroll-behavior: smooth;
}
html,
body {
	overflow-x: clip;
}
body {
	background: var(--bg);
	color: var(--text);
	font-family: var(--body);
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	line-height: 1.5;
}
::selection {
	background: rgba(14, 140, 158, 0.32);
}
button {
	font-family: inherit;
}
input,
textarea,
select {
	font-family: inherit;
}
img {
	max-width: 100%;
}
a {
	color: var(--accent);
}

/* ---------- keyframes ---------- */
@keyframes r3pulse {
	0%,
	100% {
		opacity: 0.45;
		transform: scale(1);
	}
	50% {
		opacity: 1;
		transform: scale(1.3);
	}
}
@keyframes r3float {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-9px);
	}
}
@keyframes r3sweep {
	0% {
		top: -22%;
	}
	100% {
		top: 106%;
	}
}
@keyframes r3glow {
	0%,
	100% {
		border-color: rgba(14, 140, 158, 0.4);
		box-shadow: 0 0 0 0 rgba(14, 140, 158, 0);
	}
	50% {
		border-color: var(--accent);
		box-shadow: 0 0 22px 0 rgba(14, 140, 158, 0.5);
	}
}
@keyframes r3fill {
	0% {
		width: 3%;
	}
	45% {
		width: 100%;
	}
	82% {
		width: 100%;
	}
	100% {
		width: 3%;
	}
}
@keyframes r3blink {
	0%,
	100% {
		opacity: 0.35;
	}
	50% {
		opacity: 1;
	}
}
@keyframes r3pop {
	0%,
	6% {
		opacity: 0;
		transform: translateY(7px) scale(0.97);
	}
	16% {
		opacity: 1;
		transform: none;
	}
	90% {
		opacity: 1;
		transform: none;
	}
	100% {
		opacity: 0;
	}
}
@keyframes r3flow {
	0% {
		background-position: 0 0;
	}
	100% {
		background-position: 200% 0;
	}
}
@keyframes r3wave {
	0%,
	100% {
		transform: scaleY(0.32);
	}
	50% {
		transform: scaleY(1);
	}
}
@keyframes auroraDrift {
	0% {
		transform: translate(0, 0) scale(1);
	}
	33% {
		transform: translate(6%, -4%) scale(1.08);
	}
	66% {
		transform: translate(-5%, 5%) scale(0.96);
	}
	100% {
		transform: translate(0, 0) scale(1);
	}
}
@keyframes spin {
	to {
		transform: rotate(360deg);
	}
}
@keyframes fillW {
	from {
		width: 0;
	}
	to {
		width: var(--w);
	}
}
@keyframes shimmer {
	0% {
		background-position: -200% 0;
	}
	100% {
		background-position: 200% 0;
	}
}

/* ---------- animated backdrop ---------- */
.bg-fx {
	position: fixed;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	overflow: hidden;
}
.aurora {
	position: absolute;
	border-radius: 50%;
	filter: blur(90px);
	opacity: 0.5;
	animation: auroraDrift 26s ease-in-out infinite;
}
.aurora-1 {
	top: -12%;
	left: 8%;
	width: 46vw;
	height: 46vw;
	background: radial-gradient(
		circle,
		rgba(14, 140, 158, 0.3),
		transparent 68%
	);
}
.aurora-2 {
	top: 34%;
	right: -8%;
	width: 40vw;
	height: 40vw;
	background: radial-gradient(
		circle,
		rgba(47, 107, 255, 0.2),
		transparent 68%
	);
	animation-delay: -9s;
}
.aurora-3 {
	bottom: -14%;
	left: 30%;
	width: 42vw;
	height: 42vw;
	background: radial-gradient(
		circle,
		rgba(124, 92, 255, 0.16),
		transparent 68%
	);
	animation-delay: -17s;
}
#particles {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	opacity: 0.6;
}

.root {
	position: relative;
	z-index: 1;
}

/* ---------- scroll progress ---------- */
.scroll-progress {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	z-index: 60;
	background: transparent;
}
.scroll-progress span {
	display: block;
	height: 100%;
	width: 0;
	background: linear-gradient(90deg, var(--accent), var(--accent-2));
	box-shadow: 0 0 10px rgba(14, 140, 158, 0.6);
	transition: width 0.1s linear;
}

/* ---------- custom cursor ---------- */
body.cursor-custom,
body.cursor-custom * {
	cursor: none;
}

.cursor-glow {
	position: fixed;
	top: 0;
	left: 0;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	border: 1.5px solid rgba(14, 140, 158, 0.6);
	background: transparent;
	transform: translate(-50%, -50%);
	pointer-events: none;
	z-index: 100000; /* above the modal overlay (z-index 90) so it stays visible on the dialog */
	transition:
		width 0.22s cubic-bezier(0.2, 0.7, 0.2, 1),
		height 0.22s cubic-bezier(0.2, 0.7, 0.2, 1),
		background 0.22s,
		border-color 0.22s,
		opacity 0.3s;
	mix-blend-mode: screen;
}
/* precise center dot */
.cursor-glow::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: var(--accent);
	transform: translate(-50%, -50%);
	transition:
		width 0.22s,
		height 0.22s,
		opacity 0.22s;
}
/* hover state: ring expands, fills, and pulses; center dot fades so the ring
   frames the target — a clear, unmistakable "this is interactive" cue */
.cursor-glow.hover {
	width: 56px;
	height: 56px;
	background: rgba(14, 140, 158, 0.14);
	border-color: var(--accent);
	animation: cursorPulse 1.15s ease-in-out infinite;
}
.cursor-glow.hover::after {
	width: 0;
	height: 0;
	opacity: 0;
}
.cursor-glow.hidden {
	opacity: 0;
}
@keyframes cursorPulse {
	0%,
	100% {
		box-shadow: 0 0 0 0 rgba(14, 140, 158, 0.35);
	}
	50% {
		box-shadow: 0 0 0 7px rgba(14, 140, 158, 0);
	}
}
@media (hover: none) {
	.cursor-glow {
		display: none;
	}
}

/* ---------- nav ---------- */
.nav {
	position: sticky;
	top: 0;
	z-index: 40;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	flex-wrap: wrap;
	padding: 15px clamp(20px, 5vw, 44px);
	background: rgba(8, 13, 32, 0.72);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.07);
	transition:
		background 0.3s,
		box-shadow 0.3s,
		padding 0.3s;
}
.nav.scrolled {
	background: rgba(8, 13, 32, 0.92);
	box-shadow: 0 8px 30px -18px rgba(0, 0, 0, 0.8);
}
.brand {
	display: flex;
	align-items: center;
	gap: 8px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0;
}
.brand-logo {
	height: 80px;
	width: auto;
	display: block;
	transition: transform 0.3s;
}
.brand:hover .brand-logo {
	transform: rotate(-4deg) scale(1.06);
}
.brand-name {
	font-family: var(--disp);
	font-weight: 700;
	font-size: 32px;
	letter-spacing: 0.01em;
	color: #fff;
}
.brand-name.sm {
	font-size: 17px;
}

.nav-links {
	display: flex;
	align-items: center;
	gap: clamp(14px, 2.6vw, 32px);
	flex-wrap: wrap;
}
.nav-link {
	position: relative;
	padding: 6px 2px;
	background: none;
	border: none;
	cursor: pointer;
	font-family: var(--body);
	font-size: 14.5px;
	font-weight: 600;
	color: rgba(233, 237, 248, 0.6);
	transition: color 0.2s;
}
.nav-link:hover {
	color: #fff;
}
.nav-link.is-active {
	color: #fff;
}
.nav-link .dot {
	position: absolute;
	left: 50%;
	bottom: -9px;
	transform: translateX(-50%);
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: var(--accent);
	opacity: 0;
	transition:
		opacity 0.2s,
		width 0.2s;
}
.nav-link.is-active .dot {
	opacity: 1;
}
.nav-link:hover .dot {
	opacity: 0.5;
}

.nav-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	width: 40px;
	height: 40px;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid var(--line);
	border-radius: 9px;
	cursor: pointer;
}
.nav-toggle span {
	display: block;
	width: 18px;
	height: 2px;
	background: #cdd5ea;
	border-radius: 2px;
	transition:
		transform 0.3s,
		opacity 0.3s;
}
.nav-toggle.open span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
	opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 760px) {
	.nav-toggle {
		display: flex;
	}
	.nav-links {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		flex-direction: column;
		align-items: stretch;
		gap: 4px;
		padding: 14px clamp(20px, 5vw, 44px) 22px;
		background: rgba(8, 13, 32, 0.98);
		border-bottom: 1px solid var(--line);
		max-height: 0;
		overflow: hidden;
		opacity: 0;
		transition:
			max-height 0.35s,
			opacity 0.25s,
			padding 0.35s;
		padding-top: 0;
		padding-bottom: 0;
	}
	.nav-links.open {
		max-height: 420px;
		opacity: 1;
		padding-top: 14px;
		padding-bottom: 22px;
	}
	.nav-link {
		padding: 12px 4px;
		font-size: 16px;
	}
	.nav-link .dot {
		display: none;
	}
	.nav-links .btn {
		margin-top: 8px;
		justify-content: center;
	}
}

/* ---------- buttons ---------- */
.btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	border-radius: 11px;
	font-family: var(--disp);
	font-weight: 600;
	cursor: pointer;
	border: 1px solid transparent;
	text-decoration: none;
	overflow: hidden;
	transition:
		transform 0.2s cubic-bezier(0.2, 0.7, 0.2, 1),
		box-shadow 0.2s,
		background 0.2s,
		border-color 0.2s;
	will-change: transform;
}
.btn-sm {
	padding: 10px 18px;
	font-size: 14px;
	border-radius: 9px;
}
.btn-lg {
	padding: 15px 28px;
	font-size: 16px;
}
.btn-block {
	width: 100%;
	padding: 14px;
	font-size: 15.5px;
	margin-top: 4px;
}
.btn-accent {
	background: var(--accent);
	color: #fff;
	box-shadow: 0 12px 32px -12px rgba(14, 140, 158, 0.6);
}
.btn-accent:hover {
	transform: translateY(-2px);
	box-shadow: 0 18px 42px -14px rgba(14, 140, 158, 0.85);
}
.btn-accent::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(
		120deg,
		transparent 30%,
		rgba(255, 255, 255, 0.28),
		transparent 70%
	);
	background-size: 220% 100%;
	background-position: -120% 0;
	transition: background-position 0.6s;
}
.btn-accent:hover::after {
	background-position: 120% 0;
}
.btn-ghost {
	background: rgba(255, 255, 255, 0.03);
	color: var(--text);
	border-color: rgba(255, 255, 255, 0.16);
}
.btn-ghost:hover {
	transform: translateY(-2px);
	border-color: var(--accent);
	background: rgba(14, 140, 158, 0.06);
}
.btn .arrow {
	transition: transform 0.25s;
}
.btn:hover .arrow {
	transform: translateX(4px);
}
.btn:active {
	transform: translateY(0) scale(0.98);
}
.btn[disabled] {
	opacity: 0.6;
	cursor: not-allowed;
	transform: none;
}

.spinner {
	width: 16px;
	height: 16px;
	border-radius: 50%;
	border: 2px solid rgba(255, 255, 255, 0.35);
	border-top-color: #fff;
	animation: spin 0.7s linear infinite;
}

/* ---------- layout helpers ---------- */
.screen {
	display: none;
}
.screen.is-active {
	display: block;
	animation: fadeUp 0.5s cubic-bezier(0.2, 0.7, 0.2, 1);
}
@keyframes fadeUp {
	from {
		opacity: 0;
		transform: translateY(12px);
	}
	to {
		opacity: 1;
		transform: none;
	}
}

.wrap {
	max-width: 1160px;
	margin: 0 auto;
}
.wrap-narrow {
	max-width: 1160px;
	margin: 0 auto;
}
.measure-mid {
	max-width: 820px;
	margin: 0 auto;
}
.mx-auto {
	margin-left: auto;
	margin-right: auto;
}
.pad-x {
	padding-left: clamp(20px, 5vw, 44px);
	padding-right: clamp(20px, 5vw, 44px);
}
.pad-y {
	padding-top: clamp(64px, 8vw, 110px);
	padding-bottom: clamp(64px, 8vw, 110px);
}
.pad-b {
	padding-bottom: clamp(64px, 8vw, 110px);
}
.pad-b-lg {
	padding-bottom: clamp(72px, 9vw, 120px);
}
.pad-top {
	padding-top: clamp(56px, 7vw, 96px);
	padding-bottom: clamp(30px, 4vw, 52px);
}
.center {
	text-align: center;
}
.center-p {
	margin-left: auto;
	margin-right: auto;
}
.center-row {
	justify-content: center;
}

.kicker {
	font-family: var(--mono);
	font-size: 12.5px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--accent);
	margin-bottom: 18px;
}
.accent {
	color: var(--accent);
}

/* ---------- typography ---------- */
.h1 {
	font-family: var(--disp);
	font-weight: 700;
	font-size: clamp(34px, 5.2vw, 58px);
	line-height: 1.05;
	letter-spacing: -0.025em;
	color: #fff;
	margin: 0 0 22px;
	max-width: 15ch;
}
.h1-sm {
	font-size: clamp(32px, 4.6vw, 52px);
	max-width: none;
	margin-bottom: 18px;
}
.h1-about {
	font-size: clamp(32px, 4.6vw, 52px);
	line-height: 1.08;
	margin: 0 0 36px;
	max-width: none;
}
.h2 {
	font-family: var(--disp);
	font-size: clamp(28px, 3.6vw, 40px);
	font-weight: 700;
	letter-spacing: -0.02em;
	color: #fff;
	margin: 0;
}
.h2-xl {
	font-size: clamp(30px, 4.4vw, 52px);
	letter-spacing: -0.025em;
	margin-bottom: 16px;
}
.h2-sm {
	font-size: clamp(22px, 2.8vw, 30px);
	margin-bottom: 10px;
}
.h3 {
	font-family: var(--disp);
	font-size: clamp(22px, 2.6vw, 30px);
	font-weight: 600;
	color: #fff;
	margin: 0 0 12px;
	letter-spacing: -0.01em;
}
.lead {
	font-size: clamp(16px, 1.7vw, 18.5px);
	line-height: 1.62;
	color: var(--muted);
	margin: 0 0 34px;
	max-width: 52ch;
}
.center .lead,
.lead.center-p {
	max-width: 50ch;
	/* .lead sets margin:0 0 34px (later, equal specificity), which pins the
	   narrowed box to the left. Restore auto side-margins so it centres. */
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}
.statement {
	font-family: var(--disp);
	font-size: clamp(22px, 3vw, 32px);
	line-height: 1.4;
	letter-spacing: -0.01em;
	color: #eef1fa;
	margin: 0;
	font-weight: 500;
}
.statement.sm {
	font-size: clamp(19px, 2.4vw, 26px);
	margin-bottom: 26px;
}
.section-head {
	margin-bottom: 44px;
}

/* ---------- hero ---------- */
.hero {
	position: relative;
	overflow: hidden;
	padding: clamp(52px, 7vw, 96px) clamp(20px, 5vw, 44px)
		clamp(40px, 5vw, 72px);
}
.grid-texture {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
	background-size: 46px 46px;
	-webkit-mask-image: radial-gradient(
		ellipse 80% 70% at 50% 0%,
		#000,
		transparent 75%
	);
	mask-image: radial-gradient(
		ellipse 80% 70% at 50% 0%,
		#000,
		transparent 75%
	);
}
.hero-glow {
	position: absolute;
	top: -120px;
	left: 50%;
	transform: translateX(-50%);
	width: 760px;
	height: 420px;
	background: radial-gradient(
		ellipse at center,
		rgba(14, 140, 158, 0.14),
		transparent 70%
	);
	pointer-events: none;
}
.hero-inner {
	position: relative;
	max-width: 1160px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
	gap: clamp(36px, 5vw, 64px);
	align-items: center;
}

.pill {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	padding: 6px 13px;
	border: 1px solid rgba(14, 140, 158, 0.28);
	border-radius: 100px;
	font-family: var(--mono);
	font-size: 12px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--accent);
	margin-bottom: 26px;
}
.pill-dot {
	width: 6px;
	height: 6px;
	background: var(--accent);
	border-radius: 50%;
	animation: r3pulse 2.4s ease-in-out infinite;
}
.btn-row {
	display: flex;
	gap: 13px;
	flex-wrap: wrap;
}

/* ---------- preview card ---------- */
.preview {
	position: relative;
	aspect-ratio: 4/3;
	border-radius: 20px;
	overflow: hidden;
	background: linear-gradient(155deg, #111a3d, #0a0f28 62%);
	border: 1px solid rgba(255, 255, 255, 0.1);
	box-shadow: 0 44px 90px -34px rgba(0, 0, 0, 0.75);
	transition:
		transform 0.3s cubic-bezier(0.2, 0.7, 0.2, 1),
		box-shadow 0.3s;
	transform-style: preserve-3d;
}
.preview:hover {
	box-shadow:
		0 54px 110px -34px rgba(0, 0, 0, 0.85),
		0 0 40px -10px rgba(14, 140, 158, 0.4);
}
.preview-grid {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
	background-size: 32px 32px;
}
.preview-blob {
	position: absolute;
	top: 18%;
	left: 13%;
	width: 52%;
	height: 58%;
	border-radius: 44% 56% 52% 48%;
	background: radial-gradient(
		circle at 34% 30%,
		rgba(14, 140, 158, 0.42),
		rgba(47, 107, 255, 0.18) 58%,
		transparent 76%
	);
	filter: blur(7px);
	animation: r3float 7s ease-in-out infinite;
}
.preview-blob.small {
	top: 20%;
	left: 16%;
	width: 44%;
	height: 52%;
}
.scan-sweep {
	position: absolute;
	left: 0;
	right: 0;
	top: -22%;
	height: 22%;
	background: linear-gradient(
		180deg,
		rgba(14, 140, 158, 0),
		rgba(14, 140, 158, 0.13) 65%,
		rgba(14, 140, 158, 0.3)
	);
	border-bottom: 1.5px solid var(--accent);
	box-shadow: 0 6px 26px rgba(14, 140, 158, 0.55);
	animation: r3sweep 4.6s cubic-bezier(0.4, 0, 0.6, 1) infinite;
	pointer-events: none;
}
.bbox {
	position: absolute;
}
.bbox-glow {
	top: 15%;
	left: 11%;
	width: 46%;
	height: 56%;
	border: 1.6px solid rgba(14, 140, 158, 0.45);
	border-radius: 4px;
	animation: r3glow 4.6s ease-in-out -0.7s infinite;
}
.bbox-glow.sm {
	top: 16%;
	left: 13%;
}
.bbox-dashed {
	top: 56%;
	right: 12%;
	width: 27%;
	height: 25%;
	border: 1.5px dashed rgba(150, 172, 255, 0.6);
	border-radius: 4px;
}
.bbox-tag {
	position: absolute;
	top: -12px;
	left: 8px;
	display: inline-flex;
	align-items: center;
	gap: 5px;
	padding: 3px 8px;
	background: var(--accent);
	color: #fff;
	font-family: var(--mono);
	font-size: 10px;
	font-weight: 500;
	border-radius: 4px;
	white-space: nowrap;
}
.bbox-tag.ghost {
	top: -11px;
	left: 6px;
	padding: 2px 7px;
	background: rgba(14, 20, 48, 0.92);
	border: 1px solid rgba(150, 172, 255, 0.45);
	color: #c5d1ff;
	font-size: 9.5px;
}
.corner {
	position: absolute;
	width: 7px;
	height: 7px;
	background: var(--accent);
	border-radius: 1px;
}
.corner.tl {
	top: -3px;
	left: -3px;
}
.corner.tr {
	top: -3px;
	right: -3px;
}
.corner.bl {
	bottom: -3px;
	left: -3px;
}
.corner.br {
	bottom: -3px;
	right: -3px;
}
.keypoints {
	position: absolute;
	top: 19%;
	left: 19%;
	width: 24%;
	height: 38%;
	overflow: visible;
}
.keypoints.sm {
	top: 22%;
	left: 20%;
	width: 22%;
	height: 40%;
}
.keypoints line {
	stroke: rgba(14, 140, 158, 0.6);
	stroke-width: 2.5;
}
.keypoints circle {
	fill: #2fd0c9;
	animation: r3blink 2.2s ease-in-out infinite;
	animation-delay: var(--d);
}
.verify-progress {
	position: absolute;
	bottom: 14px;
	left: 14px;
	width: 40%;
	max-width: 150px;
}
.vp-label {
	display: flex;
	justify-content: space-between;
	font-family: var(--mono);
	font-size: 9px;
	letter-spacing: 0.08em;
	color: #8fb9c2;
	margin-bottom: 5px;
}
.vp-track {
	height: 4px;
	border-radius: 3px;
	background: rgba(255, 255, 255, 0.1);
	overflow: hidden;
}
.vp-fill {
	height: 100%;
	border-radius: 3px;
	background: linear-gradient(90deg, var(--accent), var(--accent-2));
	animation: r3fill 4.6s ease-out infinite;
}
.verify-chip {
	position: absolute;
	bottom: 14px;
	right: 14px;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 12px;
	background: rgba(8, 12, 30, 0.82);
	backdrop-filter: blur(8px);
	border: 1px solid rgba(14, 140, 158, 0.45);
	border-radius: 9px;
	font-size: 12.5px;
	font-weight: 600;
	color: var(--text);
}
.verify-chip .check {
	width: 17px;
	height: 17px;
	border-radius: 50%;
	background: var(--accent);
	color: #fff;
	display: grid;
	place-items: center;
	font-size: 10px;
	font-weight: 800;
}
.types-chip {
	position: absolute;
	top: 14px;
	left: 14px;
	padding: 3px 8px;
	background: rgba(8, 12, 30, 0.7);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 5px;
	font-family: var(--mono);
	font-size: 9.5px;
	color: #98a1bd;
}

/* ---------- trust strip ---------- */
.trust-strip {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
	gap: 1px;
	background: rgba(255, 255, 255, 0.07);
	border: 1px solid rgba(255, 255, 255, 0.07);
	border-radius: 16px;
	overflow: hidden;
}
.trust-cell {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 22px;
	background: #0a1026;
	transition: background 0.25s;
}
.trust-cell:hover {
	background: #0c1330;
}
.trust-mark {
	position: relative;
	width: 34px;
	height: 34px;
	flex: none;
	border: 1.5px solid rgba(14, 140, 158, 0.45);
	border-radius: 6px;
}
.trust-mark span.c {
	position: absolute;
	width: 5px;
	height: 5px;
	background: var(--accent);
	border-radius: 1px;
}
.trust-mark .tl {
	top: -2px;
	left: -2px;
}
.trust-mark .br {
	bottom: -2px;
	right: -2px;
}
.trust-mark .mid {
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 7px;
	height: 7px;
	border-radius: 50%;
}
.trust-cell span.label {
	font-size: 14px;
	font-weight: 600;
	line-height: 1.35;
	color: #d5dbee;
}

/* ---------- why cards ---------- */
.why-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(258px, 1fr));
	gap: 20px;
}
.why-card {
	position: relative;
	padding: 30px 28px;
	background: var(--card);
	border: 1px solid var(--line);
	border-radius: 16px;
	transition:
		transform 0.25s,
		border-color 0.25s,
		box-shadow 0.25s;
	overflow: hidden;
}
.why-card::before {
	content: "";
	position: absolute;
	inset: 0;
	opacity: 0;
	background: radial-gradient(
		400px circle at var(--mx, 50%) var(--my, 50%),
		rgba(14, 140, 158, 0.12),
		transparent 60%
	);
	transition: opacity 0.3s;
	pointer-events: none;
}
.why-card:hover {
	transform: translateY(-4px);
	border-color: rgba(14, 140, 158, 0.4);
	box-shadow: 0 24px 50px -30px rgba(0, 0, 0, 0.7);
}
.why-card:hover::before {
	opacity: 1;
}
.why-n {
	font-family: var(--mono);
	font-size: 13px;
	color: var(--accent);
	margin-bottom: 20px;
}
.why-card h3 {
	font-family: var(--disp);
	font-size: 19.5px;
	font-weight: 600;
	color: #fff;
	margin: 0 0 12px;
	letter-spacing: -0.01em;
}
.why-card p {
	font-size: 14.5px;
	line-height: 1.62;
	color: var(--muted-2);
	margin: 0;
}

/* ---------- band ---------- */
.band {
	position: relative;
	max-width: 1160px;
	margin: 0 auto;
	padding: clamp(40px, 6vw, 72px) clamp(28px, 5vw, 64px);
	border-radius: 22px;
	overflow: hidden;
	background: var(--band);
	border: 1px solid rgba(14, 140, 158, 0.22);
	text-align: center;
}
.band-grid {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(14, 140, 158, 0.05) 1px, transparent 1px),
		linear-gradient(90deg, rgba(14, 140, 158, 0.05) 1px, transparent 1px);
	background-size: 40px 40px;
	-webkit-mask-image: radial-gradient(
		ellipse 60% 100% at 50% 50%,
		#000,
		transparent
	);
	mask-image: radial-gradient(ellipse 60% 100% at 50% 50%, #000, transparent);
}
.band-inner {
	position: relative;
}
.band-inner .h2 {
	margin-bottom: 16px;
}
.band-p {
	font-size: clamp(15px, 1.7vw, 18px);
	line-height: 1.6;
	color: #aab3cd;
	margin: 0 auto 30px;
	max-width: 60ch;
}
.band-p.sm {
	margin: 0;
	max-width: 44ch;
}
.band-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	text-align: left;
	padding: clamp(34px, 5vw, 56px);
}
.band-copy {
	max-width: 44ch;
}

.quote {
	position: relative;
	font-family: var(--disp);
	font-size: clamp(22px, 3vw, 30px);
	font-weight: 600;
	letter-spacing: -0.01em;
	color: #fff;
	margin: 0;
	line-height: 1.35;
}
.about-copy {
	display: flex;
	flex-direction: column;
	gap: 22px;
}
.about-copy p {
	font-size: clamp(16px, 1.8vw, 18.5px);
	line-height: 1.72;
	color: #b3bcd5;
	margin: 0;
}

/* ---------- how it works ---------- */
.stepper-wrap {
	padding-top: clamp(8px, 2vw, 16px);
}
.stepper {
	max-width: 920px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 12px;
}
.step-chip {
	position: relative;
	padding: 15px 18px;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid var(--line);
	overflow: hidden;
	transition:
		border-color 0.25s,
		transform 0.25s;
}
.step-chip:hover {
	border-color: rgba(14, 140, 158, 0.4);
	transform: translateY(-2px);
}
.step-chip .sn {
	font-family: var(--mono);
	font-size: 11px;
	color: var(--accent);
	margin-bottom: 6px;
}
.step-chip .st {
	font-family: var(--disp);
	font-weight: 600;
	font-size: 15px;
	color: #fff;
}
.step-chip .underline {
	position: absolute;
	left: 0;
	bottom: 0;
	height: 2px;
	width: 100%;
	background: linear-gradient(
		90deg,
		var(--accent),
		var(--accent-2),
		transparent
	);
	background-size: 200% 100%;
	animation: r3flow 3s linear infinite;
}

.step {
	max-width: 1000px;
	margin: 0 auto;
}
.step-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: clamp(24px, 4vw, 52px);
	align-items: center;
}
.step-head {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 18px;
}
.step-num {
	width: 48px;
	height: 48px;
	flex: none;
	display: grid;
	place-items: center;
	border-radius: 13px;
	background: linear-gradient(160deg, #12204a, #0c1330);
	border: 1px solid rgba(14, 140, 158, 0.4);
	font-family: var(--disp);
	font-size: 18px;
	font-weight: 700;
	color: var(--accent);
}
.step-label {
	font-family: var(--mono);
	font-size: 11.5px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: #7f8aa8;
}
.step-body {
	font-size: 15.5px;
	line-height: 1.65;
	color: var(--muted-2);
	margin: 0;
	max-width: 52ch;
}
.tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 20px;
}
.tag {
	padding: 6px 12px;
	background: rgba(14, 140, 158, 0.09);
	border: 1px solid rgba(14, 140, 158, 0.25);
	border-radius: 100px;
	font-size: 12px;
	color: #bfe3e7;
	transition:
		background 0.2s,
		transform 0.2s;
}
.tag:hover {
	background: rgba(14, 140, 158, 0.2);
	transform: translateY(-1px);
}
.step-connector {
	width: 2px;
	height: 44px;
	margin: clamp(22px, 3vw, 34px) auto;
	background: linear-gradient(
		180deg,
		rgba(14, 140, 158, 0.55),
		rgba(14, 140, 158, 0.04)
	);
}

.mock {
	position: relative;
	border-radius: 16px;
	overflow: hidden;
	background: var(--panel);
	border: 1px solid rgba(255, 255, 255, 0.09);
	box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.6);
}
.mock-grid {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
	background-size: 28px 28px;
}
.mock-inner {
	position: relative;
	padding: 18px;
}
.mock-bar {
	display: flex;
	align-items: center;
	gap: 6px;
	margin-bottom: 16px;
}
.mock-bar .d {
	width: 9px;
	height: 9px;
	border-radius: 50%;
}
.d.red {
	background: #ff5f57;
}
.d.yellow {
	background: #febc2e;
}
.d.green {
	background: #28c840;
}
.mock-file {
	margin-left: 8px;
	font-family: var(--mono);
	font-size: 10.5px;
	color: #7a86a6;
}
.mock-rows {
	display: flex;
	flex-direction: column;
	gap: 9px;
}
.mock-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 12px;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.07);
	border-radius: 8px;
}
.mock-row.check {
	justify-content: flex-start;
	gap: 10px;
	padding: 9px 12px;
}
.mock-row .k {
	font-size: 12px;
	color: #8a93af;
}
.mock-row.check .k {
	width: 64px;
}
.mock-row .v {
	font-family: var(--mono);
	font-size: 11.5px;
	color: #cdd5ea;
}
.tick {
	width: 18px;
	height: 18px;
	flex: none;
	border-radius: 50%;
	background: var(--accent);
	color: #fff;
	display: grid;
	place-items: center;
	font-size: 10px;
	font-weight: 800;
}
.tick.sm {
	width: 16px;
	height: 16px;
	font-size: 9px;
}
.mock-drop {
	margin-top: 14px;
	border: 1.5px dashed rgba(14, 140, 158, 0.5);
	border-radius: 10px;
	padding: 14px;
	display: flex;
	align-items: center;
	gap: 12px;
}
.mock-drop.zip {
	border-style: solid;
	border-color: rgba(255, 255, 255, 0.08);
	background: rgba(255, 255, 255, 0.03);
}
.mock-thumb {
	width: 46px;
	height: 46px;
	flex: none;
	border-radius: 7px;
	background: repeating-linear-gradient(
		45deg,
		#16234a,
		#16234a 5px,
		#0e1730 5px,
		#0e1730 10px
	);
	border: 1px solid rgba(14, 140, 158, 0.45);
	animation: r3pop 4.5s ease-in-out infinite;
}
.zip-icon {
	width: 34px;
	height: 34px;
	flex: none;
	border-radius: 8px;
	background: rgba(14, 140, 158, 0.14);
	border: 1px solid rgba(14, 140, 158, 0.4);
	display: grid;
	place-items: center;
	font-family: var(--mono);
	font-size: 9px;
	color: var(--accent);
}
.mock-upload {
	flex: 1;
	min-width: 0;
}
.mock-upload-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	margin-bottom: 8px;
}
.mock-upload-top .v {
	font-family: var(--mono);
	font-size: 11px;
	color: #cdd5ea;
}
.attached {
	font-family: var(--mono);
	font-size: 10px;
	color: var(--accent);
}
.size {
	font-family: var(--mono);
	font-size: 10px;
	color: #7a86a6;
}
.mock-legend {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 16px;
	font-family: var(--mono);
	font-size: 10.5px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--accent);
}
.mock-legend .rule {
	flex: 1;
	height: 1px;
	background: rgba(255, 255, 255, 0.08);
}
.mock-timeline {
	margin-top: 14px;
}
.tl-title {
	font-family: var(--mono);
	font-size: 9.5px;
	letter-spacing: 0.1em;
	color: #7a86a6;
	margin-bottom: 8px;
}
.tl-row {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 6px;
}
.tl-k {
	font-family: var(--mono);
	font-size: 9.5px;
	color: #8a93af;
	width: 58px;
}
.tl-track {
	flex: 1;
	height: 7px;
	border-radius: 4px;
	background: rgba(255, 255, 255, 0.08);
	overflow: hidden;
}
.tl-fill {
	height: 100%;
	width: var(--w);
	border-radius: 4px;
	background: linear-gradient(90deg, var(--accent), var(--accent-2));
}
.mock-canvas {
	position: relative;
	aspect-ratio: 16/10;
	overflow: hidden;
}
.mock-verify {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding: 14px 16px;
	border-top: 1px solid var(--line);
}
.mv-row {
	display: flex;
	align-items: center;
	gap: 10px;
}
.mv-k {
	font-size: 12.5px;
	color: #cdd5ea;
	font-weight: 600;
}
.mv-pass {
	margin-left: auto;
	font-family: var(--mono);
	font-size: 10px;
	color: #7a86a6;
}
.fmt-row {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 14px;
}
.fmt {
	padding: 6px 12px;
	border: 1px solid rgba(14, 140, 158, 0.4);
	background: rgba(14, 140, 158, 0.08);
	border-radius: 7px;
	font-family: var(--mono);
	font-size: 11px;
	color: #bfe3e7;
	transition:
		transform 0.2s,
		background 0.2s;
}
.fmt:hover {
	transform: translateY(-2px);
	background: rgba(14, 140, 158, 0.18);
}
.ready-line {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-top: 12px;
	font-family: var(--mono);
	font-size: 11px;
	color: var(--accent);
}

/* ---------- services ---------- */
.services-grid {
	max-width: 1080px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
	gap: 22px;
}
.service {
	background: var(--card);
	border: 1px solid var(--line);
	border-radius: 18px;
	overflow: hidden;
	transition:
		transform 0.25s,
		border-color 0.25s,
		box-shadow 0.25s;
}
.service:hover {
	transform: translateY(-4px);
	border-color: rgba(14, 140, 158, 0.4);
	box-shadow: 0 30px 60px -34px rgba(0, 0, 0, 0.7);
}
.service-canvas {
	position: relative;
	aspect-ratio: 16/9;
	overflow: hidden;
	background: linear-gradient(155deg, #0d1740, #0a1026);
	border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.service-canvas .mock-grid {
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
	background-size: 26px 26px;
}
.service-body {
	padding: 24px 26px 28px;
}
.service-tag {
	display: inline-block;
	padding: 3px 9px;
	border: 1px solid rgba(14, 140, 158, 0.4);
	background: rgba(14, 140, 158, 0.1);
	border-radius: 6px;
	font-family: var(--mono);
	font-size: 10.5px;
	color: var(--accent);
	margin-bottom: 14px;
}
.service h3 {
	font-family: var(--disp);
	font-size: 21px;
	font-weight: 600;
	color: #fff;
	margin: 0 0 10px;
	letter-spacing: -0.01em;
}
.service p {
	font-size: 14.5px;
	line-height: 1.6;
	color: var(--muted-2);
	margin: 0 0 18px;
}
.service ul {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}
.service li {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 12px;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid var(--line);
	border-radius: 100px;
	font-size: 12.5px;
	color: #cdd5ea;
	transition:
		border-color 0.2s,
		background 0.2s;
}
.service li:hover {
	border-color: rgba(14, 140, 158, 0.4);
	background: rgba(14, 140, 158, 0.08);
}
.service li::before {
	content: "";
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: var(--accent);
}
/* audio waveform */
.wave {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 3px;
}
.wave span {
	width: 3px;
	border-radius: 2px;
	background: linear-gradient(180deg, var(--accent-2), var(--accent));
	transform-origin: bottom;
	animation: r3wave 1.5s ease-in-out infinite;
}
/* text tokens */
.tokens {
	position: absolute;
	inset: 0;
	display: flex;
	flex-wrap: wrap;
	align-content: center;
	justify-content: center;
	gap: 6px;
	padding: 12% 16%;
}
.token {
	padding: 4px 9px;
	border-radius: 5px;
	font-family: var(--mono);
	font-size: 10px;
	border: 1px solid rgba(14, 140, 158, 0.35);
	color: #bfe3e7;
	background: rgba(14, 140, 158, 0.07);
}
.token.ent {
	background: rgba(14, 140, 158, 0.22);
	border-color: var(--accent);
	color: #eafcff;
}
/* video frames */
.frames {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}
.frame {
	width: 22%;
	aspect-ratio: 3/4;
	border-radius: 6px;
	border: 1.4px solid rgba(14, 140, 158, 0.4);
	background: linear-gradient(160deg, #12204a, #0b1128);
	position: relative;
}
.frame::after {
	content: "";
	position: absolute;
	inset: 24% 22% 40%;
	border: 1.4px solid rgba(14, 140, 158, 0.7);
	border-radius: 3px;
}
.frame .fnum {
	position: absolute;
	top: 5px;
	left: 6px;
	font-family: var(--mono);
	font-size: 8px;
	color: #8fb9c2;
}

/* ---------- footer ---------- */
.footer {
	position: relative;
	z-index: 1;
	border-top: 1px solid var(--line);
	padding: clamp(44px, 6vw, 64px) clamp(20px, 5vw, 44px)
		clamp(30px, 4vw, 40px);
	background: #060a1a;
}
.footer-grid {
	max-width: 1160px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 36px;
	align-items: start;
}
.footer-brand {
	display: flex;
	align-items: center;
	gap: 5px;
	margin-bottom: 10px;
}
.footer-logo {
	height: 44px;
	width: auto;
	display: block;
}
.footer-p {
	font-size: 14px;
	color: #8a93af;
	margin: 0 0 18px;
	max-width: 34ch;
	line-height: 1.5;
}
.footer-mail {
	font-family: var(--mono);
	font-size: 13px;
	color: var(--accent);
	text-decoration: none;
	border-bottom: 1px solid transparent;
	transition: border-color 0.2s;
}
.footer-mail:hover {
	border-color: var(--accent);
}
.footer-col {
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.footer-head {
	font-family: var(--mono);
	font-size: 11px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #5f6a89;
	margin-bottom: 2px;
}
.footer-link {
	background: none;
	border: none;
	padding: 0;
	text-align: left;
	cursor: pointer;
	font-family: var(--body);
	font-size: 14.5px;
	color: var(--muted);
	transition:
		color 0.2s,
		transform 0.2s;
	width: fit-content;
}
.footer-link:hover {
	color: #fff;
	transform: translateX(3px);
}
.footer-base {
	max-width: 1160px;
	margin: 38px auto 0;
	padding-top: 22px;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
	font-size: 13px;
	color: #5f6a89;
}

/* ---------- modal ---------- */
.modal-overlay {
	position: fixed;
	inset: 0;
	z-index: 90;
	background: rgba(4, 7, 18, 0.74);
	backdrop-filter: blur(7px);
	-webkit-backdrop-filter: blur(7px);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	opacity: 0;
	transition: opacity 0.28s;
}
.modal-overlay.open {
	opacity: 1;
}
.modal {
	width: 100%;
	max-width: 480px;
	max-height: 90vh;
	overflow: auto;
	background: #0e1430;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 18px;
	padding: clamp(26px, 4vw, 38px);
	box-shadow: 0 50px 100px -30px rgba(0, 0, 0, 0.85);
	position: relative;
	transform: translateY(18px) scale(0.97);
	opacity: 0;
	transition:
		transform 0.32s cubic-bezier(0.2, 0.7, 0.2, 1),
		opacity 0.32s;
}
.modal-overlay.open .modal {
	transform: none;
	opacity: 1;
}
.modal-close {
	position: absolute;
	top: 16px;
	right: 16px;
	width: 32px;
	height: 32px;
	display: grid;
	place-items: center;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 8px;
	color: var(--muted-2);
	font-size: 18px;
	cursor: pointer;
	line-height: 1;
	transition:
		color 0.2s,
		border-color 0.2s,
		transform 0.2s;
}
.modal-close:hover {
	color: #fff;
	border-color: rgba(255, 255, 255, 0.3);
	transform: rotate(90deg);
}
.modal-title {
	font-family: var(--disp);
	font-size: 24px;
	font-weight: 700;
	color: #fff;
	margin: 0 0 10px;
	letter-spacing: -0.01em;
}
.modal-sub {
	font-size: 14.5px;
	line-height: 1.55;
	color: var(--muted-2);
	margin: 0 0 24px;
}
.modal .kicker {
	margin-bottom: 12px;
}
#contactForm {
	display: flex;
	flex-direction: column;
	gap: 13px;
}
.field {
	position: relative;
}
.hp {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	opacity: 0;
}
#contactForm input:not(.hp),
#contactForm textarea,
#contactForm select {
	width: 100%;
	padding: 12px 14px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 10px;
	color: var(--text);
	font-size: 14.5px;
	outline: none;
	transition:
		border-color 0.2s,
		box-shadow 0.2s;
}
#contactForm textarea {
	resize: vertical;
}
#contactForm select {
	color: #c2cae0;
}
#contactForm select option {
	background: #0e1430;
}
#contactForm input:focus,
#contactForm textarea:focus,
#contactForm select:focus {
	border-color: var(--accent);
	box-shadow: 0 0 0 3px rgba(14, 140, 158, 0.15);
}
#contactForm input.invalid,
#contactForm textarea.invalid {
	border-color: #ff6b6b;
}

/* dropzone */
.dropzone {
	display: block;
	position: relative;
	border: 1.5px dashed rgba(14, 140, 158, 0.45);
	border-radius: 12px;
	padding: 20px 16px;
	cursor: pointer;
	transition:
		border-color 0.2s,
		background 0.2s;
	text-align: center;
}
.dropzone:hover {
	border-color: var(--accent);
	background: rgba(14, 140, 158, 0.05);
}
.dropzone.dragover {
	border-color: var(--accent);
	background: rgba(14, 140, 158, 0.1);
}
.file-input {
	position: absolute;
	inset: 0;
	opacity: 0;
	cursor: pointer;
}
.dz-inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	pointer-events: none;
}
.dz-icon {
	color: var(--accent);
}
.dz-text {
	font-size: 14px;
	color: #cdd5ea;
}
.dz-text strong {
	color: #fff;
	font-weight: 600;
}
.dz-hint {
	font-family: var(--mono);
	font-size: 10.5px;
	color: #7a86a6;
}
.dz-file {
	display: flex;
	align-items: center;
	gap: 12px;
	text-align: left;
}
.dz-file-icon {
	width: 40px;
	height: 40px;
	flex: none;
	border-radius: 8px;
	background: rgba(14, 140, 158, 0.14);
	border: 1px solid rgba(14, 140, 158, 0.4);
	display: grid;
	place-items: center;
	font-family: var(--mono);
	font-size: 9px;
	color: var(--accent);
}
.dz-file-meta {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 2px;
}
.dz-file-name {
	font-size: 13.5px;
	color: #fff;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.dz-file-size {
	font-family: var(--mono);
	font-size: 10.5px;
	color: #7a86a6;
}
.dz-remove {
	width: 28px;
	height: 28px;
	flex: none;
	border-radius: 7px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.12);
	color: var(--muted-2);
	font-size: 16px;
	cursor: pointer;
	line-height: 1;
	transition:
		color 0.2s,
		border-color 0.2s;
}
.dz-remove:hover {
	color: #fff;
	border-color: #ff6b6b;
}

.turnstile-field {
	display: flex;
	justify-content: center;
	min-height: 65px;
}
.form-error {
	font-size: 13px;
	color: #ff8a80;
	background: rgba(255, 80, 80, 0.08);
	border: 1px solid rgba(255, 80, 80, 0.25);
	border-radius: 9px;
	padding: 10px 12px;
}

.modal-success {
	text-align: center;
}
@keyframes r3checkPop {
	0% {
		opacity: 0;
		transform: scale(0.4);
	}
	60% {
		opacity: 1;
		transform: scale(1.15);
	}
	100% {
		opacity: 1;
		transform: scale(1);
	}
}
.success-check {
	width: 58px;
	height: 58px;
	margin: 0 auto 20px;
	border-radius: 50%;
	background: rgba(14, 140, 158, 0.14);
	border: 1px solid rgba(14, 140, 158, 0.4);
	display: grid;
	place-items: center;
	color: var(--accent);
	font-size: 26px;
	/* play once on appearance (both = keep final state) */
	animation: r3checkPop 0.55s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}
.modal-success .modal-sub {
	margin-bottom: 26px;
}
/* larger, roomier close button on the success screen */
#successClose {
	padding: 15px 40px;
	font-size: 16px;
}

/* ---------- reveal ---------- */
.reveal {
	opacity: 0;
	transform: translateY(20px);
	transition:
		opacity 0.7s cubic-bezier(0.2, 0.7, 0.2, 1),
		transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.reveal.in {
	opacity: 1;
	transform: none;
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.001ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
	.reveal {
		opacity: 1;
		transform: none;
	}
	html {
		scroll-behavior: auto;
	}
	.cursor-glow,
	#particles {
		display: none;
	}
}
