:root {
	--violet: #511b8b; /* Core Violet — primary */
	--magenta: #e63680; /* Magenta Energy — accents/CTAs */
	--graphite: #1c1428; /* Deep Graphite — text/bg contrast */
	--softwhite: #f8f6fb; /* Soft White — panels/background */
	--radius: 22px;
	--shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
	--maxw: 1160px;
}
* {
	box-sizing: border-box;
}
html,
body {
	margin: 0;
	padding: 0;
}
body {
	font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
	color: var(--softwhite);
	background: var(--graphite);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}
a {
	color: inherit;
	text-decoration: none;
}
.wrap {
	max-width: var(--maxw);
	margin: 0 auto;
	padding: 0 20px;
}
header {
	position: sticky;
	top: 0;
	z-index: 10;
	background: linear-gradient(180deg, rgba(28, 20, 40, 0.9), rgba(28, 20, 40, 0.7));
	backdrop-filter: blur(6px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 64px;
}
.brand {
	display: flex;
	align-items: center;
	gap: 12px;
	font-weight: 600;
	letter-spacing: 0.2px;
}
.logo {
	display: inline-block;
}

.logo img {
	height: 45px;
	margin-top: 8px;
}

.brand-name {
	font-family: "Bebas Neue", Inter, sans-serif;
	font-size: 22px;
	letter-spacing: 1px;
}
.cta-nav a {
	padding: 10px 16px;
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	transition: 0.25s ease;
	font-weight: 600;
	font-size: 14px;
	opacity: 0.95;
}
.cta-nav a:hover {
	transform: translateY(-1px);
	border-color: rgba(255, 255, 255, 0.28);
}
/* Hero */
.hero {
	padding: 88px 0 56px;
}
.eyebrow {
	display: inline-flex;
	gap: 10px;
	align-items: center;
	background: rgba(248, 246, 251, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.1);
	padding: 6px 10px;
	border-radius: 999px;
	font-size: 12px;
	letter-spacing: 0.25px;
}
h1 {
	margin: 16px 0 10px;
	font-family: "Bebas Neue", Inter, sans-serif;
	font-size: clamp(40px, 7vw, 84px);
	line-height: 1.02;
	letter-spacing: 0.8px;
	text-wrap: balance;
}
.subhead {
	color: #e9e6f1;
	max-width: 820px;
	font-size: 18px;
	opacity: 0.92;
}
.cta-row {
	display: flex;
	gap: 14px;
	margin-top: 26px;
	flex-wrap: wrap;
}
.btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 14px 18px;
	border-radius: 14px;
	font-weight: 700;
	letter-spacing: 0.2px;
	border: 0;
	cursor: pointer;
	transition: 0.2s ease;
}
.btn-primary {
	background: linear-gradient(135deg, var(--violet), var(--magenta));
	color: white;
	box-shadow: var(--shadow);
}
.btn-primary:hover {
	transform: translateY(-1px);
}
.btn-ghost {
	background: transparent;
	color: #f4f1f8;
	border: 1px solid rgba(255, 255, 255, 0.16);
}
.panel {
	background: linear-gradient(180deg, rgba(248, 246, 251, 0.08), rgba(248, 246, 251, 0.03));
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: var(--radius);
	padding: 28px;
	box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
}
.grid {
	display: grid;
	gap: 18px;
}
.two {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}
.three {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}
.four {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}
@media (max-width: 980px) {
	.two,
	.three,
	.four {
		grid-template-columns: 1fr;
	}
}
section {
	padding: 44px 0;
}
section h2 {
	font-family: "Bebas Neue", Inter, sans-serif;
	font-size: clamp(28px, 4.5vw, 46px);
	letter-spacing: 0.6px;
	margin: 0 0 10px;
}
.muted {
	opacity: 0.85;
}
.benefits .panel {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.benefits h3 {
	margin: 0;
	font-size: 18px;
	letter-spacing: 0.2px;
	font-weight: 700;
}
.services-list li {
	margin: 8px 0;
}
.badge {
	align-items: center;
	gap: 8px;
	background: rgba(248, 246, 251, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.1);
	padding: 8px 12px;
	border-radius: 999px;
	font-size: 13px;
}
.audience-pill {
	background: rgba(248, 246, 251, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.1);
	padding: 10px 14px;
	border-radius: 14px;
	font-weight: 600;
	font-size: 14px;
}
/* Contact form */
form {
	display: grid;
	gap: 14px;
	margin-top: 8px;
}
label {
	font-weight: 600;
	font-size: 14px;
}
input,
select,
textarea {
	width: 100%;
	padding: 14px 14px;
	background: rgba(248, 246, 251, 0.06);
	color: #f8f6fb;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 12px;
	outline: none;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
input::placeholder,
textarea::placeholder {
	color: rgba(248, 246, 251, 0.6);
}
input:focus,
select:focus,
textarea:focus {
	border-color: rgba(230, 54, 128, 0.65);
	box-shadow: 0 0 0 3px rgba(230, 54, 128, 0.2);
}
textarea {
	min-height: 140px;
	resize: vertical;
}
.foot {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 12px;
	padding: 22px 15px 0px !important;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	margin-top: 28px;
	color: #e8e3f3;
	opacity: 0.9;
}
.trademark {
	opacity: 0.85;
	font-size: 13px;
}
/* Decorative loop behind hero */
.loop {
	position: absolute;
	inset: auto 0 0 0;
	height: 420px;
	pointer-events: none;
	overflow: hidden;
	mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
}
.loop svg {
	width: 100%;
	height: 100%;
	display: block;
	opacity: 0.25;
	filter: blur(0.25px);
}
.about-logo {
	max-width: 100%;
	height: auto;
	border-radius: 12px;
	margin: 0 auto;
}
.about-logo-container {
	display: flex;
	justify-content: center;
	overflow: hidden;
}

.panel li {
	margin-bottom: 1rem;
}

#inquiryForm button.btn.btn-primary {
	max-width: 300px;
	margin: 0 auto;
}

/* Quote + services table */
blockquote {
	margin: 8px 0 10px;
	padding: 12px 14px;
	border-left: 4px solid rgba(230, 54, 128, 0.7);
	background: linear-gradient(180deg, rgba(248, 246, 251, 0.06), rgba(248, 246, 251, 0.03));
	border-radius: 12px;
	font-size: 20px;
	line-height: 1.5;
}
blockquote + cite {
	display: block;
	margin-top: 6px;
	font-size: 13px;
	opacity: 0.8;
}
.table-wrap {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}
.services-table {
	width: 100%;
	border-collapse: collapse;
}
.services-table th,
.services-table td {
	text-align: left;
	vertical-align: top;
	padding: 12px 10px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.services-table th {
	font-weight: 700;
	background: rgba(248, 246, 251, 0.08);
}
.visually-hidden {
	position: absolute !important;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	width: 1px;
	overflow: hidden;
	white-space: nowrap;
}

/* Mobile refinements */
@media (max-width: 640px) {
	.wrap {
		padding: 0 18px;
	}
	section {
		padding: 28px 0;
	}
	.panel {
		padding: 22px;
		background: linear-gradient(180deg, rgba(248, 246, 251, 0.12), rgba(248, 246, 251, 0.06));
		border-color: rgba(255, 255, 255, 0.18);
		backdrop-filter: blur(2px);
	}
	.cta-row {
		gap: 10px;
		margin-top: 20px;
	}
	.cta-row .btn {
		width: 100%;
		justify-content: center;
	}
	blockquote {
		font-size: 18px;
		padding: 10px 12px;
	}
	/* Give the opening hero content a framed card on mobile for consistency */
	.hero .hero-panel {
		/*background: linear-gradient(180deg, rgba(248, 246, 251, 0.12), rgba(248, 246, 251, 0.06));
		border: 1px solid rgba(255, 255, 255, 0.18);*/
		border-radius: 18px;
		padding: 22px 18px;
		margin-top: 10px;
		background-clip: padding-box;
		position: relative;
		z-index: 1;
	}
	.hero .hero-panel .eyebrow {
		opacity: 1;
		color: #ffffff;
	}
	.hero .hero-panel h1 {
		color: #f8f6fb;
		opacity: 0.98;
		margin-top: 10px;
	}
	.hero .hero-panel .cta-row {
		display: flex !important;
		flex-wrap: wrap;
		margin-top: 18px;
		visibility: visible;
	}
	.hero .hero-panel .cta-row .btn {
		display: inline-flex;
	}
	.services-table th,
	.services-table td {
		padding: 10px 8px;
		font-size: 14px;
	}
	/* Stack services table into cards on small screens */
	.table-wrap {
		overflow-x: visible;
	}
	.services-table {
		display: block;
		width: 100%;
	}
	.services-table thead {
		display: none;
	}
	.services-table tbody {
		display: block;
	}
	.services-table tr {
		display: block;
		padding: 14px 14px;
		margin: 10px 0;
		border: 1px solid rgba(255, 255, 255, 0.12);
		border-radius: 14px;
		background: linear-gradient(180deg, rgba(248, 246, 251, 0.06), rgba(248, 246, 251, 0.03));
	}
	.services-table td {
		display: block;
		width: 100%;
	}
	.services-table td + td {
		margin-top: 8px;
	}
	.services-table td::before {
		display: block;
		font-weight: 700;
		opacity: 0.9;
		margin-bottom: 2px;
	}
	.services-table td:nth-child(1)::before {
		content: "Opportunity";
	}
	.services-table td:nth-child(2)::before {
		content: "Description";
	}
	.services-table td:nth-child(3)::before {
		content: "Value Proposition";
	}
	.about-logo {
		width: 260px;
	}
}

/* Scroll reveal animations */
.reveal {
	opacity: 0;
	transform: translateY(18px);
	filter: blur(2px);
	transition: opacity 600ms ease, transform 600ms ease, filter 600ms ease;
}
.reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
	filter: blur(0);
}

/* Disable reveal animations when body has .no-reveal (mobile UA) */
body.no-reveal .reveal {
	opacity: 1 !important;
	transform: none !important;
	filter: none !important;
	transition: none !important;
}
.reveal.fade-in {
	opacity: 0;
	transform: none;
}
.reveal.fade-in.is-visible {
	opacity: 1;
}
.reveal.scale-in {
	transform: scale(0.98);
}
.reveal.scale-in.is-visible {
	transform: scale(1);
}

/* Dynamic gradient background */
.bg-anim {
	position: fixed;
	inset: 0;
	z-index: 0;
	overflow: hidden;
	background: radial-gradient(900px 500px at 10% 20%, rgba(81, 27, 139, 0.28), transparent 60%), radial-gradient(1200px 600px at 90% -10%, rgba(230, 54, 128, 0.22), transparent 60%), var(--graphite);
	pointer-events: none;
}

/* Keep static background visible; JS disables motion on mobile UA */
.bg-anim .blob {
	position: absolute;
	width: 93vmax;
	height: 93vmax;
	border-radius: 50%;
	filter: blur(18px);
	opacity: 0.28;
	will-change: transform, filter, border-radius;
}
.bg-anim .blob {
	display: none;
}
.bg-anim .liquid {
	position: absolute;
	inset: -10%;
	background: radial-gradient(closest-side at var(--cx1, 50%) var(--cy1, 50%), rgba(81, 27, 139, 0.9) 0%, rgba(81, 27, 139, 0.28) 48%, transparent 58%), radial-gradient(farthest-side at var(--cx2, 60%) var(--cy2, 40%), rgba(230, 54, 128, 0.85) 0%, rgba(230, 54, 128, 0.22) 50%, transparent 70%), var(--graphite);
	filter: url(#liquidDistort);
	opacity: 0.9;
	transform: translateZ(0);
}
.bg-anim .sheen {
	position: absolute;
	inset: -10%;
	background: radial-gradient(110% 70% at var(--sx, 50%) var(--sy, 50%), rgba(255, 255, 255, 0.12), transparent 55%);
	filter: url(#liquidDistort);
	mix-blend-mode: soft-light;
	opacity: 0.35;
}
.bg-anim .blob.violet {
	background: radial-gradient(circle at 30% 30%, rgba(81, 27, 139, 0.65), rgba(81, 27, 139, 0.1));
}
.bg-anim .blob.magenta {
	background: radial-gradient(circle at 70% 70%, rgba(230, 54, 128, 0.6), rgba(230, 54, 128, 0.08));
}

@media (prefers-reduced-motion: reduce) {
	.bg-anim .blob {
		animation: none !important;
	}
}

@media (max-width: 640px) {
	nav.cta-nav {
		display: none;
	}
}
