:root {
	--color-bg: #f6f4ff;
	--color-surface: #ffffff;
	--color-border: #e4e0f5;
	--color-text: #1a1625;
	--color-muted: #6b6580;
	--color-accent: #7c3aed;
	--color-accent-hover: #6d28d9;
	--color-plum: #1a1625;
	--color-selection-bg: rgba(124, 58, 237, 0.18);
	--color-selection-text: #1a1625;
}

body {
	background-color: var(--color-bg);
	background-image:
		radial-gradient(ellipse 80% 50% at 10% -10%, rgba(124, 58, 237, 0.08), transparent),
		radial-gradient(ellipse 60% 40% at 90% 0%, rgba(56, 189, 248, 0.07), transparent);
}

::selection {
	background-color: var(--color-selection-bg);
	color: var(--color-selection-text);
}

/* Floating header shell */
.aurora-header-shell {
	position: sticky;
	top: 0;
	z-index: 40;
	padding: 0.85rem 1rem 0;
}

@media (min-width: 768px) {
	.aurora-header-shell {
		padding: 1rem 1.5rem 0;
	}
}

.site-header {
	background: rgba(255, 255, 255, 0.82);
	backdrop-filter: blur(16px);
	border: 1px solid rgba(255, 255, 255, 0.9);
	border-radius: 999px;
	box-shadow:
		0 4px 24px rgba(26, 22, 37, 0.06),
		0 0 0 1px rgba(124, 58, 237, 0.04);
}

.site-header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	padding: 0.55rem 0.85rem 0.55rem 1rem;
}

@media (min-width: 768px) {
	.site-header-inner {
		padding: 0.6rem 1rem 0.6rem 1.25rem;
	}
}

.site-header-brand img {
	border-radius: 999px;
	border: 2px solid rgba(124, 58, 237, 0.15);
}

.site-header-brand .brand-name {
	color: var(--color-plum);
	font-weight: 700;
}

.site-header-brand .brand-subtitle {
	color: var(--color-muted);
}

.site-nav-desktop {
	display: none;
	align-items: center;
	gap: 0.1rem;
}

@media (min-width: 1100px) {
	.site-nav-desktop {
		display: flex;
	}
}

.site-nav-link {
	display: inline-block;
	padding: 0.45rem 0.7rem;
	font-size: 0.8125rem;
	font-weight: 600;
	color: var(--color-muted);
	border-radius: 999px;
	transition: color 0.15s ease, background-color 0.15s ease;
}

.site-nav-link:hover {
	color: var(--color-accent);
	background: rgba(124, 58, 237, 0.07);
}

.site-nav-link.is-active {
	color: var(--color-accent);
	background: rgba(124, 58, 237, 0.1);
}

.header-contact-pill {
	display: none;
	align-items: center;
	justify-content: center;
	width: 2.25rem;
	height: 2.25rem;
	border-radius: 999px;
	color: var(--color-muted);
	background: rgba(124, 58, 237, 0.06);
	border: 1px solid rgba(124, 58, 237, 0.1);
	transition: color 0.15s ease, background-color 0.15s ease, border-color 0.15s ease;
}

.header-contact-pill:hover {
	color: var(--color-accent);
	background: rgba(124, 58, 237, 0.12);
	border-color: rgba(124, 58, 237, 0.2);
}

@media (min-width: 768px) {
	.header-contact-pill {
		display: inline-flex;
	}
}

.header-contact-pill svg {
	width: 1rem;
	height: 1rem;
}

.lang-switch-select {
	appearance: none;
	min-width: 5.75rem;
	padding: 0.4rem 1.65rem 0.4rem 0.65rem;
	font-size: 0.75rem;
	font-weight: 600;
	color: var(--color-text);
	background-color: rgba(124, 58, 237, 0.05);
	border: 1px solid rgba(124, 58, 237, 0.12);
	border-radius: 999px;
	cursor: pointer;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b6580' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 0.55rem center;
	background-size: 0.7rem;
}

.site-nav-toggle {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2.35rem;
	height: 2.35rem;
	border-radius: 999px;
	color: var(--color-plum);
	background: rgba(124, 58, 237, 0.06);
	border: 1px solid rgba(124, 58, 237, 0.1);
	cursor: pointer;
}

@media (min-width: 1100px) {
	.site-nav-toggle {
		display: none;
	}
}

.site-nav-toggle-icon--close {
	display: none;
}

.site-nav-toggle.is-open .site-nav-toggle-icon--open {
	display: none;
}

.site-nav-toggle.is-open .site-nav-toggle-icon--close {
	display: block;
}

.site-nav-modal {
	position: fixed;
	inset: 0;
	z-index: 50;
	pointer-events: none;
}

.site-nav-modal.is-open {
	pointer-events: auto;
}

.site-nav-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(26, 22, 37, 0.4);
	backdrop-filter: blur(4px);
	opacity: 0;
	transition: opacity 0.25s ease;
}

.site-nav-modal.is-open .site-nav-backdrop {
	opacity: 1;
}

.site-nav-panel {
	position: absolute;
	top: 1rem;
	right: 1rem;
	left: 1rem;
	max-width: 22rem;
	margin-left: auto;
	background: var(--color-surface);
	border-radius: 1.25rem;
	box-shadow: 0 24px 60px rgba(26, 22, 37, 0.15);
	transform: translateY(-1rem);
	opacity: 0;
	transition: transform 0.25s ease, opacity 0.25s ease;
	display: flex;
	flex-direction: column;
	max-height: calc(100vh - 2rem);
	overflow: hidden;
}

.site-nav-modal.is-open .site-nav-panel {
	transform: translateY(0);
	opacity: 1;
}

.site-nav-panel-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1rem 1.25rem;
	border-bottom: 1px solid var(--color-border);
}

.site-nav-panel-title {
	font-family: "Instrument Serif", Georgia, serif;
	font-size: 1.2rem;
	color: var(--color-plum);
}

.site-nav-close {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2.25rem;
	height: 2.25rem;
	border-radius: 999px;
	color: var(--color-muted);
	background: rgba(124, 58, 237, 0.06);
	border: none;
	cursor: pointer;
}

.site-nav-mobile {
	list-style: none;
	padding: 0.75rem;
	flex: 1;
	overflow-y: auto;
}

.site-nav-mobile-link {
	display: block;
	padding: 0.8rem 1rem;
	font-weight: 600;
	color: var(--color-text);
	border-radius: 0.75rem;
}

.site-nav-mobile-link:hover,
.site-nav-mobile-link.is-active {
	background: rgba(124, 58, 237, 0.08);
	color: var(--color-accent);
}

body.site-nav-open {
	overflow: hidden;
}

/* Footer */
.site-footer {
	background: var(--color-surface);
	border-top: 1px solid var(--color-border);
	color: var(--color-muted);
}

.footer-link {
	color: var(--color-muted);
	transition: color 0.15s ease;
}

.footer-link:hover {
	color: var(--color-accent);
}

.footer-social-link {
	display: inline-flex;
	padding: 0.35rem 0.85rem;
	font-size: 0.75rem;
	font-weight: 600;
	border: 1px solid var(--color-border);
	border-radius: 999px;
	color: var(--color-muted);
	transition: border-color 0.15s ease, color 0.15s ease;
}

.footer-social-link:hover {
	border-color: var(--color-accent);
	color: var(--color-accent);
}

.site-footer .footer-brand {
	font-family: "Instrument Serif", Georgia, serif;
	color: var(--color-plum);
}

/* Buttons */
.btn-primary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.85rem 1.75rem;
	font-size: 0.875rem;
	font-weight: 700;
	color: white;
	background: linear-gradient(135deg, var(--color-accent), #9333ea);
	border-radius: 999px;
	box-shadow: 0 8px 24px rgba(124, 58, 237, 0.28);
	transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 32px rgba(124, 58, 237, 0.35);
}

.btn-primary--white {
	background: white;
	color: var(--color-accent);
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.btn-primary--white:hover {
	background: #faf5ff;
	color: var(--color-accent-hover);
}

.btn-primary-sm {
	display: inline-flex;
	align-items: center;
	padding: 0.5rem 1.1rem;
	font-size: 0.75rem;
	font-weight: 700;
	color: white;
	background: linear-gradient(135deg, var(--color-accent), #9333ea);
	border-radius: 999px;
	transition: opacity 0.15s ease;
}

.btn-primary-sm:hover {
	opacity: 0.92;
}

.btn-secondary {
	display: inline-flex;
	align-items: center;
	padding: 0.85rem 1.75rem;
	font-size: 0.875rem;
	font-weight: 700;
	color: var(--color-accent);
	background: rgba(124, 58, 237, 0.08);
	border: 1px solid rgba(124, 58, 237, 0.2);
	border-radius: 999px;
	transition: background-color 0.15s ease;
}

.btn-secondary:hover {
	background: rgba(124, 58, 237, 0.14);
}

.btn-ghost {
	display: inline-flex;
	align-items: center;
	padding: 0.85rem 1.75rem;
	font-size: 0.875rem;
	font-weight: 700;
	color: var(--color-plum);
	background: rgba(255, 255, 255, 0.7);
	border: 1px solid var(--color-border);
	border-radius: 999px;
	backdrop-filter: blur(8px);
	transition: border-color 0.15s ease, background-color 0.15s ease;
}

.btn-ghost:hover {
	border-color: rgba(124, 58, 237, 0.35);
	background: white;
}

/* Hero */
.hero-section {
	position: relative;
	overflow: hidden;
	padding: 2rem 0 4rem;
}

@media (min-width: 768px) {
	.hero-section {
		padding: 3rem 0 5rem;
	}
}

.hero-bloom {
	position: absolute;
	border-radius: 999px;
	filter: blur(60px);
	pointer-events: none;
}

.hero-bloom--a {
	width: 28rem;
	height: 28rem;
	top: -6rem;
	right: -4rem;
	background: rgba(124, 58, 237, 0.22);
}

.hero-bloom--b {
	width: 22rem;
	height: 22rem;
	bottom: -4rem;
	left: -6rem;
	background: rgba(56, 189, 248, 0.18);
}

.hero-inner {
	position: relative;
	z-index: 1;
	text-align: center;
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	padding: 0.4rem 1rem;
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--color-accent);
	background: rgba(124, 58, 237, 0.08);
	border: 1px solid rgba(124, 58, 237, 0.15);
	border-radius: 999px;
}

.hero-lead {
	color: var(--color-muted);
	line-height: 1.65;
}

.page-hero {
	position: relative;
	overflow: hidden;
	padding: 2rem 0 3rem;
	background: transparent;
}

.page-hero-bloom {
	position: absolute;
	border-radius: 999px;
	filter: blur(70px);
	pointer-events: none;
}

.page-hero-bloom--a {
	width: 20rem;
	height: 20rem;
	top: -4rem;
	right: 10%;
	background: rgba(124, 58, 237, 0.15);
}

.page-hero-bloom--b {
	width: 16rem;
	height: 16rem;
	bottom: -3rem;
	left: 5%;
	background: rgba(56, 189, 248, 0.12);
}

.page-hero-inner {
	position: relative;
	z-index: 1;
}

/* Section typography */
.section-kicker {
	font-size: 0.6875rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.16em;
	color: var(--color-accent);
	margin-bottom: 0.65rem;
}

.section-kicker--on-dark {
	color: rgba(255, 255, 255, 0.75);
}

.section-title {
	font-family: "Instrument Serif", Georgia, serif;
	font-size: clamp(2rem, 4.5vw, 2.85rem);
	font-weight: 400;
	color: var(--color-plum);
	line-height: 1.12;
}

.section-band {
	background: rgba(255, 255, 255, 0.55);
	border-top: 1px solid rgba(124, 58, 237, 0.06);
	border-bottom: 1px solid rgba(124, 58, 237, 0.06);
	backdrop-filter: blur(8px);
}

/* Service cards */
.services-bento {
	display: grid;
	gap: 1rem;
}

@media (min-width: 768px) {
	.services-bento {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

.service-card {
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: 1.25rem;
	padding: 1.5rem;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.service-card:hover {
	border-color: rgba(124, 58, 237, 0.25);
	box-shadow: 0 16px 40px rgba(124, 58, 237, 0.1);
	transform: translateY(-3px);
}

.service-card--featured {
	grid-column: 1 / -1;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	background: linear-gradient(135deg, rgba(124, 58, 237, 0.06), rgba(56, 189, 248, 0.05));
}

@media (min-width: 768px) {
	.service-card--featured {
		flex-direction: row;
		align-items: center;
		padding: 2rem;
	}
}

.service-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 3rem;
	height: 3rem;
	border-radius: 1rem;
	background: rgba(124, 58, 237, 0.1);
	color: var(--color-accent);
	flex-shrink: 0;
}

/* Stats */
.stats-section {
	background: linear-gradient(135deg, var(--color-accent), #5b21b6);
	position: relative;
	overflow: hidden;
}

.stats-section::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.12), transparent 50%),
		radial-gradient(circle at 80% 30%, rgba(56, 189, 248, 0.2), transparent 45%);
	pointer-events: none;
}

.stats-intro {
	color: rgba(255, 255, 255, 0.8);
	position: relative;
}

.stat-value-on-dark {
	font-family: "Instrument Serif", Georgia, serif;
	color: white;
	position: relative;
}

.stat-label-on-dark {
	color: rgba(255, 255, 255, 0.72);
	position: relative;
}

/* Why */
.why-card {
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	border-left: 3px solid var(--color-accent);
	border-radius: 0 1rem 1rem 0;
	padding: 1.35rem 1.5rem;
}

/* About highlight */
.about-spotlight {
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: 1.5rem;
	padding: 2rem;
	box-shadow: 0 20px 50px rgba(124, 58, 237, 0.08);
}

.about-spotlight .about-role {
	color: var(--color-accent);
	font-weight: 600;
	font-size: 0.8125rem;
}

/* Process */
.process-steps-row {
	display: flex;
	gap: 1rem;
	overflow-x: auto;
	padding-bottom: 0.5rem;
	scroll-snap-type: x mandatory;
}

.process-step-card {
	flex: 0 0 min(100%, 18rem);
	scroll-snap-align: start;
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: 1.25rem;
	padding: 1.5rem;
}

.process-step-no {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.25rem;
	height: 2.25rem;
	border-radius: 999px;
	background: linear-gradient(135deg, var(--color-accent), #9333ea);
	color: white;
	font-size: 0.75rem;
	font-weight: 700;
	margin-bottom: 0.85rem;
}

.process-step-phase {
	font-size: 0.6875rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--color-accent);
}

.process-step-title {
	font-family: "Instrument Serif", Georgia, serif;
	font-size: 1.15rem;
	color: var(--color-plum);
	margin-top: 0.25rem;
}

.process-step-desc {
	font-size: 0.9375rem;
	color: var(--color-muted);
	line-height: 1.6;
	margin-top: 0.75rem;
}

/* Testimonials */
.testimonials-slider-viewport {
	overflow: hidden;
}

.testimonials-slider-track {
	display: flex;
	transition: transform 0.45s ease;
}

.testimonials-slider-slide {
	flex: 0 0 100%;
	min-width: 0;
	padding: 0 0.35rem;
}

@media (min-width: 768px) {
	.testimonials-slider-slide {
		flex: 0 0 50%;
	}
}

.testimonials-slider-controls {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	margin-top: 1.5rem;
}

.testimonials-slider-controls.is-hidden {
	display: none;
}

.testimonials-slider-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 999px;
	border: 1px solid var(--color-border);
	background: var(--color-surface);
	color: var(--color-plum);
	cursor: pointer;
}

.testimonials-slider-btn:hover:not(:disabled) {
	border-color: var(--color-accent);
	color: var(--color-accent);
}

.testimonials-slider-btn:disabled {
	opacity: 0.35;
	cursor: not-allowed;
}

.testimonials-slider-dots {
	display: flex;
	gap: 0.4rem;
}

.testimonials-slider-dot {
	width: 0.5rem;
	height: 0.5rem;
	border-radius: 999px;
	border: none;
	background: var(--color-border);
	cursor: pointer;
}

.testimonials-slider-dot.is-active {
	background: var(--color-accent);
	transform: scale(1.15);
}

.testimonial-card {
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: 1.25rem;
	padding: 1.75rem;
	height: 100%;
	box-shadow: 0 8px 24px rgba(124, 58, 237, 0.05);
}

/* Team */
.team-card,
.team-card-featured {
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: 1.25rem;
	padding: 2rem;
}

.team-card-featured {
	border-color: rgba(124, 58, 237, 0.25);
	box-shadow: 0 12px 32px rgba(124, 58, 237, 0.08);
}

.team-avatar {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 4.5rem;
	height: 4.5rem;
	border-radius: 999px;
	background: linear-gradient(135deg, rgba(124, 58, 237, 0.12), rgba(56, 189, 248, 0.1));
	color: var(--color-accent);
	font-family: "Instrument Serif", Georgia, serif;
}

/* Contact */
.contact-card {
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: 1.25rem;
	padding: 2rem;
}

.social-link {
	display: inline-flex;
	padding: 0.4rem 0.9rem;
	font-size: 0.8125rem;
	font-weight: 600;
	border: 1px solid var(--color-border);
	border-radius: 999px;
	color: var(--color-text);
}

.social-link:hover {
	border-color: var(--color-accent);
	color: var(--color-accent);
}

/* CTA */
.cta-section {
	position: relative;
}

.cta-bloom {
	position: absolute;
	inset: 10% 15%;
	border-radius: 999px;
	background: rgba(124, 58, 237, 0.12);
	filter: blur(60px);
	pointer-events: none;
}

.cta-panel {
	background: linear-gradient(135deg, var(--color-accent), #5b21b6);
	border-radius: 1.5rem;
	padding: 2.5rem 2rem;
	text-align: center;
	overflow: hidden;
}

@media (min-width: 768px) {
	.cta-panel {
		padding: 3rem;
	}
}

.cta-phone-link {
	display: inline-block;
	font-family: "Instrument Serif", Georgia, serif;
	font-size: 1.75rem;
	color: white;
	transition: opacity 0.15s ease;
}

.cta-phone-link:hover {
	opacity: 0.85;
}

.category-pill {
	display: inline-flex;
	padding: 0.4rem 0.9rem;
	font-size: 0.75rem;
	font-weight: 600;
	border: 1px solid var(--color-border);
	border-radius: 999px;
	color: var(--color-muted);
	background: var(--color-surface);
}

.category-pill.is-active {
	background: var(--color-accent);
	border-color: var(--color-accent);
	color: white;
}

.article-card {
	border-radius: 1.25rem;
}

#article-list > li {
	list-style: none;
}

.prose-custom p + p {
	margin-top: 1rem;
}

.animate-in {
	opacity: 1;
	transform: none;
}

html.js .animate-in {
	opacity: 0;
	transform: translateY(18px);
	transition: opacity 0.55s ease, transform 0.55s ease;
}

html.js .animate-in.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.bg-surface {
	background-color: var(--color-surface);
}

.line-clamp-2,
.line-clamp-3 {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.line-clamp-2 {
	-webkit-line-clamp: 2;
}

.line-clamp-3 {
	-webkit-line-clamp: 3;
}

.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.sr-only:focus {
	position: static;
	width: auto;
	height: auto;
	margin: 0;
	overflow: visible;
	clip: auto;
	white-space: normal;
}
