/* ===== RESET & VARIABLES ===== */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
:root {
	--yellow: #d4fe07;
	--deep-blue: #191d32;
	--mid-blue: #323a69;
	--light-blue: #4a59ac;
	--white: #ffffff;
	--black: #000000;
	--grad: linear-gradient(135deg, #4a59ac, #323a69, #1e2340);
}
html {
	scroll-behavior: smooth;
}
body {
	background: var(--deep-blue);
	color: var(--white);
	font-family: 'Roboto', sans-serif;
	overflow-x: hidden;
	cursor: none;
}

/* ===== CUSTOM CURSOR ===== */
#cursor {
	position: fixed;
	width: 12px;
	height: 12px;
	background: var(--yellow);
	border-radius: 50%;
	pointer-events: none;
	z-index: 9999;
	transform: translate(-50%, -50%);
	transition:
		transform 0.1s,
		width 0.2s,
		height 0.2s,
		opacity 0.2s;
	mix-blend-mode: difference;
}
#cursor-ring {
	position: fixed;
	width: 40px;
	height: 40px;
	border: 1px solid rgba(212, 254, 7, 0.4);
	border-radius: 50%;
	pointer-events: none;
	z-index: 9998;
	transform: translate(-50%, -50%);
	transition:
		transform 0.15s ease-out,
		width 0.3s,
		height 0.3s;
}
body:hover #cursor {
	opacity: 1;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
	width: 2px;
}
::-webkit-scrollbar-track {
	background: var(--deep-blue);
}
::-webkit-scrollbar-thumb {
	background: var(--yellow);
}

/* ===== NAV ===== */
nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 24px 60px;
	background: transparent;
	transition:
		background 0.4s,
		backdrop-filter 0.4s;
}
nav.scrolled {
	background: rgba(25, 29, 50, 0.85);
	backdrop-filter: blur(18px);
	border-bottom: 1px solid rgba(212, 254, 7, 0.1);
}
.nav-logo {
	font-weight: 900;
	font-size: 22px;
	letter-spacing: 3px;
	color: var(--white);
	text-decoration: none;
}
.nav-logo span {
	color: var(--yellow);
}
.nav-links {
	display: flex;
	gap: 36px;
	list-style: none;
}
.nav-links a {
	color: rgba(255, 255, 255, 0.6);
	text-decoration: none;
	font-size: 12px;
	letter-spacing: 2px;
	text-transform: uppercase;
	font-weight: 400;
	transition: color 0.2s;
}
.nav-links a:hover {
	color: var(--yellow);
}
.nav-cta {
	background: var(--yellow);
	color: var(--black);
	padding: 10px 24px;
	font-size: 11px;
	letter-spacing: 2px;
	text-transform: uppercase;
	font-weight: 700;
	border: none;
	cursor: none;
	clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
	transition:
		background 0.2s,
		transform 0.2s;
	text-decoration: none;
}
.nav-cta:hover {
	background: #fff;
	transform: translateY(-1px);
}

/* ===== HERO ===== */
#hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	overflow: hidden;
	background: #0d1025;
}
#hud-canvas {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	opacity: 0.55;
}
.cockpit-frame {
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 2;
}
.cockpit-frame::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse 80% 60% at 50% 50%, transparent 55%, rgba(13, 16, 37, 0.95) 100%);
}
.cf-line {
	position: absolute;
	background: rgba(212, 254, 7, 0.12);
}
.cf-line.top-left {
	top: 80px;
	left: 0;
	width: 280px;
	height: 1px;
}
.cf-line.top-left-v {
	top: 0;
	left: 280px;
	width: 1px;
	height: 80px;
}
.cf-line.top-right {
	top: 80px;
	right: 0;
	width: 280px;
	height: 1px;
}
.cf-line.top-right-v {
	top: 0;
	right: 280px;
	width: 1px;
	height: 80px;
}
.cf-line.bot-left {
	bottom: 80px;
	left: 0;
	width: 280px;
	height: 1px;
}
.cf-line.bot-left-v {
	bottom: 0;
	left: 280px;
	width: 1px;
	height: 80px;
}
.cf-line.bot-right {
	bottom: 80px;
	right: 0;
	width: 280px;
	height: 1px;
}
.cf-line.bot-right-v {
	bottom: 0;
	right: 280px;
	width: 1px;
	height: 80px;
}
.hud-label {
	position: absolute;
	font-family: 'Share Tech Mono', monospace;
	font-size: 10px;
	color: rgba(212, 254, 7, 0.5);
	letter-spacing: 2px;
	z-index: 3;
	pointer-events: none;
}
.hud-tl {
	top: 28px;
	left: 64px;
}
.hud-tr {
	top: 28px;
	right: 64px;
	text-align: right;
}
.hud-bl {
	bottom: 28px;
	left: 64px;
}
.hud-br {
	bottom: 28px;
	right: 64px;
	text-align: right;
}

/* ===== HERO CONTENT ===== */
.hero-content {
	position: relative;
	z-index: 5;
	max-width: 900px;
	padding: 0 60px;
	margin-left: 8vw;
}
.hero-tag {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-family: 'Share Tech Mono', monospace;
	font-size: 11px;
	color: var(--yellow);
	letter-spacing: 3px;
	margin-bottom: 28px;
	opacity: 0;
	animation: fadeUp 0.8s 0.3s forwards;
}
.hero-tag::before {
	content: '';
	width: 40px;
	height: 1px;
	background: var(--yellow);
}
.hero-h1 {
	font-size: clamp(36px, 5.5vw, 78px);
	font-weight: 900;
	line-height: 1.05;
	letter-spacing: -1px;
	margin-bottom: 24px;
	opacity: 0;
	animation: fadeUp 0.9s 0.5s forwards;
}
.hero-h1 .accent {
	color: var(--yellow);
}
.hero-sub {
	font-size: 18px;
	font-weight: 300;
	color: rgba(255, 255, 255, 0.55);
	letter-spacing: 1px;
	margin-bottom: 44px;
	line-height: 1.6;
	opacity: 0;
	animation: fadeUp 0.9s 0.7s forwards;
}
.hero-buttons {
	display: flex;
	gap: 16px;
	align-items: center;
	opacity: 0;
	animation: fadeUp 0.9s 0.9s forwards;
}
.btn-primary {
	background: var(--yellow);
	color: var(--black);
	padding: 14px 36px;
	font-size: 12px;
	letter-spacing: 2.5px;
	text-transform: uppercase;
	font-weight: 700;
	border: none;
	cursor: none;
	clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
	transition:
		background 0.2s,
		transform 0.2s,
		box-shadow 0.2s;
	text-decoration: none;
	display: inline-block;
}
.btn-primary:hover {
	background: #fff;
	transform: translateY(-2px);
	box-shadow: 0 0 30px rgba(212, 254, 7, 0.4);
}
.btn-ghost {
	color: rgba(255, 255, 255, 0.6);
	font-size: 12px;
	letter-spacing: 2px;
	text-transform: uppercase;
	font-weight: 400;
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 8px;
	transition: color 0.2s;
}
.btn-ghost:hover {
	color: var(--yellow);
}
.btn-ghost::after {
	content: '\2192';
	transition: transform 0.2s;
}
.btn-ghost:hover::after {
	transform: translateX(4px);
}

/* ===== SCROLL INDICATOR ===== */
.scroll-hint {
	position: absolute;
	bottom: 40px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	z-index: 5;
	opacity: 0;
	animation: fadeIn 1s 1.5s forwards;
}
.scroll-hint span {
	font-family: 'Share Tech Mono', monospace;
	font-size: 10px;
	letter-spacing: 3px;
	color: rgba(255, 255, 255, 0.3);
}
.scroll-dot {
	width: 1px;
	height: 40px;
	background: linear-gradient(to bottom, rgba(212, 254, 7, 0.6), transparent);
	animation: scrollPulse 1.8s ease-in-out infinite;
}

/* ===== SECTION SHARED ===== */
section {
	position: relative;
	padding: 120px 60px;
}
.section-tag {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-family: 'Share Tech Mono', monospace;
	font-size: 10px;
	color: var(--yellow);
	letter-spacing: 3px;
	margin-bottom: 16px;
}
.section-tag::before {
	content: '';
	width: 30px;
	height: 1px;
	background: var(--yellow);
}
.section-h2 {
	font-size: clamp(28px, 4vw, 52px);
	font-weight: 900;
	letter-spacing: -0.5px;
	line-height: 1.1;
	margin-bottom: 16px;
}
.section-sub {
	font-size: 16px;
	font-weight: 300;
	color: rgba(255, 255, 255, 0.5);
	line-height: 1.7;
	max-width: 520px;
}

/* ===== CAPABILITIES ===== */
#capabilities {
	background: linear-gradient(180deg, #0d1025 0%, #191d32 100%);
}
.cap-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2px;
	margin-top: 64px;
}
.cap-card {
	position: relative;
	padding: 44px 32px;
	background: #13172b;
	border: 1px solid rgba(255, 255, 255, 0.04);
	overflow: hidden;
	transition: border-color 0.3s;
}
.cap-card::before {
	content: '';
	position: absolute;
	inset: 0;
	background: var(--grad);
	opacity: 0;
	transition: opacity 0.4s;
}
.cap-card:hover {
	border-color: rgba(212, 254, 7, 0.25);
}
.cap-card:hover::before {
	opacity: 0.15;
}
.cap-icon {
	width: 48px;
	height: 48px;
	margin-bottom: 28px;
	position: relative;
	z-index: 1;
}
.cap-icon svg {
	width: 100%;
	height: 100%;
}
.cap-num {
	position: absolute;
	top: 24px;
	right: 28px;
	font-family: 'Share Tech Mono', monospace;
	font-size: 11px;
	color: rgba(212, 254, 7, 0.25);
	letter-spacing: 2px;
}
.cap-h3 {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 12px;
	position: relative;
	z-index: 1;
}
.cap-p {
	font-size: 13px;
	font-weight: 300;
	color: rgba(255, 255, 255, 0.45);
	line-height: 1.7;
	position: relative;
	z-index: 1;
}
.cap-card:hover .cap-h3 {
	color: var(--yellow);
}
.cap-bar {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: var(--yellow);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.4s;
}
.cap-card:hover .cap-bar {
	transform: scaleX(1);
}

/* ===== HOW IT WORKS ===== */
#how {
	background: #191d32;
	overflow: hidden;
}
.how-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 100px;
	align-items: center;
	margin-top: 64px;
}
.how-steps {
	display: flex;
	flex-direction: column;
	gap: 0;
}
.how-step {
	display: flex;
	gap: 28px;
	padding: 32px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
	cursor: default;
	transition: padding-left 0.3s;
}
.how-step:hover {
	padding-left: 12px;
}
.step-num {
	font-family: 'Share Tech Mono', monospace;
	font-size: 11px;
	color: var(--yellow);
	letter-spacing: 2px;
	flex-shrink: 0;
	padding-top: 4px;
	min-width: 40px;
}
.step-body h3 {
	font-size: 17px;
	font-weight: 700;
	margin-bottom: 8px;
}
.step-body p {
	font-size: 13px;
	font-weight: 300;
	color: rgba(255, 255, 255, 0.45);
	line-height: 1.7;
}
.step-body h3 span {
	color: var(--yellow);
}
.how-visual {
	position: relative;
	height: 500px;
}
.how-vis-inner {
	position: relative;
	width: 100%;
	height: 100%;
	border: 1px solid rgba(212, 254, 7, 0.08);
	background: rgba(13, 16, 37, 0.6);
	backdrop-filter: blur(4px);
	overflow: hidden;
}
.how-vis-inner::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(74, 89, 172, 0.18) 0%, transparent 70%);
}
#flow-canvas {
	width: 100%;
	height: 100%;
}
.vis-label {
	position: absolute;
	font-family: 'Share Tech Mono', monospace;
	font-size: 9px;
	color: rgba(212, 254, 7, 0.5);
	letter-spacing: 2px;
}
.vis-label.tl {
	top: 16px;
	left: 16px;
}
.vis-label.br {
	bottom: 16px;
	right: 16px;
}

/* ===== INTEGRATION ===== */
#integration {
	background: linear-gradient(180deg, #191d32, #131628);
}
.int-layout {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: start;
	margin-top: 64px;
}
.int-claim {
	font-size: clamp(22px, 2.8vw, 36px);
	font-weight: 900;
	line-height: 1.2;
	letter-spacing: -0.5px;
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 32px;
}
.int-claim span {
	color: var(--yellow);
}
.int-list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin-bottom: 40px;
}
.int-list li {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 14px;
	font-weight: 300;
	color: rgba(255, 255, 255, 0.65);
}
.int-list li::before {
	content: '';
	width: 6px;
	height: 6px;
	background: var(--yellow);
	flex-shrink: 0;
	clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
}
.int-cards {
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.int-card {
	padding: 24px 28px;
	background: rgba(74, 89, 172, 0.08);
	border: 1px solid rgba(74, 89, 172, 0.2);
	border-left: 3px solid var(--yellow);
	transition:
		background 0.3s,
		border-left-color 0.3s;
}
.int-card:hover {
	background: rgba(74, 89, 172, 0.15);
}
.int-card h4 {
	font-size: 14px;
	font-weight: 700;
	margin-bottom: 6px;
}
.int-card p {
	font-size: 12px;
	font-weight: 300;
	color: rgba(255, 255, 255, 0.45);
}

/* ===== STATS STRIP ===== */
#stats {
	padding: 60px;
	background: #0d1025;
	border-top: 1px solid rgba(212, 254, 7, 0.08);
	border-bottom: 1px solid rgba(212, 254, 7, 0.08);
}
.stats-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
}
.stat-item {
	padding: 0 48px;
	border-left: 1px solid rgba(255, 255, 255, 0.06);
}
.stat-item:first-child {
	border-left: none;
}
.stat-val {
	font-size: clamp(32px, 4vw, 56px);
	font-weight: 900;
	color: var(--yellow);
	letter-spacing: -1px;
	line-height: 1;
	margin-bottom: 8px;
}
.stat-label {
	font-size: 12px;
	font-weight: 300;
	color: rgba(255, 255, 255, 0.45);
	letter-spacing: 1px;
	text-transform: uppercase;
}

/* ===== TECHNOLOGY ===== */
#technology {
	background: #191d32;
	overflow: hidden;
}
.tech-layout {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	gap: 80px;
	align-items: center;
	margin-top: 64px;
}
.dash-mock {
	position: relative;
	background: #0a0d1c;
	border: 1px solid rgba(212, 254, 7, 0.1);
	padding: 0;
	overflow: hidden;
	aspect-ratio: 16/10;
}
.dash-top-bar {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 16px;
	background: rgba(212, 254, 7, 0.05);
	border-bottom: 1px solid rgba(212, 254, 7, 0.08);
}
.dash-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
}
.dash-dot.y {
	background: var(--yellow);
}
.dash-dot.g {
	background: #33ff88;
}
.dash-dot.r {
	background: #ff4466;
}
.dash-title-bar {
	font-family: 'Share Tech Mono', monospace;
	font-size: 10px;
	color: rgba(212, 254, 7, 0.5);
	letter-spacing: 2px;
	margin-left: 8px;
}
.dash-body {
	display: grid;
	grid-template-columns: 1fr 2fr;
	height: calc(100% - 37px);
}
.dash-sidebar {
	padding: 16px;
	border-right: 1px solid rgba(212, 254, 7, 0.06);
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.dash-menu-item {
	font-family: 'Share Tech Mono', monospace;
	font-size: 9px;
	color: rgba(255, 255, 255, 0.25);
	padding: 6px 8px;
	letter-spacing: 1px;
	cursor: default;
	transition:
		color 0.2s,
		background 0.2s;
}
.dash-menu-item.active {
	color: var(--yellow);
	background: rgba(212, 254, 7, 0.05);
}
.dash-main-area {
	padding: 16px;
	position: relative;
	overflow: hidden;
}
#dash-canvas {
	width: 100%;
	height: 100%;
}
.dash-overlay-label {
	position: absolute;
	font-family: 'Share Tech Mono', monospace;
	font-size: 8px;
	color: rgba(212, 254, 7, 0.4);
	letter-spacing: 1.5px;
}
.dash-overlay-label.tr {
	top: 20px;
	right: 20px;
	text-align: right;
}
.tech-list {
	display: flex;
	flex-direction: column;
	gap: 28px;
}
.tech-item-head {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 8px;
}
.tech-bullet {
	width: 4px;
	height: 4px;
	background: var(--yellow);
	flex-shrink: 0;
	transform: rotate(45deg);
}
.tech-item-head h4 {
	font-size: 15px;
	font-weight: 700;
}
.tech-item p {
	font-size: 13px;
	font-weight: 300;
	color: rgba(255, 255, 255, 0.45);
	line-height: 1.7;
	padding-left: 16px;
}
.progress-bar-wrap {
	padding-left: 16px;
	margin-top: 8px;
}
.progress-bar {
	height: 2px;
	background: rgba(255, 255, 255, 0.08);
	position: relative;
	overflow: hidden;
}
.progress-fill {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	background: var(--yellow);
	animation: fillBar 2s ease forwards;
	animation-play-state: paused;
}
.progress-fill.animate {
	animation-play-state: running;
}

/* ===== CONTACT ===== */
#contact {
	background: linear-gradient(180deg, #131628, #0d1025);
}
.contact-layout {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 100px;
	align-items: start;
	margin-top: 64px;
}
.contact-info h3 {
	font-size: 28px;
	font-weight: 900;
	margin-bottom: 24px;
}
.contact-info h3 span {
	color: var(--yellow);
}
.contact-detail {
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin-top: 32px;
}
.c-detail {
	display: flex;
	gap: 16px;
	align-items: flex-start;
}
.c-detail-icon {
	width: 32px;
	height: 32px;
	flex-shrink: 0;
	border: 1px solid rgba(212, 254, 7, 0.2);
	display: flex;
	align-items: center;
	justify-content: center;
}
.c-detail-text p:first-child {
	font-size: 10px;
	letter-spacing: 2px;
	color: rgba(255, 255, 255, 0.35);
	text-transform: uppercase;
	margin-bottom: 4px;
}
.c-detail-text p:last-child {
	font-size: 13px;
	font-weight: 300;
	color: rgba(255, 255, 255, 0.8);
}
.contact-form {
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}
.form-field {
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.form-field label {
	font-size: 10px;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.35);
}
.form-field input,
.form-field textarea {
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.08);
	padding: 14px 16px;
	color: var(--white);
	font-family: 'Roboto', sans-serif;
	font-size: 14px;
	font-weight: 300;
	outline: none;
	transition:
		border-color 0.2s,
		background 0.2s;
	width: 100%;
	resize: none;
}
.form-field input:focus,
.form-field textarea:focus {
	border-color: rgba(212, 254, 7, 0.4);
	background: rgba(212, 254, 7, 0.02);
}
.form-field textarea {
	min-height: 120px;
}
.btn-submit {
	align-self: flex-start;
	background: var(--yellow);
	color: var(--black);
	padding: 14px 40px;
	font-size: 11px;
	letter-spacing: 2.5px;
	text-transform: uppercase;
	font-weight: 700;
	border: none;
	cursor: none;
	clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
	transition:
		background 0.2s,
		transform 0.2s,
		box-shadow 0.2s;
}
.btn-submit:hover {
	background: #fff;
	transform: translateY(-2px);
	box-shadow: 0 0 24px rgba(212, 254, 7, 0.3);
}

/* ===== FOOTER ===== */
footer {
	background: #0a0d1c;
	padding: 60px;
	border-top: 1px solid rgba(255, 255, 255, 0.04);
}
.footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 80px;
	margin-bottom: 48px;
}
.footer-brand .nav-logo {
	display: inline-block;
	margin-bottom: 16px;
}
.footer-brand p {
	font-size: 13px;
	font-weight: 300;
	color: rgba(255, 255, 255, 0.35);
	line-height: 1.7;
	max-width: 360px;
}
.footer-links h5 {
	font-size: 10px;
	letter-spacing: 2px;
	color: rgba(255, 255, 255, 0.35);
	text-transform: uppercase;
	margin-bottom: 20px;
}
.footer-links ul {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.footer-links a {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.5);
	text-decoration: none;
	transition: color 0.2s;
}
.footer-links a:hover {
	color: var(--yellow);
}
.footer-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 32px;
	border-top: 1px solid rgba(255, 255, 255, 0.04);
}
.footer-bottom p {
	font-size: 11px;
	color: rgba(255, 255, 255, 0.2);
	letter-spacing: 1px;
}
.footer-tag {
	font-family: 'Share Tech Mono', monospace;
	font-size: 10px;
	color: rgba(212, 254, 7, 0.3);
	letter-spacing: 2px;
}

/* ===== KEYFRAMES ===== */
@keyframes fadeUp {
	from {
		opacity: 0;
		transform: translateY(24px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
@keyframes fadeIn {
	to {
		opacity: 1;
	}
}
@keyframes scrollPulse {
	0%,
	100% {
		opacity: 0.3;
		transform: scaleY(0.8);
	}
	50% {
		opacity: 1;
		transform: scaleY(1);
	}
}
@keyframes fillBar {
	from {
		width: 0;
	}
	to {
		width: var(--target-width);
	}
}
@keyframes glowPulse {
	0%,
	100% {
		opacity: 0.5;
	}
	50% {
		opacity: 1;
	}
}
@keyframes spin {
	to {
		transform: rotate(360deg);
	}
}

/* ===== UTILITIES ===== */
.parallax-slow {
	will-change: transform;
}
.reveal {
	opacity: 0;
	transform: translateY(30px);
	transition:
		opacity 0.8s,
		transform 0.8s;
}
.reveal.visible {
	opacity: 1;
	transform: none;
}
.glow-dot {
	position: absolute;
	width: 300px;
	height: 300px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(212, 254, 7, 0.12) 0%, transparent 70%);
	pointer-events: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
	nav {
		padding: 20px 30px;
	}
	.nav-links {
		display: none;
	}
	section {
		padding: 80px 30px;
	}
	#hero .hero-content {
		padding: 0 30px;
		margin-left: 0;
	}
	.cap-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.how-grid,
	.int-layout,
	.tech-layout,
	.contact-layout {
		grid-template-columns: 1fr;
	}
	.stats-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.stat-item {
		padding: 20px 24px;
		border: none;
		border-bottom: 1px solid rgba(255, 255, 255, 0.06);
	}
	.footer-grid {
		grid-template-columns: 1fr;
	}
	.cf-line,
	.hud-label {
		display: none;
	}
	#stats {
		padding: 60px 30px;
	}
	footer {
		padding: 40px 30px;
	}
	.form-row {
		grid-template-columns: 1fr;
	}
}
