:root {
	--navy: #0c2d48;
	--navy-deep: #082136;
	--sky: #e7f1f9;
	--line: #d5e3ef;
	--text: #0f2333;
	--muted: #4f6577;
	--orange: #f37321;
	--orange-hover: #d86416;
	--white: #ffffff;
}

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	font-family: "Manrope", sans-serif;
	color: var(--text);
	background: linear-gradient(180deg, #f9fcff 0%, #edf5fb 100%);
}

a,
button {
	transition: all 0.25s ease;
}

.site-header {
	position: relative;
	padding: 0 6vw 2.8rem;
	overflow: hidden;
}

.site-header::before,
.site-header::after {
	content: "";
	position: absolute;
	border-radius: 50%;
	pointer-events: none;
}

.site-header::before {
	width: 420px;
	height: 420px;
	background: radial-gradient(circle, rgba(12, 45, 72, 0.1), transparent 70%);
	top: -180px;
	right: -120px;
}

.site-header::after {
	width: 260px;
	height: 260px;
	background: radial-gradient(circle, rgba(243, 115, 33, 0.14), transparent 72%);
	bottom: 20px;
	left: -100px;
}

.utility-bar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
	padding: 0.65rem 1rem;
	margin: 0 -6vw;
	background: var(--navy-deep);
	color: #d8e8f5;
	font-size: 0.93rem;
}

.utility-bar p {
	margin: 0;
	padding-left: 6vw;
}

.utility-bar a {
	padding-right: 6vw;
	color: #ffffff;
	font-weight: 700;
	text-decoration: none;
	position: relative;
}

.utility-bar a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -4px;
	width: 100%;
	height: 1px;
	transform: scaleX(0);
	transform-origin: left;
	background: rgba(255, 255, 255, 0.8);
	transition: transform 0.25s ease;
}

.utility-bar a:hover::after {
	transform: scaleX(1);
}

.top-nav {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 1.2rem;
	padding: 1.3rem 0;
}

.brand {
	text-decoration: none;
	font-family: "Oswald", sans-serif;
	font-size: 1.95rem;
	letter-spacing: 0.02em;
	color: var(--navy);
}

.nav-links {
	display: flex;
	justify-content: center;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 1.35rem;
}

.nav-links a {
	text-decoration: none;
	font-weight: 700;
	color: var(--muted);
	transition: color 0.22s ease;
	position: relative;
}

.nav-links a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -4px;
	width: 100%;
	height: 2px;
	border-radius: 999px;
	background: var(--orange);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.22s ease;
}

.nav-links a:hover {
	color: var(--navy);
}

.nav-links a:hover::after {
	transform: scaleX(1);
}

.nav-cta {
	display: inline-block;
	padding: 0.65rem 1rem;
	border-radius: 8px;
	text-decoration: none;
	font-weight: 800;
	color: #ffffff;
	background: var(--orange);
	transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
	box-shadow: 0 8px 16px rgba(243, 115, 33, 0.26);
}

.nav-cta:hover {
	background: var(--orange-hover);
	transform: translateY(-2px);
	box-shadow: 0 12px 22px rgba(243, 115, 33, 0.28);
}

.hero-grid {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: 1.25fr 0.75fr;
	gap: 1.4rem;
	align-items: stretch;
	padding-top: 1.3rem;
}

.hero-main {
	padding: 1rem 0;
	animation: content-fade 0.55s ease-out both;
}

.eyebrow {
	display: inline-block;
	margin: 0;
	padding: 0.35rem 0.75rem;
	border: 1px solid #c3d6e6;
	border-radius: 999px;
	font-size: 0.78rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: #365066;
	background: #ffffff;
}

.hero-main h1 {
	margin: 1rem 0 0.9rem;
	font-family: "Oswald", sans-serif;
	font-weight: 600;
	font-size: clamp(2.1rem, 4.4vw, 4.25rem);
	line-height: 1.03;
	letter-spacing: 0.01em;
	max-width: 13ch;
	color: var(--navy);
}

.hero-description {
	max-width: 68ch;
	margin: 0;
	font-size: clamp(1rem, 1.1vw, 1.14rem);
	line-height: 1.68;
	color: var(--muted);
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.85rem;
	margin-top: 1.8rem;
}

.btn {
	display: inline-block;
	padding: 0.82rem 1.16rem;
	border-radius: 9px;
	text-decoration: none;
	font-weight: 800;
	transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.btn:hover {
	transform: translateY(-2px);
}

.btn-primary {
	background: var(--orange);
	color: #ffffff;
}

.btn-primary:hover {
	background: var(--orange-hover);
}

.btn-secondary {
	border: 1px solid #c9dced;
	background: #ffffff;
	color: #29465d;
}

.btn-secondary:hover {
	background: #f2f8fd;
}

.trust-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 0.7rem;
	margin-top: 1.4rem;
}

.trust-chips span {
	padding: 0.45rem 0.8rem;
	border-radius: 999px;
	border: 1px solid #c4d9e9;
	background: #f3f8fd;
	font-size: 0.87rem;
	font-weight: 700;
	color: #36526a;
}

.hero-panel {
	padding: 1.2rem 1.15rem;
	border-radius: 14px;
	background: linear-gradient(160deg, #0d3452 0%, #0b2a42 100%);
	color: #f1f8ff;
	box-shadow: 0 22px 42px rgba(8, 28, 44, 0.2);
	align-self: center;
	animation: card-fade 0.65s ease-out both;
}

.hero-panel h2 {
	margin: 0;
	font-family: "Oswald", sans-serif;
	font-size: 1.8rem;
	font-weight: 500;
	letter-spacing: 0.02em;
}

.hero-panel p {
	margin: 0.6rem 0 0;
	line-height: 1.5;
	color: #d3e6f5;
}

.hero-panel ul {
	margin: 0.95rem 0 0;
	padding-left: 1.05rem;
	display: grid;
	gap: 0.45rem;
	color: #d3e6f5;
}

.panel-link {
	display: inline-block;
	margin-top: 1rem;
	padding: 0.75rem 0.95rem;
	border-radius: 8px;
	text-decoration: none;
	font-weight: 800;
	color: #ffffff;
	background: var(--orange);
}

.panel-link:hover {
	background: var(--orange-hover);
}

.stats-band {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.9rem;
	margin-top: 1.8rem;
	padding: 0.9rem;
	border: 1px solid var(--line);
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.78);
	backdrop-filter: blur(3px);
}

.stat-item {
	padding: 0.25rem 0.55rem;
}

.stat-value {
	display: block;
	font-family: "Oswald", sans-serif;
	font-size: 2rem;
	line-height: 1;
	color: var(--navy);
}

.stat-label {
	display: block;
	margin-top: 0.25rem;
	font-size: 0.93rem;
	font-weight: 600;
	color: #40607a;
}

@keyframes content-fade {
	from {
		opacity: 0;
		transform: translateY(15px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes card-fade {
	from {
		opacity: 0;
		transform: translateX(16px);
	}

	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@media (max-width: 980px) {
	.hero-grid {
		grid-template-columns: 1fr;
	}

	.hero-panel {
		max-width: 560px;
	}

	.stats-band {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 760px) {
	.site-header {
		padding: 0 1rem 2rem;
	}

	.utility-bar {
		margin: 0 -1rem;
		padding: 0.6rem 1rem;
		flex-direction: column;
		align-items: flex-start;
	}

	.utility-bar p,
	.utility-bar a {
		padding: 0;
	}

	.top-nav {
		grid-template-columns: 1fr;
		justify-items: flex-start;
		gap: 0.8rem;
	}

	.nav-links {
		justify-content: flex-start;
		flex-wrap: wrap;
	}

	.hero-main h1 {
		max-width: none;
	}
}

.video-banner {
	position: relative;
	min-height: 58vh;
	margin: 0 6vw;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 24px 42px rgba(9, 31, 49, 0.22);
	background: #0c2d48;
}

.video-banner::after {
	content: "";
	position: absolute;
	inset: auto -35% -90% -35%;
	height: 320px;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.15), transparent 70%);
	animation: driftGlow 9s ease-in-out infinite;
	pointer-events: none;
}

.banner-video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1.02);
	animation: videoBreathe 14s ease-in-out infinite;
}

.banner-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(120deg, rgba(8, 28, 44, 0.7) 10%, rgba(8, 28, 44, 0.42) 50%, rgba(8, 28, 44, 0.7) 90%);
}

.banner-content {
	position: relative;
	z-index: 2;
	min-height: 58vh;
	display: grid;
	place-content: center;
	text-align: center;
	padding: 1.2rem;
	color: #ffffff;
	animation: content-fade 0.6s ease-out both;
}

.banner-content h2 {
	margin: 0;
	font-family: "Oswald", sans-serif;
	font-weight: 600;
	font-size: clamp(2rem, 4vw, 3.6rem);
	line-height: 1.08;
	letter-spacing: 0.01em;
}

.banner-content p {
	margin: 0.8rem auto 0;
	max-width: 64ch;
	font-size: clamp(0.96rem, 1.2vw, 1.12rem);
	line-height: 1.7;
	color: #d8e9f8;
}

@media (max-width: 760px) {
	.video-banner {
		margin: 0 1rem;
		min-height: 48vh;
	}

	.banner-content {
		min-height: 48vh;
		padding: 1rem;
	}
}

.manufacturing-section {
	padding: 3.4rem 6vw 1rem;
}

.manufacturing-grid {
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: 2rem;
	align-items: center;
	padding: 1.4rem;
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.72);
	border: 1px solid #d8e5f0;
}

.manufacturing-image-wrap {
	display: grid;
	place-items: center;
}

.manufacturing-image {
	width: min(480px, 100%);
	height: auto;
	object-fit: contain;
	display: block;
	animation: floatGentle 6.6s ease-in-out infinite;
	filter: drop-shadow(0 12px 28px rgba(195, 40, 112, 0.15));
}

.manufacturing-content h2 {
	margin: 0;
	font-family: "Oswald", sans-serif;
	font-size: clamp(2rem, 3.4vw, 3.2rem);
	font-weight: 600;
	line-height: 1.05;
	color: #15324b;
}

.manufacturing-content p {
	margin: 1rem 0 0;
	max-width: 52ch;
	font-size: 1.06rem;
	line-height: 1.65;
	color: #335068;
}

.manufacturing-benefits {
	margin: 1.2rem 0 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 0.7rem;
}

.manufacturing-benefits li {
	position: relative;
	padding-left: 1.8rem;
	font-size: 1.75rem;
	font-family: "Oswald", sans-serif;
	font-weight: 500;
	line-height: 1.08;
	color: #16314a;
}

.manufacturing-benefits li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.34rem;
	width: 0.85rem;
	height: 0.85rem;
	border-radius: 50%;
	background: #f37321;
	box-shadow: 0 0 0 4px rgba(243, 115, 33, 0.16);
}

.services-section {
	padding: 4rem 6vw 3rem;
	text-align: center;
}

.services-section h2 {
	margin: 0;
	font-family: "Oswald", sans-serif;
	font-size: clamp(2.1rem, 3vw, 3rem);
	font-weight: 600;
	letter-spacing: 0.01em;
	color: var(--navy);
}

.services-grid {
	margin-top: 2rem;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.2rem;
}

.service-card {
	padding: 1rem 1rem 0.5rem;
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.62);
	transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
	border: 1px solid transparent;
}

.service-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 20px 36px rgba(11, 42, 66, 0.08);
	border-color: #d7e5f1;
}

.service-visual {
	height: 200px;
	display: grid;
	place-items: center;
}

.service-image {
	max-width: 100%;
	width: min(260px, 92%);
	max-height: 165px;
	height: auto;
	object-fit: contain;
	display: block;
	transition: transform 0.35s ease;
}

.service-card:hover .service-image {
	transform: translateY(-4px) scale(1.02);
}

.service-card:nth-child(3) .service-image {
	width: min(230px, 84%);
	max-height: 152px;
}

.service-card h3 {
	margin: 0.8rem 0 0.65rem;
	font-family: "Oswald", sans-serif;
	font-size: 2rem;
	font-weight: 500;
	line-height: 1.08;
	color: #16314a;
}

.service-card p {
	margin: 0 auto;
	max-width: 34ch;
	font-size: 1.02rem;
	line-height: 1.6;
	color: #3d5970;
}

.site-footer {
	position: relative;
	margin-top: 2rem;
	padding: 2.2rem 6vw 1rem;
	background: linear-gradient(160deg, #0b2a42 0%, #0a2236 100%);
	color: #d5e7f7;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.2fr repeat(3, minmax(0, 1fr));
	gap: 1.2rem;
	padding-bottom: 1.3rem;
	border-bottom: 1px solid rgba(185, 209, 229, 0.25);
}

.footer-brand {
	display: inline-block;
	font-family: "Oswald", sans-serif;
	font-size: 1.65rem;
	text-decoration: none;
	color: #ffffff;
}

.footer-brand-block p {
	margin: 0.75rem 0 0;
	max-width: 34ch;
	line-height: 1.7;
	color: #bed5e8;
}

.footer-col h3 {
	margin: 0;
	font-family: "Oswald", sans-serif;
	font-size: 1.15rem;
	font-weight: 500;
	letter-spacing: 0.02em;
	color: #ffffff;
}

.footer-col {
	display: grid;
	align-content: start;
	gap: 0.6rem;
}

.footer-col a,
.footer-col span {
	color: #c8ddee;
	text-decoration: none;
	font-weight: 600;
	font-size: 0.95rem;
	transition: color 0.2s ease;
}

.footer-col a:hover {
	color: #ffffff;
}

.footer-col a {
	position: relative;
	width: fit-content;
}

.footer-col a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -3px;
	width: 100%;
	height: 1px;
	background: rgba(255, 255, 255, 0.8);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.2s ease;
}

.footer-col a:hover::after {
	transform: scaleX(1);
}

.reveal {
	opacity: 0;
	transform: translateY(34px);
	transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
	transition-delay: var(--delay, 0ms);
	will-change: transform, opacity;
}

.reveal[data-animate="right"] {
	transform: translateX(32px);
}

.reveal.in-view {
	opacity: 1;
	transform: translate(0, 0);
}

@keyframes driftGlow {
	0%,
	100% {
		transform: translateY(0);
		opacity: 0.25;
	}
	50% {
		transform: translateY(-16px);
		opacity: 0.45;
	}
}

@keyframes videoBreathe {
	0%,
	100% {
		transform: scale(1.02);
	}
	50% {
		transform: scale(1.06);
	}
}

@keyframes floatGentle {
	0%,
	100% {
		transform: translateY(0px);
	}
	50% {
		transform: translateY(-10px);
	}
}

@media (prefers-reduced-motion: reduce) {
	* {
		animation: none !important;
		transition: none !important;
		scroll-behavior: auto !important;
	}

	.reveal {
		opacity: 1 !important;
		transform: none !important;
	}
}

.footer-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
	padding-top: 1rem;
	font-size: 0.88rem;
	color: #b0c7da;
}

.footer-bottom p {
	margin: 0;
}

@media (max-width: 980px) {
	.manufacturing-grid {
		grid-template-columns: 1fr;
		padding: 1.15rem;
	}

	.manufacturing-content p {
		max-width: none;
	}

	.footer-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.services-grid {
		grid-template-columns: 1fr;
		gap: 0.9rem;
	}
}

@media (max-width: 760px) {
	.manufacturing-section {
		padding: 2.7rem 1rem 0.7rem;
	}

	.manufacturing-grid {
		gap: 1.25rem;
	}

	.manufacturing-content h2 {
		font-size: 2.1rem;
	}

	.manufacturing-content p {
		font-size: 1rem;
	}

	.manufacturing-benefits li {
		font-size: 1.45rem;
	}

	.services-section {
		padding: 3rem 1rem 2rem;
	}

	.service-visual {
		height: 170px;
	}

	.service-image {
		width: min(220px, 88%);
		max-height: 140px;
	}

	.service-card:nth-child(3) .service-image {
		width: min(198px, 80%);
		max-height: 132px;
	}

	.service-card h3 {
		font-size: 1.7rem;
	}

	.site-footer {
		padding: 1.8rem 1rem 1rem;
	}

	.footer-grid {
		grid-template-columns: 1fr;
	}

	.footer-bottom {
		flex-direction: column;
		align-items: flex-start;
	}
}
