:root {
	--navy: #030814;
	--navy-soft: rgba(3, 8, 20, 0.9);
	--accent: #ff7b39;
	--accent-dark: #e4601f;
	--steel: #3b3f4a;
	--orb: rgba(255, 255, 255, 0.08);
}

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	scroll-behavior: smooth;
}

.gradient-shell {
	position: fixed;
	inset: 0;
	background: radial-gradient(circle at 10% 20%, rgba(255, 123, 57, 0.25), transparent 45%),
		radial-gradient(circle at 80% 0%, rgba(255, 123, 57, 0.35), transparent 40%),
		radial-gradient(circle at 50% 80%, rgba(3, 8, 20, 0.9), rgba(3, 8, 20, 0.95));
	z-index: -2;
}

header {
	background: linear-gradient(135deg, #030814 0%, #ff7b39 100%);
}

.nav-glass {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	background: rgba(3, 8, 20, 0.7);
	backdrop-filter: blur(20px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.15);
	z-index: 40;
}

.nav-panel {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	margin: 0 auto;
	width: min(90vw, 20rem);
	margin-top: 0.75rem;
	padding: 1.25rem;
	border-radius: 1rem;
	background: rgba(3, 8, 20, 0.95);
	box-shadow: 0 20px 55px rgba(3, 8, 20, 0.45);
}

@media (min-width: 1024px) {
	.nav-panel {
		position: static;
		width: auto;
		margin-top: 0;
		padding: 0;
		background: transparent;
		box-shadow: none;
	}
}

.nav-link {
	position: relative;
	padding-bottom: 0.2rem;
}

.nav-link::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: -0.15rem;
	width: 0;
	height: 2px;
	background: var(--accent);
	transition: width 0.3s ease;
}

.nav-link:focus-visible::after,
.nav-link:hover::after {
	width: 100%;
}

.btn-primary,
.btn-ghost,
.btn-accent {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.9rem 1.8rem;
	border-radius: 999px;
	font-weight: 600;
	border: none;
	cursor: pointer;
	transition: transform 0.25s ease, box-shadow 0.25s ease;

}

.btn-primary {
	background: linear-gradient(120deg, var(--accent), var(--accent-dark));
	color: #fff;
	box-shadow: 0 15px 40px rgba(255, 123, 57, 0.45);
}

.btn-ghost {
	border: 1px solid rgba(255, 255, 255, 0.65);
	color: #fff;
	background: transparent;
}

.btn-accent {
	width: 100%;
	background: linear-gradient(120deg, var(--accent), var(--accent-dark));
	color: #fff;
	box-shadow: 0 15px 40px rgba(255, 123, 57, 0.35);
}

.btn-primary:focus-visible,
.btn-ghost:focus-visible,
.btn-accent:focus-visible,
.btn-primary:hover,
.btn-ghost:hover,
.btn-accent:hover {
	transform: translateY(-3px);
}

.hero-visual {
	border-radius: 1.75rem;
	border: 1px solid rgba(255, 255, 255, 0.2);
	background: rgba(255, 255, 255, 0.08);
	padding: 2rem;
	box-shadow: 0 35px 90px rgba(3, 8, 20, 0.45);
}

.visual-chip {
	padding: 0.65rem 1.3rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.08);
	color: #fff;
	font-weight: 500;
	text-align: center;
}

.visual-chip--glow {
	border: 1px solid rgba(255, 123, 57, 0.8);
	box-shadow: 0 0 25px rgba(255, 123, 57, 0.7);
}

.metric-card {
	border-radius: 1.25rem;
	border: 1px solid rgba(3, 8, 20, 0.08);
	background: #f7f9fe;
	padding: 1.5rem;
	box-shadow: 0 18px 40px rgba(3, 8, 20, 0.08);
}

.metric-icon {
	font-size: 1.75rem;
}

.section-label {
	text-transform: uppercase;
	letter-spacing: 0.35em;
	font-size: 0.75rem;
	color: var(--accent);
}

.section-title {
	margin-top: 0.75rem;
	font-size: clamp(2rem, 4vw, 3rem);
	color: var(--navy);
}

.section-lead {
	margin-top: 1rem;
	color: var(--steel);
}

.product-card {
	border-radius: 1.5rem;
	border: 1px solid rgba(3, 8, 20, 0.08);
	background: #fff;
	padding: 2rem;
	box-shadow: 0 30px 70px rgba(3, 8, 20, 0.1);
	display: grid;
	gap: 1rem;
	transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.product-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 35px 90px rgba(3, 8, 20, 0.18);
}

.product-icon {
	font-size: 2rem;
}

.product-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 0.5rem;
}

.solution-card {
	border-radius: 1.5rem;
	background: #fff;
	padding: 2rem;
	border: 1px solid rgba(3, 8, 20, 0.08);
	box-shadow: 0 25px 70px rgba(3, 8, 20, 0.12);
	display: grid;
	gap: 1rem;
}

.solution-illustration {
	width: 5rem;
	height: 5rem;
	border-radius: 1.25rem;
	background: rgba(255, 123, 57, 0.12);
	display: grid;
	place-items: center;
}

.solution-list {
	list-style: disc;
	padding-left: 1.25rem;
	color: var(--steel);
}

.process-card {
	border-radius: 1.5rem;
	border: 1px solid rgba(3, 8, 20, 0.08);
	padding: 2rem;
	background: #fff;
	box-shadow: 0 20px 55px rgba(3, 8, 20, 0.08);
}

.process-number {
	width: 3rem;
	height: 3rem;
	border-radius: 999px;
	background: rgba(255, 123, 57, 0.15);
	color: var(--accent);
	display: grid;
	place-items: center;
	font-weight: 600;
	margin-bottom: 1rem;
}

.about-card {
	border-radius: 1.5rem;
	border: 1px solid rgba(3, 8, 20, 0.08);
	background: #f9fbff;
	padding: 2rem;
}

.contact-form {
	border-radius: 1.5rem;
	border: 1px solid rgba(3, 8, 20, 0.08);
	background: #fff;
	padding: 2rem;
	display: grid;
	gap: 1rem;
}

.form-field {
	display: grid;
	gap: 0.4rem;
	font-weight: 500;
}

.form-field input,
.form-field textarea {
	padding: 0.85rem 1rem;
	border-radius: 0.9rem;
	border: 1px solid rgba(3, 8, 20, 0.15);
	background: #fff;
	font: inherit;
	transition: border 0.2s ease, box-shadow 0.2s ease;
}

.form-field input:focus,
.form-field textarea:focus {
	outline: none;
	border-color: var(--accent);
	box-shadow: 0 0 0 3px rgba(255, 123, 57, 0.25);
}

.contact-panel {
	border-radius: 1.5rem;
	background: linear-gradient(145deg, rgba(3, 8, 20, 0.95), rgba(3, 8, 20, 0.85));
	padding: 2.5rem;
	box-shadow: 0 30px 70px rgba(3, 8, 20, 0.35);
}

.footer-link {
	opacity: 0.75;
	transition: opacity 0.25s ease;
}

.footer-link:hover,
.footer-link:focus-visible {
	opacity: 1;
}

.contact-form button {
	margin-top: 0.5rem;
}

.nav-panel.hidden {
	display: none;
}

.contact-panel a {
	color: var(--accent);
	font-weight: 600;
}

/* Dark Mode Overrides */
.dark .section-title {
	color: #ffffff;
}

.dark .section-lead,
.dark .solution-list {
	color: #94a3b8;
}

.dark .product-card,
.dark .solution-card,
.dark .process-card,
.dark .metric-card {
	background: #0f172a;
	border-color: #1e293b;
	color: #cbd5e1;
	box-shadow: 0 30px 70px rgba(0, 0, 0, 0.4);
}

.dark .product-card:hover {
	box-shadow: 0 35px 90px rgba(0, 0, 0, 0.6);
}

.dark .about-card {
	background: #0f172a;
	border-color: #1e293b;
	color: #cbd5e1;
}

.dark .contact-form {
	background: #0f172a;
	border-color: #1e293b;
	box-shadow: 0 30px 70px rgba(0, 0, 0, 0.4);
}

.dark .form-field input,
.dark .form-field textarea {
	background: #030814;
	border-color: #1e293b;
	color: #ffffff;
}

.dark .form-field input:focus,
.dark .form-field textarea:focus {
	border-color: var(--accent);
}

.dark .about-card h3,
.dark .product-card h3,
.dark .solution-card h3,
.dark .process-card h3,
.dark .leadership-card h3,
.dark .leadership-card h4 {
	color: #ffffff;
}

.leadership-card {
	background: #ffffff;
	border: 1px solid rgba(226, 232, 240, 0.8);
	transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.leadership-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 35px 90px rgba(3, 8, 20, 0.18);
}

.dark .leadership-card {
	background: #0f172a;
	border-color: #1e293b;
	color: #cbd5e1;
	box-shadow: 0 30px 70px rgba(0, 0, 0, 0.4);
}

.dark .leadership-card:hover {
	box-shadow: 0 35px 90px rgba(0, 0, 0, 0.6);
}


