:root {
	--bg: #020408;
	--bg2: #060b12;
	--red: #ff2020;
	--red2: #ff6040;
	--orange: #ff8c40;
	--cyan: #00d4ff;
	--white: #ffffff;
	--muted: rgba(255, 255, 255, 0.65);
	--muted2: rgba(255, 255, 255, 0.42);
	--glass: rgba(255, 255, 255, 0.06);
	--glass2: rgba(255, 255, 255, 0.10);
	--border: rgba(255, 255, 255, 0.10);
	--border2: rgba(255, 255, 255, 0.18);
	--red-glow: rgba(255, 32, 32, 0.25);
	--cyan-glow: rgba(0, 212, 255, 0.20);
	--font-display: 'Bebas Neue', sans-serif;
	--font-body: 'Space Grotesk', sans-serif;
	--font-mono: 'JetBrains Mono', monospace;
	--radius: 1.2rem;
	--radius-lg: 1.8rem;
	--radius-pill: 999px;
	--container: min(94vw, 1280px);
}

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

html {
	scroll-behavior: smooth;
}

body {
	font-family: var(--font-body);
	color: var(--white);
	background: var(--bg);
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
	cursor: default;
	/* Accessible cursor, no custom cursor */
}

/* Focus visible pour accessibilité */
:focus-visible {
	outline: 2px solid var(--red2);
	outline-offset: 4px;
}

.container {
	width: var(--container);
	margin-inline: auto;
}

img {
	max-width: 100%;
	display: block;
}

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

button,
input,
textarea {
	font: inherit;
}

/* ======================== CANVAS BG ======================== */
#three-canvas {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
	pointer-events: none;
	opacity: 0.7;
}

/* ======================== NOISE OVERLAY ======================== */
.noise {
	position: fixed;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.08'/%3E%3C/svg%3E");
	opacity: 0.4;
	mix-blend-mode: overlay;
}

/* ======================== SCANLINES ======================== */
.scanlines {
	position: fixed;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0, 0, 0, 0.06) 2px, rgba(0, 0, 0, 0.06) 4px);
}

/* ======================== HEADER ======================== */
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	padding: 0.8rem 0;
	backdrop-filter: blur(24px) saturate(1.4);
	-webkit-backdrop-filter: blur(24px) saturate(1.4);
	background: rgba(2, 4, 8, 0.65);
	border-bottom: 1px solid rgba(255, 32, 32, 0.15);
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
}

.logo {
	display: flex;
	align-items: center;
	gap: 0.7rem;
	font-family: var(--font-display);
	font-size: 1.6rem;
	letter-spacing: 0.08em;
}

.logo-mark {
	width: 2.4rem;
	height: 2.4rem;
	background: linear-gradient(135deg, var(--red), var(--orange));
	border-radius: 0.5rem;
	display: grid;
	place-items: center;
	font-size: 1.1rem;
	font-weight: 900;
	font-family: var(--font-display);
	box-shadow: 0 0 20px rgba(255, 32, 32, 0.5);
	clip-path: polygon(15% 0%, 85% 0%, 100% 15%, 100% 85%, 85% 100%, 15% 100%, 0% 85%, 0% 15%);
}

.logo-text {
	color: var(--white);
}

.logo-text span {
	color: var(--red);
}

.hud-line {
	font-family: var(--font-mono);
	font-size: 0.65rem;
	color: rgba(0, 212, 255, 0.6);
	letter-spacing: 0.1em;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.hud-line::before {
	content: '';
	width: 6px;
	height: 6px;
	background: var(--cyan);
	border-radius: 50%;
	animation: blink 1.8s infinite;
	box-shadow: 0 0 8px var(--cyan);
}

@keyframes blink {

	0%,
	100% {
		opacity: 1
	}

	50% {
		opacity: 0.2
	}
}

.nav-links {
	display: flex;
	align-items: center;
	list-style: none;
	gap: 0.2rem;
}

.nav-links a {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	padding: 0.55rem 1.1rem;
	font-size: 0.82rem;
	font-weight: 500;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--muted);
	border-radius: var(--radius-pill);
	transition: all 0.25s ease;
	position: relative;
}

.nav-links a::after {
	content: '';
	position: absolute;
	bottom: 4px;
	left: 50%;
	right: 50%;
	height: 2px;
	background: var(--red);
	transition: all 0.25s ease;
	border-radius: 2px;
}

.nav-links a:hover {
	color: var(--white);
}

.nav-links a:hover::after {
	left: 15%;
	right: 15%;
}

.nav-cta {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	padding: 0.65rem 1.4rem;
	border-radius: var(--radius-pill);
	background: linear-gradient(135deg, var(--red), var(--red2));
	font-weight: 600;
	font-size: 0.85rem;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	box-shadow: 0 0 20px rgba(255, 32, 32, 0.4), 0 4px 15px rgba(0, 0, 0, 0.3);
	transition: all 0.25s ease;
}

.nav-cta:hover {
	transform: translateY(-2px);
	box-shadow: 0 0 30px rgba(255, 32, 32, 0.6), 0 8px 20px rgba(0, 0, 0, 0.4);
}

.hamburger {
	display: none;
	flex-direction: column;
	gap: 5px;
	padding: 0.5rem;
	background: none;
	border: none;
	cursor: pointer;
}

.hamburger span {
	display: block;
	width: 24px;
	height: 2px;
	background: var(--white);
	border-radius: 2px;
	transition: all 0.3s ease;
}

.hamburger.open span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
	opacity: 0;
}

.hamburger.open span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

/* MOBILE NAV */
.mobile-nav {
	display: none;
	position: fixed;
	inset: 0;
	z-index: 99;
	background: rgba(2, 4, 8, 0.97);
	backdrop-filter: blur(30px);
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 2rem;
}

.mobile-nav.open {
	display: flex;
}

.mobile-nav a {
	font-family: var(--font-display);
	font-size: clamp(2.5rem, 8vw, 4rem);
	letter-spacing: 0.06em;
	color: var(--muted);
	transition: color 0.2s ease;
}

.mobile-nav a:hover {
	color: var(--red);
}

/* ======================== HERO ======================== */
.hero {
	position: relative;
	z-index: 2;
	min-height: 100svh;
	padding-top: clamp(5rem, 12vh, 8rem);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.hero-blob {
	position: absolute;
	top: -10%;
	right: -5%;
	width: min(55vw, 700px);
	height: min(55vw, 700px);
	background: radial-gradient(ellipse, rgba(255, 32, 32, 0.22) 0%, rgba(255, 64, 32, 0.08) 40%, transparent 70%);
	border-radius: 50%;
	pointer-events: none;
	animation: float 8s ease-in-out infinite;
}

.hero-blob2 {
	position: absolute;
	bottom: 5%;
	left: -10%;
	width: min(40vw, 500px);
	height: min(40vw, 500px);
	background: radial-gradient(ellipse, rgba(0, 212, 255, 0.12) 0%, transparent 65%);
	border-radius: 50%;
	pointer-events: none;
	animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {

	0%,
	100% {
		transform: translateY(0) scale(1);
	}

	50% {
		transform: translateY(-40px) scale(1.05);
	}
}

.hero-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	gap: clamp(2rem, 4vw, 5rem);
	padding-block: clamp(2rem, 6vw, 4rem);
}

.hero-left {
	position: relative;
	z-index: 3;
}

.hero-tag {
	display: inline-flex;
	align-items: center;
	gap: 0.7rem;
	padding: 0.45rem 1rem;
	border-radius: var(--radius-pill);
	background: rgba(255, 32, 32, 0.12);
	border: 1px solid rgba(255, 32, 32, 0.3);
	font-family: var(--font-mono);
	font-size: 0.72rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--red2);
	margin-bottom: 1.5rem;
}

.hero-tag i {
	font-size: 0.75rem;
}

.hero-title {
	font-family: var(--font-display);
	font-size: clamp(3.5rem, 8vw, 8rem);
	line-height: 0.88;
	letter-spacing: 0.02em;
	margin-bottom: 1.5rem;
}

.hero-title .line1 {
	color: rgba(255, 255, 255, 0.45);
	font-size: 0.42em;
	letter-spacing: 0.18em;
	font-family: var(--font-body);
	font-weight: 300;
	display: block;
	margin-bottom: 0.3em;
}

.hero-title .line2 {
	display: block;
	color: var(--white);
}

.hero-title .line3 {
	display: block;
	background: linear-gradient(135deg, var(--red) 0%, var(--orange) 60%, var(--red2) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	filter: drop-shadow(0 0 30px rgba(255, 32, 32, 0.5));
}

.hero-lead {
	color: var(--muted);
	font-size: 1rem;
	line-height: 1.7;
	max-width: 50ch;
	margin-bottom: 2.5rem;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	align-items: center;
	margin-bottom: 3rem;
}

.btn-primary {
	display: inline-flex;
	align-items: center;
	gap: 0.7rem;
	padding: 0.9rem 2rem;
	border-radius: var(--radius-pill);
	background: linear-gradient(135deg, var(--red), var(--red2));
	font-weight: 700;
	font-size: 0.9rem;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	box-shadow: 0 0 25px rgba(255, 32, 32, 0.45), 0 4px 20px rgba(0, 0, 0, 0.3);
	transition: all 0.25s ease;
	border: none;
	color: var(--white);
	cursor: pointer;
}

.btn-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 0 40px rgba(255, 32, 32, 0.65), 0 10px 30px rgba(0, 0, 0, 0.4);
}

.btn-ghost {
	display: inline-flex;
	align-items: center;
	gap: 0.7rem;
	padding: 0.9rem 2rem;
	border-radius: var(--radius-pill);
	border: 1px solid var(--border2);
	background: var(--glass);
	backdrop-filter: blur(12px);
	font-weight: 600;
	font-size: 0.9rem;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: var(--muted);
	transition: all 0.25s ease;
	cursor: pointer;
}

.btn-ghost:hover {
	border-color: rgba(0, 212, 255, 0.4);
	color: var(--white);
	background: rgba(0, 212, 255, 0.08);
}

.hero-stats {
	display: flex;
	gap: 2.5rem;
	flex-wrap: wrap;
}

.stat {
	display: flex;
	flex-direction: column;
	gap: 0.2rem;
}

.stat-num {
	font-family: var(--font-display);
	font-size: 2.4rem;
	line-height: 1;
	background: linear-gradient(135deg, var(--white), var(--muted));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.stat-label {
	font-size: 0.75rem;
	color: var(--muted2);
	letter-spacing: 0.08em;
	text-transform: uppercase;
	font-family: var(--font-mono);
}

.hero-right {
	position: relative;
	z-index: 3;
	display: flex;
	align-items: flex-end;
	justify-content: center;
}

.portrait-wrap {
	position: relative;
	width: min(100%, 480px);
}

.portrait-frame {
	position: relative;
	width: 100%;
	aspect-ratio: 3/4;
	overflow: hidden;
	border-radius: 2rem 2rem 50% 50% / 2rem 2rem 30% 30%;
}

.portrait-frame::before {
	content: '';
	position: absolute;
	inset: 0;
	z-index: 2;
	background: linear-gradient(0deg, rgba(2, 4, 8, 0.9) 0%, transparent 30%, transparent 80%, rgba(2, 4, 8, 0.3) 100%);
}

.portrait-frame::after {
	content: '';
	position: absolute;
	inset: 0;
	z-index: 2;
	border-radius: inherit;
	box-shadow: inset 0 0 0 1.5px rgba(255, 32, 32, 0.3), inset 0 0 60px rgba(255, 32, 32, 0.08);
}

.portrait-frame img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
	filter: saturate(1.15) contrast(1.08);
}

.ring-deco {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: calc(100% + 40px);
	aspect-ratio: 1;
	border-radius: 50%;
	border: 1px dashed rgba(255, 32, 32, 0.25);
	animation: spin 20s linear infinite;
	pointer-events: none;
}

.ring-deco2 {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: calc(100% + 80px);
	aspect-ratio: 1;
	border-radius: 50%;
	border: 1px solid rgba(0, 212, 255, 0.12);
	animation: spin 35s linear infinite reverse;
	pointer-events: none;
}

@keyframes spin {
	from {
		transform: translate(-50%, -50%) rotate(0deg)
	}

	to {
		transform: translate(-50%, -50%) rotate(360deg)
	}
}

.tech-card {
	position: absolute;
	bottom: 10%;
	right: -8%;
	width: 220px;
	padding: 1rem 1.1rem;
	border-radius: var(--radius);
	background: rgba(6, 11, 18, 0.75);
	border: 1px solid rgba(255, 32, 32, 0.25);
	backdrop-filter: blur(24px);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.05);
	animation: float 7s ease-in-out infinite;
}

.tech-card-label {
	font-family: var(--font-mono);
	font-size: 0.62rem;
	color: var(--red2);
	letter-spacing: 0.1em;
	text-transform: uppercase;
	margin-bottom: 0.5rem;
	display: flex;
	align-items: center;
	gap: 0.4rem;
}

.tech-card-label::before {
	content: '';
	display: block;
	width: 5px;
	height: 5px;
	background: var(--red);
	border-radius: 50%;
	animation: blink 1.8s infinite;
}

.tech-stack {
	display: flex;
	flex-wrap: wrap;
	gap: 0.35rem;
}

.tech-pill {
	padding: 0.25rem 0.6rem;
	border-radius: var(--radius-pill);
	background: rgba(255, 255, 255, 0.07);
	border: 1px solid rgba(255, 255, 255, 0.1);
	font-size: 0.68rem;
	font-family: var(--font-mono);
	color: rgba(255, 255, 255, 0.8);
}

.skill-card {
	position: absolute;
	top: 15%;
	left: -10%;
	width: 170px;
	padding: 1rem;
	border-radius: var(--radius);
	background: rgba(0, 212, 255, 0.06);
	border: 1px solid rgba(0, 212, 255, 0.2);
	backdrop-filter: blur(20px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
	animation: float 9s ease-in-out infinite 1s;
}

.skill-card-icon {
	font-size: 1.5rem;
	margin-bottom: 0.5rem;
}

.skill-card strong {
	display: block;
	font-size: 0.85rem;
	margin-bottom: 0.2rem;
}

.skill-card p {
	font-size: 0.7rem;
	color: var(--muted2);
}

.hud-corner {
	position: absolute;
	width: 20px;
	height: 20px;
	border-color: rgba(255, 32, 32, 0.6);
	border-style: solid;
}

.hud-tl {
	top: 8px;
	left: 8px;
	border-width: 2px 0 0 2px;
}

.hud-tr {
	top: 8px;
	right: 8px;
	border-width: 2px 2px 0 0;
}

.hud-bl {
	bottom: 8px;
	left: 8px;
	border-width: 0 0 2px 2px;
}

.hud-br {
	bottom: 8px;
	right: 8px;
	border-width: 0 2px 2px 0;
}

.scroll-hint {
	position: absolute;
	bottom: 2rem;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
	z-index: 3;
	color: var(--muted2);
	font-size: 0.7rem;
	font-family: var(--font-mono);
	letter-spacing: 0.1em;
	text-transform: uppercase;
	animation: fadeUp 2s 1.5s both;
}

.scroll-line {
	width: 1px;
	height: 40px;
	background: linear-gradient(to bottom, transparent, var(--red));
	animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

	0%,
	100% {
		opacity: 0.3;
		transform: scaleY(0.6)
	}

	50% {
		opacity: 1;
		transform: scaleY(1)
	}
}

/* ======================== SECTION SHARED ======================== */
section {
	position: relative;
	z-index: 2;
}

.section-head {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	gap: 2rem;
	margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.section-kicker {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	font-family: var(--font-mono);
	font-size: 0.72rem;
	color: var(--red2);
	letter-spacing: 0.15em;
	text-transform: uppercase;
	margin-bottom: 0.7rem;
}

.section-kicker::before {
	content: '';
	display: block;
	width: 20px;
	height: 1px;
	background: var(--red);
}

.section-title {
	font-family: var(--font-display);
	font-size: clamp(2.2rem, 5vw, 4.5rem);
	line-height: 0.92;
	letter-spacing: 0.02em;
}

.section-summary {
	max-width: 44ch;
	color: var(--muted);
	line-height: 1.7;
	font-size: 0.95rem;
}

/* ======================== PROJECTS ======================== */
.projects {
	padding: clamp(4rem, 8vw, 7rem) 0;
}

.projects-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}

.project-card {
	position: relative;
	overflow: hidden;
	padding: 2rem;
	border-radius: var(--radius-lg);
	background: linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
	border: 1px solid var(--border);
	backdrop-filter: blur(20px);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
	display: flex;
	flex-direction: column;
	gap: 1rem;
	transition: all 0.4s ease;
}

.project-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: linear-gradient(90deg, transparent, var(--red), transparent);
	opacity: 0;
	transition: opacity 0.4s ease;
}

.project-card:hover {
	transform: translateY(-6px);
	border-color: rgba(255, 32, 32, 0.25);
	box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5), 0 0 40px rgba(255, 32, 32, 0.08);
}

.project-card:hover::before {
	opacity: 1;
}

.project-topline {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.project-index {
	font-family: var(--font-display);
	font-size: 2.5rem;
	line-height: 1;
	color: rgba(255, 255, 255, 0.1);
	letter-spacing: -0.02em;
}

.project-tag {
	padding: 0.3rem 0.8rem;
	border-radius: var(--radius-pill);
	background: rgba(255, 32, 32, 0.1);
	border: 1px solid rgba(255, 32, 32, 0.2);
	font-size: 0.7rem;
	font-family: var(--font-mono);
	color: var(--red2);
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.project-title {
	font-size: 1.4rem;
	font-weight: 700;
	letter-spacing: -0.02em;
}

.project-desc {
	color: var(--muted);
	font-size: 0.88rem;
	line-height: 1.65;
}

.project-meta {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.project-meta li {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	color: rgba(255, 255, 255, 0.75);
	font-size: 0.82rem;
}

.project-meta i {
	width: 1.1rem;
	color: var(--cyan);
	font-size: 0.8rem;
}

.project-link {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.82rem;
	font-weight: 700;
	color: var(--white);
	letter-spacing: 0.05em;
	text-transform: uppercase;
	margin-top: auto;
	padding-top: 0.5rem;
	transition: gap 0.25s ease;
}

.project-link:hover {
	gap: 0.9rem;
	color: var(--red2);
}

/* ======================== SERVICES ======================== */
.services {
	padding: clamp(4rem, 8vw, 7rem) 0;
}

.section-divider {
	position: relative;
	height: 1px;
	background: linear-gradient(90deg, transparent 0%, rgba(255, 32, 32, 0.4) 30%, rgba(0, 212, 255, 0.4) 70%, transparent 100%);
	margin: 0 0 clamp(4rem, 8vw, 7rem);
}

.section-divider::before {
	content: '';
	position: absolute;
	inset: 0;
	background: inherit;
	filter: blur(4px);
	opacity: 0.6;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}

.service-card {
	position: relative;
	overflow: hidden;
	padding: clamp(1.5rem, 2.5vw, 2.2rem);
	border-radius: var(--radius-lg);
	background: linear-gradient(145deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.02));
	border: 1px solid var(--border);
	backdrop-filter: blur(20px);
	transition: all 0.4s ease;
}

.service-card::after {
	content: '';
	position: absolute;
	bottom: -40px;
	right: -40px;
	width: 130px;
	height: 130px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(255, 32, 32, 0.15), transparent 65%);
	transition: all 0.4s ease;
}

.service-card:hover {
	transform: translateY(-5px);
	border-color: rgba(255, 32, 32, 0.22);
}

.service-card:hover::after {
	transform: scale(1.4);
	opacity: 1.5;
}

.service-icon-wrap {
	width: 52px;
	height: 52px;
	border-radius: 1rem;
	background: linear-gradient(135deg, rgba(255, 32, 32, 0.2), rgba(255, 100, 40, 0.1));
	border: 1px solid rgba(255, 32, 32, 0.25);
	display: grid;
	place-items: center;
	margin-bottom: 1.3rem;
	font-size: 1.3rem;
	color: var(--red2);
	box-shadow: 0 0 20px rgba(255, 32, 32, 0.15);
}

.service-title {
	font-size: 1.15rem;
	font-weight: 700;
	margin-bottom: 0.7rem;
	letter-spacing: -0.02em;
}

.service-desc {
	color: var(--muted);
	font-size: 0.86rem;
	line-height: 1.7;
	margin-bottom: 1.2rem;
}

.service-list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 0.45rem;
}

.service-list li {
	display: flex;
	align-items: center;
	gap: 0.55rem;
	font-size: 0.8rem;
	color: rgba(255, 255, 255, 0.72);
}

.service-list li::before {
	content: '→';
	color: var(--red);
	font-size: 0.7rem;
}

/* ======================== CONTACT ======================== */
.contact {
	padding: clamp(4rem, 8vw, 7rem) 0;
}

.contact-shell {
	padding: clamp(2rem, 4vw, 3.5rem);
	border-radius: var(--radius-lg);
	background: linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
	border: 1px solid var(--border);
	backdrop-filter: blur(24px);
	box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: clamp(2rem, 4vw, 4rem);
	align-items: start;
}

.contact-copy {
	padding-top: 0.5rem;
}

.contact-copy p {
	color: var(--muted);
	line-height: 1.7;
	margin-top: 1rem;
	max-width: 42ch;
}

.contact-socials {
	display: flex;
	gap: 0.8rem;
	margin-top: 2rem;
}

.social-btn {
	width: 42px;
	height: 42px;
	border-radius: 0.8rem;
	background: var(--glass);
	border: 1px solid var(--border);
	display: grid;
	place-items: center;
	color: var(--muted);
	font-size: 0.95rem;
	transition: all 0.25s ease;
}

.social-btn:hover {
	background: rgba(255, 32, 32, 0.15);
	border-color: rgba(255, 32, 32, 0.3);
	color: var(--white);
}

.contact-form {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.field-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
}

.field {
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
}

label {
	font-size: 0.78rem;
	color: var(--muted);
	font-family: var(--font-mono);
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

input,
textarea {
	width: 100%;
	padding: 0.85rem 1rem;
	border-radius: 0.9rem;
	border: 1px solid var(--border);
	background: rgba(255, 255, 255, 0.05);
	color: var(--white);
	outline: none;
	transition: all 0.25s ease;
}

input::placeholder,
textarea::placeholder {
	color: var(--muted2);
}

input:focus,
textarea:focus {
	border-color: rgba(255, 32, 32, 0.4);
	box-shadow: 0 0 0 3px rgba(255, 32, 32, 0.08);
	background: rgba(255, 255, 255, 0.07);
}

textarea {
	resize: vertical;
	min-height: 9rem;
}

/* ======================== ENRICHED FOOTER ======================== */
.site-footer {
	position: relative;
	z-index: 2;
	background: rgba(2, 4, 8, 0.7);
	backdrop-filter: blur(20px);
	border-top: 1px solid rgba(255, 32, 32, 0.2);
	padding: clamp(3rem, 8vw, 5rem) 0 2rem;
	margin-top: clamp(3rem, 6vw, 6rem);
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
	gap: 2rem;
	margin-bottom: 2rem;
}

.footer-col h4 {
	font-family: var(--font-display);
	font-size: 1.3rem;
	margin-bottom: 1.2rem;
	color: var(--white);
}

.footer-col p,
.footer-col li {
	color: var(--muted2);
	font-size: 0.85rem;
	line-height: 1.8;
}

.footer-col ul {
	list-style: none;
}

.footer-col ul li a {
	color: var(--muted2);
	transition: color 0.2s ease;
}

.footer-col ul li a:hover {
	color: var(--red2);
}

.footer-col .footer-logo {
	font-family: var(--font-display);
	font-size: 1.8rem;
	color: rgba(255, 255, 255, 0.25);
	margin-bottom: 1rem;
	display: block;
}

.footer-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 1rem;
	border-top: 1px solid rgba(255, 255, 255, 0.05);
	padding-top: 1.5rem;
	font-size: 0.8rem;
	color: var(--muted2);
}

.footer-bottom a {
	color: var(--red2);
}

.footer-socials {
	display: flex;
	gap: 0.8rem;
}

.footer-socials a {
	width: 36px;
	height: 36px;
	border-radius: 0.6rem;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	display: grid;
	place-items: center;
	font-size: 0.9rem;
	color: var(--muted2);
	transition: all 0.25s ease;
}

.footer-socials a:hover {
	background: rgba(255, 32, 32, 0.15);
	border-color: rgba(255, 32, 32, 0.3);
	color: var(--white);
}

/* ======================== ANIMATIONS ======================== */
.reveal {
	animation: fadeUp 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) both;
	animation-delay: var(--delay, 0s);
}

@keyframes fadeUp {
	from {
		opacity: 0;
		transform: translateY(30px);
		filter: blur(8px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
		filter: blur(0);
	}
}

/* ======================== RESPONSIVE ======================== */
@media (max-width: 1100px) {
	.hero-grid {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.hero-right {
		display: none;
	}

	.hero-lead {
		margin-inline: auto;
	}

	.hero-actions {
		justify-content: center;
	}

	.hero-stats {
		justify-content: center;
	}

	.projects-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.services-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.contact-shell {
		grid-template-columns: 1fr;
	}

	.section-head {
		flex-direction: column;
		align-items: flex-start;
	}

	.footer-grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 780px) {

	.nav-links,
	.nav-cta,
	.hud-line {
		display: none;
	}

	.hamburger {
		display: flex;
	}

	.projects-grid {
		grid-template-columns: 1fr;
	}

	.services-grid {
		grid-template-columns: 1fr;
	}

	.field-row {
		grid-template-columns: 1fr;
	}

	.footer-grid {
		grid-template-columns: 1fr;
	}

	.footer-bottom {
		flex-direction: column;
		text-align: center;
	}

	.hero-title {
		font-size: clamp(3rem, 14vw, 5rem);
	}

	.hero-stats {
		gap: 1.5rem;
	}
}

@media (max-width: 560px) {
	.hero-actions {
		flex-direction: column;
		align-items: center;
	}

	.hero-stats {
		gap: 1rem;
	}

	.stat-num {
		font-size: 1.8rem;
	}
}


@media (prefers-reduced-motion: reduce) {

	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
}