/* ==========================================================================
   AryaVerse theme — main stylesheet
   ========================================================================== */

:root {
	--background: #07070c;
	--surface: #101019;
	--surface-2: #17172433;
	--border: #23233a;
	--foreground: #f3f3f8;
	--muted: #9b9bb4;
	--primary: #845cff;
	--primary-hover: #9472ff;
	--accent: #ffd300;
	--radius: 1.25rem;
	--maxw: 1280px;
}

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

html {
	/* Removed scroll-behavior: smooth to prevent conflict with Lenis JS */
}

body {
	margin: 0;
	background: var(--background);
	color: var(--foreground);
	font-family: "Urbanist", system-ui, -apple-system, Arial, sans-serif;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

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

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

h1, h2, h3, h4 {
	line-height: 1.12;
	margin: 0;
	letter-spacing: -0.02em;
}

p {
	margin: 0;
}

.container-page {
	width: 100%;
	max-width: var(--maxw);
	margin-inline: auto;
	padding-inline: 1.5rem;
}

.container-narrow {
	max-width: 46rem;
}

.section {
	padding-block: 4rem;
}

.muted {
	color: var(--muted);
}

.screen-reader-text {
	position: absolute !important;
	clip: rect(1px, 1px, 1px, 1px);
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.skip-link {
	position: absolute;
	left: -9999px;
	z-index: 100;
	background: var(--primary);
	color: #fff;
	padding: 0.5rem 1rem;
	border-radius: 0 0 0.5rem 0;
}
.skip-link:focus {
	left: 0;
	top: 0;
}

/* ----------------------------- Backgrounds ------------------------------- */

.mesh-bg {
	position: absolute;
	inset: 0;
	z-index: -2;
	pointer-events: none;
	background:
		radial-gradient(40rem 30rem at 15% -10%, rgba(132, 92, 255, 0.28), transparent 60%),
		radial-gradient(35rem 28rem at 90% 0%, rgba(255, 211, 0, 0.16), transparent 55%),
		radial-gradient(30rem 30rem at 60% 30%, rgba(255, 126, 182, 0.10), transparent 60%);
}

.grain {
	position: fixed;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	opacity: 0.035;
	mix-blend-mode: overlay;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.glow {
	position: absolute;
	left: 50%;
	top: 0;
	width: 60%;
	height: 16rem;
	transform: translateX(-50%);
	border-radius: 9999px;
	background: rgba(132, 92, 255, 0.3);
	filter: blur(90px);
	pointer-events: none;
	z-index: -1;
}

/* ----------------------------- Typography helpers ------------------------ */

.gradient-text {
	background: linear-gradient(110deg, #c4b3ff 0%, var(--primary) 30%, var(--accent) 65%, #ff7eb6 100%);
	background-size: 200% auto;
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
	animation: shine 6s linear infinite;
}

@keyframes shine {
	to { background-position: 200% center; }
}

.section-label {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.78rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--primary);
	font-weight: 700;
	margin-bottom: 0.75rem;
}

.section-title {
	font-size: clamp(2.2rem, 6vw, 4rem);
	font-weight: 600;
	letter-spacing: -0.02em;
}

.section-head { max-width: 40rem; margin-bottom: 3rem; }

.section-head-row {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 1.5rem;
	margin-bottom: 3rem;
	flex-wrap: wrap;
}
.section-lead { color: var(--muted); font-size: 1.05rem; line-height: 1.6; margin-top: 1rem; max-width: 42rem; }

.text-link {
	color: var(--primary);
	font-size: 0.9rem;
	font-weight: 600;
	white-space: nowrap;
}
.text-link:hover { text-decoration: underline; }

/* ----------------------------- Chips + buttons --------------------------- */

.chip {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	border-radius: 9999px;
	border: 1px solid var(--border);
	background: rgba(255, 255, 255, 0.03);
	padding: 0.3rem 0.85rem;
	font-size: 0.78rem;
	color: var(--muted);
}
.chip .dot {
	width: 0.5rem;
	height: 0.5rem;
	border-radius: 9999px;
	background: var(--accent);
}
.chips { display: flex; flex-wrap: wrap; gap: 0.5rem; }

.btn-primary {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	border-radius: 9999px;
	padding: 0.8rem 1.6rem;
	font-weight: 700;
	color: #07070c;
	border: none;
	cursor: pointer;
	background: var(--accent);
	box-shadow: 0 10px 30px -12px rgba(255, 211, 0, 0.75);
	transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}
.btn-primary:hover {
	transform: translateY(-2px);
	filter: brightness(1.06);
	box-shadow: 0 16px 44px -12px rgba(255, 211, 0, 0.95);
}

.btn-ghost {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	border-radius: 9999px;
	padding: 0.8rem 1.6rem;
	font-weight: 500;
	border: 1px solid var(--border);
	background: rgba(255, 255, 255, 0.02);
	transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.btn-ghost:hover {
	transform: translateY(-2px);
	background: rgba(255, 255, 255, 0.05);
	border-color: rgba(255, 255, 255, 0.2);
}

/* ----------------------------- Glass cards ------------------------------- */

.glass {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
	border: 1px solid rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(12px);
	border-radius: var(--radius);
	transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.glass:hover {
	transform: translateY(-4px);
	border-color: rgba(132, 92, 255, 0.5);
	box-shadow: 0 20px 60px -25px rgba(132, 92, 255, 0.55);
}

.card-spot { position: relative; overflow: hidden; }
.card-spot::before {
	content: "";
	position: absolute;
	inset: -1px;
	background: radial-gradient(20rem 20rem at var(--mx, 50%) var(--my, 0%), rgba(132, 92, 255, 0.18), transparent 40%);
	opacity: 0;
	transition: opacity 0.3s ease;
	pointer-events: none;
}
.card-spot:hover::before { opacity: 1; }

/* ----------------------------- Reveal ------------------------------------ */

.reveal {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
	will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
	.reveal { opacity: 1; transform: none; transition: none; }
	.gradient-text, .float { animation: none; }
	html { scroll-behavior: auto; }
}

.float { animation: float 6s ease-in-out infinite; }
@keyframes float {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-12px); }
}

/* ==========================================================================
   Top announcement bar
   ========================================================================== */

.topbar {
	position: relative;
	z-index: 60;
	background: linear-gradient(90deg, var(--primary), var(--accent));
	color: #07070c;
	font-size: 0.85rem;
	font-weight: 600;
}
.topbar.is-hidden { display: none; }
.topbar__inner {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
	min-height: 2.5rem;
	padding-block: 0.4rem;
	padding-right: 2rem;
	text-align: center;
}
.topbar__msg { display: inline-flex; align-items: center; flex-wrap: wrap; justify-content: center; gap: 0.5rem 0.65rem; }
.topbar__text { margin: 0; }
.topbar__badge {
	background: rgba(7, 7, 12, 0.16);
	border: 1px solid rgba(7, 7, 12, 0.28);
	padding: 0.1rem 0.55rem;
	border-radius: 9999px;
	font-size: 0.7rem;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}
.topbar__link {
	font-weight: 500;
	text-decoration: underline;
	text-underline-offset: 2px;
	white-space: nowrap;
	transition: opacity 0.2s ease;
}
.topbar__link:hover { opacity: 0.75; }
.topbar__close {
	position: absolute;
	right: 0.25rem;
	top: 50%;
	transform: translateY(-50%);
	background: none;
	border: none;
	color: #07070c;
	font-size: 1.35rem;
	line-height: 1;
	cursor: pointer;
	padding: 0.15rem 0.5rem;
	opacity: 0.65;
	transition: opacity 0.2s ease;
}
.topbar__close:hover { opacity: 1; }

@media (max-width: 600px) {
	.topbar { font-size: 0.78rem; }
	.topbar__badge { display: none; }
}

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	transition: background 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
	border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
	background: rgba(7, 7, 12, 0.78);
	backdrop-filter: blur(18px) saturate(140%);
	border-bottom-color: rgba(255, 255, 255, 0.08);
	box-shadow: 0 12px 40px -24px rgba(0, 0, 0, 0.9);
}
.site-header__inner {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	height: 4.75rem;
	gap: 1rem;
}
.site-branding { justify-self: start; display: flex; align-items: center; height: 100%; }
.site-branding .brand { display: inline-flex; align-items: center; line-height: 1; }
.site-branding .site-logo-img,
.site-branding .custom-logo { display: block; vertical-align: middle; }
.site-nav { justify-self: center; }

.brand { display: inline-flex; align-items: center; gap: 0.65rem; font-weight: 700; }
.brand-mark {
	display: grid;
	place-items: center;
	width: 2rem;
	height: 2rem;
	border-radius: 0.6rem;
	background: linear-gradient(135deg, var(--primary), var(--accent));
	color: #fff;
	font-weight: 500;
	box-shadow: 0 6px 20px -6px rgba(132, 92, 255, 0.6);
}
.brand-name { font-size: 1rem; letter-spacing: -0.02em; }
.custom-logo { border-radius: 0.5rem; }
.custom-logo-link { display: inline-flex; }
.site-logo-img { display: block; height: 32px; width: auto; object-fit: contain; }

.site-nav .nav-menu {
	display: flex;
	align-items: center;
	gap: 2.25rem;
	list-style: none;
	margin: 0;
	padding: 0;
}
.site-nav .nav-menu li { position: relative; }
.site-nav .nav-menu a {
	position: relative;
	display: inline-block;
	padding: 0.35rem 0;
	font-size: 0.95rem;
	font-weight: 500;
	color: var(--muted);
	transition: color 0.25s ease;
}
/* animated gradient underline */
.site-nav .nav-menu a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -2px;
	height: 2px;
	width: 100%;
	border-radius: 2px;
	background: linear-gradient(90deg, var(--primary), var(--accent));
	transform: scaleX(0);
	transform-origin: right;
	transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.site-nav .nav-menu a:hover { color: var(--foreground); }
.site-nav .nav-menu a:hover::after {
	transform: scaleX(1);
	transform-origin: left;
}
.site-nav .nav-menu .current-menu-item > a,
.site-nav .nav-menu .current_page_item > a,
.site-nav .nav-menu .current-menu-ancestor > a {
	color: var(--foreground);
}
.site-nav .nav-menu .current-menu-item > a::after,
.site-nav .nav-menu .current_page_item > a::after,
.site-nav .nav-menu .current-menu-ancestor > a::after {
	transform: scaleX(1);
	transform-origin: left;
}

/* dropdown submenus */
.site-nav .sub-menu {
	position: absolute;
	top: calc(100% + 0.5rem);
	left: 0;
	min-width: 12rem;
	list-style: none;
	margin: 0;
	padding: 0.4rem;
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: 0.9rem;
	opacity: 0;
	visibility: hidden;
	transform: translateY(6px);
	transition: all 0.2s ease;
	box-shadow: 0 20px 50px -20px rgba(0, 0, 0, 0.7);
}
.site-nav .nav-menu li:hover > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
.site-nav .nav-caret { font-size: 0.6em; opacity: 0.65; margin-left: 0.15rem; vertical-align: middle; }
.site-nav .sub-menu a {
	display: block;
	padding: 0.5rem 0.85rem;
	border-radius: 8px;
	font-size: 0.9rem;
	font-weight: 500;
	color: var(--muted);
	white-space: nowrap;
}
.site-nav .sub-menu a::after { display: none; }
.site-nav .sub-menu a:hover { color: var(--foreground); background: rgba(255, 255, 255, 0.06); }

/* Mobile sub-items */
.mobile-sub a { padding-left: 1.5rem !important; font-size: 0.88rem; color: var(--muted); }
.mobile-sub a::before { content: "– "; opacity: 0.5; }
.mobile-cat {
	padding: 0.6rem 0.75rem 0.25rem;
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--accent);
	opacity: 0.85;
}

.site-nav .nav-caret { display: inline-flex; align-items: center; opacity: 0.7; }
.site-nav .nav-caret svg { transition: transform 0.25s ease; }
.site-nav .has-mega:hover .nav-caret svg { transform: rotate(180deg); }

/* ==========================================================================
   Mega menu
   ========================================================================== */

.site-nav .has-mega { position: static; }

.mega-menu {
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%) translateY(10px);
	width: min(1280px, calc(100vw - 2rem));
	padding: 1.4rem;
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: 18px;
	box-shadow: 0 40px 90px -35px rgba(0, 0, 0, 0.85);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
	z-index: 60;
}
.site-nav .has-mega:hover > .mega-menu,
.site-nav .has-mega:focus-within > .mega-menu {
	opacity: 1;
	visibility: visible;
	transform: translateX(-50%) translateY(0);
}

.mega-grid { display: grid; grid-template-columns: repeat(4, 1fr) 1.05fr; gap: 1.25rem; align-items: start; }
.mega-col-title {
	font-size: 0.72rem;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	color: var(--muted);
	font-weight: 700;
	margin: 0 0 0.5rem 0.55rem;
}

/* High specificity to override the base nav link (.site-nav .nav-menu a) */
.site-nav .mega-menu .mega-link {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	padding: 0.5rem 0.55rem;
	border-radius: 8px;
	font-size: 0.92rem;
	font-weight: 500;
	color: var(--muted);
	transition: background 0.2s ease, color 0.2s ease;
}
.site-nav .mega-menu .mega-link::after { display: none; }
.site-nav .mega-menu .mega-link:hover { background: rgba(255, 255, 255, 0.05); color: var(--foreground); }
.mega-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	color: #7e7e97;
	transition: color 0.2s ease;
}
.site-nav .mega-menu .mega-link:hover .mega-icon { color: var(--accent); }
.mega-link-title { line-height: 1.2; }

/* Featured image column */
.mega-feature {
	display: flex;
	flex-direction: column;
	overflow: hidden;
	border-radius: 14px;
	border: 1px solid var(--border);
	background: #12111d;
}
.mega-feature__media { position: relative; display: block; height: 158px; overflow: hidden; }
.mega-feature__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.mega-feature__media::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 55%;
	background: linear-gradient(to top, #12111d 8%, rgba(18, 17, 29, 0));
}
.mega-feature__content { padding: 0.35rem 1.3rem 1.4rem; }
.mega-feature h4 { font-size: 1.05rem; font-weight: 700; color: #fff; }
.mega-feature p { font-size: 0.82rem; line-height: 1.55; color: var(--muted); margin: 0.5rem 0 1.1rem; }
.mega-feature__btn { padding: 0.55rem 1.15rem; font-size: 0.85rem; }
.mega-feature__btn svg { transition: transform 0.2s ease; }
.mega-feature:hover .mega-feature__btn svg { transform: translateX(3px); }

@media (max-width: 1320px) {
	.mega-menu { width: calc(100vw - 2rem); }
	.mega-grid { grid-template-columns: repeat(4, 1fr); }
	.mega-feature { display: none; }
}
@media (max-width: 1000px) {
	.mega-grid { grid-template-columns: 1fr 1fr; }
}

.site-header__actions { display: flex; align-items: center; gap: 0.75rem; justify-self: end; }

.header-cta,
.mobile-cta {
	background: #ffd300;
	color: #07070c;
	box-shadow: 0 10px 30px -12px rgba(255, 211, 0, 0.7);
}
.header-cta:hover,
.mobile-cta:hover {
	box-shadow: 0 16px 44px -12px rgba(255, 211, 0, 0.95);
}
.header-cta { padding: 0.6rem 1.35rem; }
.header-cta .cta-arrow {
	display: inline-block;
	transition: transform 0.25s ease;
}
.header-cta:hover .cta-arrow { transform: translateX(4px); }

/* Outline "Call Us" button */
.call-us {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	height: 2.7rem;
	padding: 0 1.35rem;
	border-radius: 9999px;
	color: var(--foreground);
	font-weight: 600;
	font-size: 0.9rem;
	white-space: nowrap;
	transition: background 0.2s ease, transform 0.2s ease;
}
.call-us svg { color: var(--accent); flex-shrink: 0; position: relative; z-index: 1; }
.call-us:hover {
	background: rgba(255, 255, 255, 0.08);
	transform: translateY(-2px);
}

.nav-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	width: 2.5rem;
	height: 2.5rem;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--border);
	background: rgba(23, 23, 36, 0.5);
	border-radius: 0.6rem;
	cursor: pointer;
}
.nav-toggle span {
	width: 18px;
	height: 2px;
	background: var(--foreground);
	transition: transform 0.3s ease, opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
	display: none;
	flex-direction: column;
	gap: 0.25rem;
	padding: 1rem 1.5rem 1.5rem;
	background: rgba(7, 7, 12, 0.97);
	border-bottom: 1px solid var(--border);
	backdrop-filter: blur(16px);
}
.mobile-menu.is-open { display: flex; }
.mobile-menu ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.25rem; }
.mobile-menu a {
	display: block;
	padding: 0.7rem 0.75rem;
	border-radius: 0.6rem;
	color: var(--muted);
}
.mobile-menu a:hover { background: var(--surface); color: var(--foreground); }
.mobile-cta { margin-top: 0.75rem; justify-content: center; }
.mobile-call { margin-top: 0.75rem; justify-content: center; }

/* ==========================================================================
   Hero
   ========================================================================== */

.hero { position: relative; overflow: hidden; }
.hero__inner { text-align: center; padding-block: 5rem 3rem; }
.hero__title {
	font-size: clamp(2.4rem, 6vw, 4.5rem);
	font-weight: 500;
	max-width: 60rem;
	margin: 1.75rem auto 0;
}
.hero__subtitle {
	max-width: 40rem;
	margin: 1.5rem auto 0;
	color: var(--muted);
	font-size: 1.15rem;
}
.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	justify-content: center;
	margin-top: 2.25rem;
}

.hero__mockup { position: relative; max-width: 62rem; margin: 4rem auto 0; }
.browser {
	overflow: hidden;
	border-radius: var(--radius);
	border: 1px solid var(--border);
	background: rgba(16, 16, 25, 0.8);
	box-shadow: 0 40px 80px -40px rgba(0, 0, 0, 0.8);
	backdrop-filter: blur(10px);
}
.browser__bar {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.85rem 1rem;
	border-bottom: 1px solid var(--border);
	background: rgba(7, 7, 12, 0.6);
}
.browser__bar .dot { width: 0.75rem; height: 0.75rem; border-radius: 9999px; background: #444; }
.browser__bar .dot.red { background: #ff5f57; }
.browser__bar .dot.yellow { background: #febc2e; }
.browser__bar .dot.green { background: #28c840; }
.browser__url {
	margin-left: 0.75rem;
	font-size: 0.75rem;
	color: var(--muted);
	background: var(--surface);
	padding: 0.25rem 0.75rem;
	border-radius: 0.4rem;
}
.browser__body { padding: 1.5rem; }
.browser__hero {
	height: 12rem;
	border-radius: 0.9rem;
	background: linear-gradient(135deg, rgba(132, 92, 255, 0.4), rgba(16, 16, 25, 0.6), rgba(255, 211, 0, 0.25));
}
.browser__row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; margin-top: 1rem; }
.browser__row span { height: 5rem; border-radius: 0.6rem; background: var(--surface); }

/* ==========================================================================
   Marquee (optional, used by helpers)
   ========================================================================== */

.marquee-mask { overflow: hidden; -webkit-mask-image: linear-gradient(to right, transparent, #000 12%, #000 88%, transparent); mask-image: linear-gradient(to right, transparent, #000 12%, #000 88%, transparent); }
.marquee { display: flex; gap: 4rem; width: max-content; animation: marquee 28s linear infinite; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ==========================================================================
   Hero banner
   ========================================================================== */

.hero { position: relative; overflow: hidden; }
.hero__glow { position: absolute; border-radius: 9999px; filter: blur(90px); pointer-events: none; z-index: -1; }
.hero__glow--1 { width: 38rem; height: 26rem; top: -8rem; left: -8rem; background: rgba(132, 92, 255, 0.28); }
.hero__glow--2 { width: 34rem; height: 24rem; top: 1rem; right: -10rem; background: rgba(255, 211, 0, 0.15); }

.hero__inner {
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: 3.5rem;
	align-items: center;
	padding-block: 4rem 5.5rem;
}

.hero__badge {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	border: 1px solid var(--border);
	background: rgba(255, 255, 255, 0.03);
	padding: 0.4rem 0.95rem;
	border-radius: 9999px;
	font-size: 0.82rem;
	font-weight: 500;
	color: var(--muted);
}
.pulse-dot { position: relative; width: 0.5rem; height: 0.5rem; border-radius: 9999px; background: var(--accent); }
.pulse-dot::after {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: 9999px;
	background: var(--accent);
	animation: pulsering 2.2s ease-out infinite;
}
@keyframes pulsering { 0% { transform: scale(1); opacity: 0.6; } 70%, 100% { transform: scale(3.2); opacity: 0; } }

.hero__title {
	margin-top: 1.5rem;
	font-size: clamp(2.5rem, 5.4vw, 4.4rem);
	font-weight: 500;
	line-height: 1.05;
	letter-spacing: -0.02em;
	max-width: 16ch;
}
.hero__sub { margin-top: 1.4rem; font-size: 1.12rem; line-height: 1.7; color: var(--muted); max-width: 34rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.1rem; }
.hero__actions .btn-primary svg { transition: transform 0.2s ease; }
.hero__actions .btn-primary:hover svg { transform: translateX(4px); }

.hero__trust { display: flex; align-items: center; gap: 1rem; margin-top: 2.5rem; }
.hero__avatars { display: flex; }
.hero__avatars .av {
	width: 2.3rem;
	height: 2.3rem;
	border-radius: 9999px;
	display: grid;
	place-items: center;
	font-size: 0.8rem;
	font-weight: 500;
	color: #07070c;
	border: 2px solid var(--background);
	margin-left: -0.65rem;
}
.hero__avatars .av:first-child { margin-left: 0; }
.av1 { background: linear-gradient(135deg, #845cff, #b9a5ff); color: #fff; }
.av2 { background: linear-gradient(135deg, #ffd300, #ffe469); }
.av3 { background: linear-gradient(135deg, #ffb800, #ffd300); }
.av4 { background: #23233a; color: #fff; }
.hero__trust-text { display: flex; flex-direction: column; font-size: 0.86rem; color: var(--muted); line-height: 1.4; }
.hero__trust-text strong { color: var(--foreground); }
.hero__stars { color: var(--accent); letter-spacing: 1px; }
.hero__stars.sm { font-size: 0.7rem; }

/* Visual / dashboard mockup */
.hero__visual { position: relative; }
.hero__window {
	border: 1px solid var(--border);
	border-radius: 16px;
	overflow: hidden;
	background: rgba(16, 16, 25, 0.85);
	backdrop-filter: blur(10px);
	box-shadow: 0 40px 90px -40px rgba(0, 0, 0, 0.85);
}
.hero__window-bar { display: flex; align-items: center; gap: 0.5rem; padding: 0.8rem 1rem; border-bottom: 1px solid var(--border); background: rgba(7, 7, 12, 0.5); }
.hero__window-bar .wd { width: 0.7rem; height: 0.7rem; border-radius: 9999px; background: #3a3a48; }
.wd.red { background: #ff5f57; } .wd.yellow { background: #febc2e; } .wd.green { background: #28c840; }
.hero__url { margin-left: 0.6rem; font-size: 0.72rem; color: var(--muted); background: var(--surface); padding: 0.2rem 0.7rem; border-radius: 6px; }
.hero__dash { padding: 1.25rem; display: flex; flex-direction: column; gap: 1.1rem; }
.hero__dash-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; }
.hero__stat { background: var(--surface); border: 1px solid var(--border); border-radius: 10px; padding: 0.8rem; display: flex; flex-direction: column; gap: 0.4rem; }
.hero__stat-label { font-size: 0.68rem; color: var(--muted); }
.hero__stat-num { font-size: 1.05rem; font-weight: 700; }
.hero__bar-mini { height: 4px; border-radius: 2px; width: 70%; background: linear-gradient(90deg, var(--primary), var(--accent)); }
.hero__bar-mini.alt { width: 45%; background: linear-gradient(90deg, var(--accent), var(--primary)); }
.hero__chart { display: flex; align-items: flex-end; gap: 0.55rem; height: 9rem; padding: 0.8rem; background: var(--surface); border: 1px solid var(--border); border-radius: 12px; }
.hero__chart span { flex: 1; border-radius: 5px 5px 0 0; background: linear-gradient(180deg, var(--accent), rgba(255, 211, 0, 0.2)); }
.hero__chart span:nth-child(even) { background: linear-gradient(180deg, var(--primary), rgba(132, 92, 255, 0.2)); }

.hero__card {
	position: absolute;
	display: flex;
	align-items: center;
	gap: 0.65rem;
	padding: 0.7rem 0.95rem;
	border-radius: 12px;
	background: rgba(20, 20, 31, 0.92);
	border: 1px solid var(--border);
	box-shadow: 0 20px 50px -20px rgba(0, 0, 0, 0.85);
	backdrop-filter: blur(8px);
}
.hero__card-txt { display: flex; flex-direction: column; line-height: 1.15; }
.hero__card-txt strong { font-size: 0.98rem; font-weight: 700; }
.hero__card-txt small { font-size: 0.7rem; color: var(--muted); }
.hero__card-ic { display: grid; place-items: center; width: 2rem; height: 2rem; border-radius: 8px; background: rgba(255, 211, 0, 0.14); color: var(--accent); }
.hero__card--metric { left: -1.5rem; bottom: 2.5rem; }
.hero__card--rating { right: -1.25rem; top: 1.75rem; }

.float-slow { animation: float 7s ease-in-out infinite; }
.float-slower { animation: float 9s ease-in-out infinite; }

@media (max-width: 900px) {
	.hero__inner { grid-template-columns: 1fr; gap: 3rem; padding-block: 2.5rem 4rem; }
	.hero__visual { order: 2; max-width: 34rem; width: 100%; }
	.hero__title { max-width: 20ch; }
	.hero__card--metric { left: 0; }
	.hero__card--rating { right: 0; }
}
@media (max-width: 520px) {
	.hero__card { display: none; }
	.hero__dash-stats { grid-template-columns: 1fr 1fr; }
	.hero__dash-stats .hero__stat:last-child { display: none; }
}

/* --- Centered hero variant --- */
.hero--center { text-align: center; }
.hero__c {
	max-width: 62rem;
	margin-inline: auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding-block: 4.5rem 3rem;
}
.hero--center .hero__title {
	max-width: 22ch;
	margin-inline: auto;
	font-size: clamp(2.6rem, 6vw, 5rem);
}
.hero--center .hero__sub { margin-inline: auto; }
.hero--center .hero__actions { justify-content: center; }
.hero--center .hero__trust { justify-content: center; margin-top: 2rem; }
.hero__trust-text2 { color: var(--muted); font-size: 0.9rem; }
.hero__trust-text2 strong { color: var(--foreground); }

/* Rotating word */
.rotator { position: relative; display: inline-block; text-align: center; }
.rotator span {
	background: linear-gradient(100deg, var(--primary), var(--accent));
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
	white-space: nowrap;
	font-weight: 500;
}
.rotator__sizer { visibility: hidden; }
.rotator__w {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	opacity: 0;
	animation: fadeWord 8s infinite;
}
.rw1 { animation-delay: 0s; }
.rw2 { animation-delay: 2s; }
.rw3 { animation-delay: 4s; }
.rw4 { animation-delay: 6s; }
@keyframes fadeWord {
	0% { opacity: 0; transform: translateY(14px); }
	4% { opacity: 1; transform: translateY(0); }
	22% { opacity: 1; transform: translateY(0); }
	27% { opacity: 0; transform: translateY(-14px); }
	100% { opacity: 0; transform: translateY(-14px); }
}
@media (prefers-reduced-motion: reduce) {
	.rotator__w { animation: none; }
	.rw1 { opacity: 1; }
}

/* Tech-stack strip */
.hero__logos { padding-bottom: 4rem; }
.hero__logos-label {
	text-align: center;
	font-size: 0.76rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--muted);
	margin-bottom: 1.6rem;
}
.hero__logo { font-size: 1.15rem; font-weight: 600; color: rgba(255, 255, 255, 0.42); transition: color 0.2s ease; white-space: nowrap; }
.hero__logo:hover { color: var(--foreground); }

/* --- Codecademy-style hero: code editor + live preview --- */
.hero__cc {
	display: grid;
	grid-template-columns: 1fr 1.05fr;
	gap: 3rem;
	align-items: center;
	padding-block: 4rem 5rem;
}

.editor-win {
	border: 1px solid var(--border);
	border-radius: 16px;
	overflow: hidden;
	background: #0d0d15;
	box-shadow: 0 40px 90px -35px rgba(0, 0, 0, 0.9);
}
.editor-win__bar {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.65rem 0.9rem;
	background: #14141f;
	border-bottom: 1px solid var(--border);
}
.editor-win__bar .wd { width: 0.7rem; height: 0.7rem; border-radius: 9999px; background: #3a3a48; }
.editor-tabs { display: flex; gap: 0.25rem; margin-left: 0.6rem; }
.editor-tab { font-size: 0.72rem; font-family: ui-monospace, Menlo, Consolas, monospace; color: var(--muted); padding: 0.25rem 0.6rem; border-radius: 6px; }
.editor-tab.is-active { color: var(--foreground); background: rgba(255, 255, 255, 0.06); }
.editor-run {
	margin-left: auto;
	display: inline-flex;
	align-items: center;
	gap: 0.3rem;
	font-size: 0.72rem;
	font-weight: 700;
	color: #07070c;
	background: var(--accent);
	border: none;
	border-radius: 6px;
	padding: 0.3rem 0.7rem;
	cursor: default;
}

.editor-win__body { display: grid; grid-template-columns: 1.05fr 0.95fr; }
.editor-code { display: flex; gap: 0.75rem; padding: 1rem 0.9rem; overflow: auto; border-right: 1px solid var(--border); }
.editor-gutter { text-align: right; color: #4a4a5e; font-family: ui-monospace, Menlo, Consolas, monospace; font-size: 0.8rem; line-height: 1.7; user-select: none; }
.editor-pre { margin: 0; font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace; font-size: 0.8rem; line-height: 1.7; color: #aeb6c7; white-space: pre; }
.editor-pre code { font: inherit; background: none; color: inherit; }
.tk-tag { color: #b79dff; }
.tk-attr { color: #ffd36b; }
.tk-str { color: #7ee787; }
.tk-txt { color: #aeb6c7; }
.tk-cursor {
	display: inline-block;
	width: 7px;
	height: 1em;
	background: var(--accent);
	vertical-align: text-bottom;
	animation: blink 1s steps(1) infinite;
}
@keyframes blink { 50% { opacity: 0; } }

.editor-preview { position: relative; display: flex; padding: 1.25rem 1.1rem; background: #0a0a12; }
.editor-preview__label { position: absolute; top: 0.55rem; right: 0.75rem; font-size: 0.58rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); }
.preview-page {
	margin: auto;
	width: 100%;
	background: linear-gradient(160deg, #1a1728, #100f1a);
	border: 1px solid var(--border);
	border-radius: 12px;
	padding: 1.5rem 1.3rem;
}
.preview-page h3 { font-size: 1.45rem; font-weight: 500; line-height: 1.1; }
.preview-page h3 span { color: var(--accent); }
.preview-page p { color: var(--muted); font-size: 0.85rem; margin-top: 0.5rem; }
.preview-page button {
	margin-top: 1.1rem;
	background: var(--accent);
	color: #07070c;
	border: none;
	font-weight: 700;
	font-size: 0.85rem;
	padding: 0.5rem 1.05rem;
	cursor: default;
}

@media (max-width: 900px) {
	.hero__cc { grid-template-columns: 1fr; gap: 2.5rem; padding-block: 2.5rem 4rem; }
	.hero__editor { order: 2; }
}
@media (max-width: 560px) {
	.editor-win__body { grid-template-columns: 1fr; }
	.editor-code { border-right: none; }
	.editor-preview { border-top: 1px solid var(--border); }
}

/* --- Cinematic video hero --- */
.cine { padding: 0 clamp(0.75rem, 1.5vw, 1.5rem) clamp(0.75rem, 1.5vw, 1.5rem); }
.cine__frame {
	position: relative;
	overflow: hidden;
	border-radius: clamp(1rem, 2vw, 2rem);
	min-height: 86vh;
	background: #0a0a0f;
}
.cine__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.cine__noise {
	position: absolute;
	inset: 0;
	z-index: 1;
	opacity: 0.7;
	mix-blend-mode: overlay;
	pointer-events: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.cine__gradient {
	position: absolute;
	inset: 0;
	z-index: 2;
	pointer-events: none;
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), transparent 38%, transparent 62%, rgba(0, 0, 0, 0.6));
}
.cine__content { position: absolute; left: 0; right: 0; bottom: 0; z-index: 3; padding: clamp(1.25rem, 3.5vw, 3rem); }
.cine__aside { max-width: 30rem; margin-left: auto; margin-bottom: clamp(1rem, 2.5vw, 2rem); }
.cine__desc {
	color: rgba(242, 240, 232, 0.72);
	font-size: clamp(0.85rem, 1vw, 1rem);
	line-height: 1.3;
	animation: cineFade 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.5s both;
}
.cine__cta {
	display: inline-flex;
	align-items: center;
	gap: 0.65rem;
	margin-top: 1.35rem;
	background: var(--accent);
	color: #07070c;
	border-radius: 9999px;
	padding: 0.4rem 0.45rem 0.4rem 1.25rem;
	font-weight: 600;
	font-size: clamp(0.85rem, 1vw, 1rem);
	transition: gap 0.25s ease;
	animation: cineFade 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.7s both;
}
.cine__cta:hover { gap: 0.95rem; }
.cine__cta-circle {
	display: grid;
	place-items: center;
	width: 2.35rem;
	height: 2.35rem;
	background: #07070c;
	color: #f2f0e8;
	border-radius: 9999px;
	transition: transform 0.25s ease;
}
.cine__cta:hover .cine__cta-circle { transform: scale(1.1); }

.cine__title {
	margin: 0;
	font-size: clamp(3rem, 16vw, 15rem);
	font-weight: 500;
	line-height: 0.85;
	letter-spacing: -0.06em;
	color: #f2f0e8;
	white-space: nowrap;
}
.pull { display: inline-block; }
.pull__i {
	display: inline-block;
	opacity: 0;
	transform: translateY(20px);
	animation: pullUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.cine__ast { font-size: 0.31em; vertical-align: super; margin-left: -0.04em; color: var(--accent); }
@keyframes pullUp { to { opacity: 1; transform: translateY(0); } }
@keyframes cineFade { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }

@media (prefers-reduced-motion: reduce) {
	.pull__i { opacity: 1; transform: none; animation: none; }
	.cine__desc, .cine__cta { opacity: 1; transform: none; animation: none; }
}
@media (max-width: 700px) {
	.cine__frame { min-height: 80vh; }
	.cine__aside { max-width: 100%; margin-left: 0; }
	.cine__title { white-space: normal; font-size: clamp(3.5rem, 24vw, 9rem); }
}

/* --- Liquid glass utility --- */
.liquid-glass {
	background: rgba(255, 255, 255, 0.01);
	background-blend-mode: luminosity;
	-webkit-backdrop-filter: blur(4px);
	backdrop-filter: blur(4px);
	border: none;
	box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.1);
	position: relative;
	overflow: hidden;
}
.liquid-glass::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	padding: 1.4px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.45) 0%, rgba(255, 255, 255, 0.15) 20%, rgba(255, 255, 255, 0) 40%, rgba(255, 255, 255, 0) 60%, rgba(255, 255, 255, 0.15) 80%, rgba(255, 255, 255, 0.45) 100%);
	-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	pointer-events: none;
}

/* --- Partners carousel (dark) --- */
.partners { position: relative; overflow: hidden; }
.partners__glow {
	position: absolute;
	left: 50%;
	top: 0;
	width: 60%;
	height: 16rem;
	transform: translateX(-50%);
	background: radial-gradient(closest-side, rgba(132, 92, 255, 0.18), transparent);
	pointer-events: none;
}
.partners__head { text-align: center; max-width: 42rem; margin-inline: auto; }
.partners__head .section-label { justify-content: center; }
.partners__sub { color: var(--muted); font-size: 1.05rem; line-height: 1.6; margin-top: 1rem; }
.partners__rows { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 3rem; }
.partners__row .marquee { gap: 1.25rem; animation-duration: 46s; }
.partners__row--rev .marquee { animation-direction: reverse; animation-duration: 54s; }
.partners__row:hover .marquee { animation-play-state: paused; }

.partner-chip {
	display: inline-flex;
	align-items: center;
	gap: 0.7rem;
	padding: 0.7rem 1.4rem;
	border-radius: 9999px;
	border: 1px solid var(--border);
	background: rgba(255, 255, 255, 0.03);
	white-space: nowrap;
	transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
.partner-chip:hover { border-color: rgba(255, 255, 255, 0.28); background: rgba(255, 255, 255, 0.06); transform: translateY(-2px); }
.partner-logo { display: inline-flex; }
.partner-logo svg { width: 22px; height: 22px; display: block; }
.partner-dot { width: 0.6rem; height: 0.6rem; border-radius: 9999px; flex-shrink: 0; }
.partner-name { font-size: 1.05rem; font-weight: 600; color: rgba(255, 255, 255, 0.72); }
.partner-chip:hover .partner-name { color: #fff; }

@media (prefers-reduced-motion: reduce) {
	.partners__row .marquee { animation: none; }
}

/* --- Blog section (light band, Codecademy-style cards) --- */
.blog-sec { background: #f4f3ec; color: #14141a; padding-block: clamp(3.5rem, 7vw, 6rem); }
.blog-sec .section-label { color: var(--primary); }
.blog-sec .section-title { color: #14141a; }
.blog-sec__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; margin-bottom: 3rem; }
.blog-sec__more { display: inline-flex; align-items: center; gap: 0.4rem; color: #14141a; font-weight: 600; white-space: nowrap; }
.blog-sec__more:hover { color: var(--primary); }
.blog-sec__more svg { transition: transform 0.2s ease; }
.blog-sec__more:hover svg { transform: translateX(3px); }

.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.blog-card {
	background: #fff;
	border: 1px solid #e2e2d8;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -24px rgba(0, 0, 0, 0.25); }
.blog-card__media { position: relative; aspect-ratio: 16 / 10; display: grid; place-items: center; overflow: hidden; border-bottom: 1px solid #e2e2d8; }
.blog-card:nth-child(3n+1) .blog-card__media { background: #eaf3d4; }
.blog-card:nth-child(3n+2) .blog-card__media { background: #f0e9d6; }
.blog-card:nth-child(3n) .blog-card__media { background: #e6f0fb; }
.blog-card__media img { width: 100%; height: 100%; object-fit: cover; }
.blog-card__ph { color: rgba(20, 20, 26, 0.32); }
.blog-card__chip {
	position: absolute;
	top: 1rem;
	left: 1rem;
	border: 1px solid rgba(20, 20, 26, 0.35);
	border-radius: 9999px;
	padding: 0.25rem 0.85rem;
	font-size: 0.78rem;
	font-weight: 600;
	color: #14141a;
	background: rgba(255, 255, 255, 0.6);
	font-family: ui-monospace, Menlo, Consolas, monospace;
}
.blog-card__body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }
.blog-card__title { font-size: 1.3rem; font-weight: 700; line-height: 1.25; }
.blog-card__title a { color: #14141a; }
.blog-card__title a:hover { color: var(--primary); }
.blog-card__meta { display: flex; align-items: center; gap: 0.7rem; margin-top: 0.85rem; font-size: 0.82rem; color: #6b6b70; flex-wrap: wrap; }
.blog-card__read { background: #ffe27a; color: #1a1a1a; padding: 0.1rem 0.5rem; border-radius: 4px; font-weight: 600; }
.blog-card__author { margin-left: auto; }
.blog-card__excerpt { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid #ececec; color: #4a4a52; font-size: 0.92rem; line-height: 1.55; }

@media (max-width: 900px) { .blog-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .blog-grid { grid-template-columns: 1fr; } }

/* --- Services page --- */
.svc-page + .svc-page { padding-top: 0; }
.svc-page-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2.5rem; }
.svc-page-card { padding: 1.75rem; display: flex; flex-direction: column; scroll-margin-top: 110px; color: var(--foreground); text-decoration: none; }
.svc-page-card h3 { color: var(--foreground); }
.svc-page-card:hover h3 { color: var(--accent); }
.svc-page-card__icon {
	display: grid;
	place-items: center;
	width: 3rem;
	height: 3rem;
	border-radius: 14px;
	color: var(--accent);
	background: linear-gradient(135deg, rgba(132, 92, 255, 0.22), rgba(255, 211, 0, 0.14));
}
.svc-page-card h3 { font-size: 1.2rem; font-weight: 700; margin-top: 1.1rem; }
.svc-page-card p { color: var(--muted); font-size: 0.92rem; line-height: 1.6; margin-top: 0.6rem; flex: 1; }
.svc-page-card__link { display: inline-flex; align-items: center; gap: 0.4rem; margin-top: 1.25rem; color: var(--accent); font-weight: 600; font-size: 0.9rem; }
.svc-page-card__link svg { transition: transform 0.2s ease; }
.svc-page-card__link:hover svg { transform: translateX(3px); }

.svc-cta {
	position: relative;
	overflow: hidden;
	border: 1px solid var(--border);
	border-radius: 24px;
	padding: clamp(2.5rem, 5vw, 4rem);
	text-align: center;
}
.svc-cta h2 { font-size: clamp(1.8rem, 4vw, 2.75rem); font-weight: 400; }
.svc-cta p { color: var(--muted); max-width: 40rem; margin: 1rem auto 2rem; line-height: 1.6; }

@media (max-width: 900px) { .svc-page-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .svc-page-grid { grid-template-columns: 1fr; } }

/* --- Reusable page banner (title + breadcrumb over image) --- */
.page-banner { position: relative; overflow: hidden; isolation: isolate; }
.page-banner__bg {
	position: absolute;
	inset: 0;
	z-index: -2;
	background-size: cover;
	background-position: center;
}
.page-banner__overlay {
	position: absolute;
	inset: 0;
	z-index: -1;
	background: linear-gradient(180deg, rgba(7, 7, 12, 0.7) 0%, rgba(7, 7, 12, 0.55) 45%, rgba(7, 7, 12, 0.95) 100%);
}
.page-banner__inner { padding-block: clamp(3.5rem, 8vw, 7rem); }
.page-banner__title { font-size: clamp(2.4rem, 6vw, 4.5rem); font-weight: 500; letter-spacing: -0.02em; margin: 1rem 0 0; }
.page-banner__desc { color: rgba(243, 243, 248, 0.75); font-size: 1.12rem; line-height: 1.6; max-width: 42rem; margin: 1.1rem 0 0; }
.page-banner__btn { margin-top: 2rem; }
.page-banner__btn svg { transition: transform 0.2s ease; }
.page-banner__btn:hover svg { transform: translateX(3px); }

.breadcrumb { display: flex; align-items: center; gap: 0.55rem; flex-wrap: wrap; font-size: 0.85rem; }
.breadcrumb a { color: rgba(243, 243, 248, 0.7); transition: color 0.2s ease; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb__sep { color: rgba(255, 255, 255, 0.3); }
.breadcrumb__current { color: var(--foreground); font-weight: 500; }

/* --- Contact page --- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.25fr; gap: 2.5rem; align-items: start; }
.contact-info h2, .contact-form-card h2 { font-size: 1.5rem; font-weight: 500; }
.contact-info__lead { color: var(--muted); margin-top: 0.75rem; line-height: 1.6; }
.contact-info__list { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 1.75rem; }
.contact-info__item { display: flex; align-items: flex-start; gap: 0.9rem; }
.contact-info__ic {
	display: grid;
	place-items: center;
	width: 2.6rem;
	height: 2.6rem;
	flex-shrink: 0;
	border-radius: 12px;
	color: var(--accent);
	background: rgba(255, 211, 0, 0.12);
}
.contact-info__text { display: flex; flex-direction: column; }
.contact-info__label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); }
.contact-info__text a, .contact-info__text span:last-child { color: var(--foreground); font-weight: 500; margin-top: 0.15rem; }
.contact-info__text a:hover { color: var(--accent); }
.contact-info .social-links { margin-top: 2rem; }

.contact-form-card { padding: 2rem; border-radius: 20px; }
.contact-form-card .enquiry-form { margin-top: 1.5rem; }

@media (max-width: 820px) {
	.contact-grid { grid-template-columns: 1fr; }
}

/* --- Floating action buttons (WhatsApp / Call / AI) --- */
.fab {
	position: fixed;
	right: 1.25rem;
	bottom: 1.25rem;
	z-index: 150;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 0.85rem;
}
.fab__btn {
	position: relative;
	width: 3.4rem;
	height: 3.4rem;
	border-radius: 9999px;
	display: grid;
	place-items: center;
	border: none;
	cursor: pointer;
	color: #fff;
	box-shadow: 0 12px 28px -8px rgba(0, 0, 0, 0.55);
	transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
	-webkit-tap-highlight-color: transparent;
	animation: fabIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.fab__btn:hover { transform: translateY(-3px) scale(1.06); box-shadow: 0 18px 40px -10px rgba(0, 0, 0, 0.6); }
.fab__btn--wa { background: #25d366; }
.fab__btn--call { background: #ffffff; color: #07070c; }
.fab__btn--ai {
	background: linear-gradient(135deg, var(--primary), var(--accent));
	color: #fff;
}
.fab__btn svg { display: block; }

/* hover label pill */
.fab__btn::after {
	content: attr(data-label);
	position: absolute;
	right: calc(100% + 0.7rem);
	top: 50%;
	transform: translateY(-50%) translateX(6px);
	white-space: nowrap;
	background: rgba(10, 10, 16, 0.92);
	color: #fff;
	padding: 0.4rem 0.75rem;
	border-radius: 8px;
	font-size: 0.8rem;
	font-weight: 600;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.2s ease, transform 0.2s ease;
	box-shadow: 0 6px 20px -8px rgba(0, 0, 0, 0.6);
}
.fab__btn:hover::after { opacity: 1; transform: translateY(-50%) translateX(0); }

/* AI pulse ring */
.fab__btn--ai::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: 9999px;
	background: var(--accent);
	opacity: 0.55;
	z-index: -1;
	animation: fabPulse 2.2s ease-out infinite;
}
@keyframes fabPulse { 0% { transform: scale(1); opacity: 0.55; } 70%, 100% { transform: scale(1.8); opacity: 0; } }
@keyframes fabIn { from { opacity: 0; transform: translateY(14px) scale(0.85); } to { opacity: 1; transform: none; } }

@media (max-width: 600px) {
	.fab { right: 1rem; bottom: 1rem; gap: 0.7rem; }
	.fab__btn { width: 3rem; height: 3rem; }
	.fab__btn svg { width: 22px; height: 22px; }
}
@media (prefers-reduced-motion: reduce) {
	.fab__btn { animation: none; }
	.fab__btn--ai::before { animation: none; }
}

/* --- Enquiry modal (liquid glass) --- */
.enquiry-modal {
	position: fixed;
	inset: 0;
	z-index: 200;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 1.25rem;
}
.enquiry-modal.is-open { display: flex; }
.enquiry-modal__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.6);
	-webkit-backdrop-filter: blur(6px);
	backdrop-filter: blur(6px);
	animation: modalFade 0.25s ease;
}
.enquiry-modal__dialog {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 34rem;
	max-height: 90vh;
	overflow-y: auto;
	border-radius: 22px;
	padding: 2rem;
	background: rgba(16, 16, 24, 0.55);
	background-blend-mode: normal;
	animation: modalUp 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.enquiry-modal__close {
	position: absolute;
	top: 0.9rem;
	right: 1.1rem;
	z-index: 2;
	background: none;
	border: none;
	color: rgba(255, 255, 255, 0.6);
	font-size: 1.6rem;
	line-height: 1;
	cursor: pointer;
	transition: color 0.2s ease;
}
.enquiry-modal__close:hover { color: #fff; }
.enquiry-modal__title { font-size: 1.5rem; font-weight: 500; color: #fff; }
.enquiry-modal__sub { color: var(--muted); font-size: 0.9rem; margin-top: 0.4rem; }

.enquiry-form { display: flex; flex-direction: column; gap: 0.85rem; margin-top: 1.5rem; }
.enquiry-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.85rem; }
.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
	width: 100%;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 12px;
	padding: 0.7rem 0.9rem;
	color: #fff;
	font-size: 0.9rem;
	font-family: inherit;
	outline: none;
	transition: border-color 0.2s ease, background 0.2s ease;
}
.enquiry-form input::placeholder,
.enquiry-form textarea::placeholder { color: rgba(255, 255, 255, 0.4); }
.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus { border-color: var(--accent); background: rgba(255, 255, 255, 0.08); }
.enquiry-form select { appearance: none; -webkit-appearance: none; background-image: linear-gradient(45deg, transparent 50%, rgba(255,255,255,0.5) 50%), linear-gradient(135deg, rgba(255,255,255,0.5) 50%, transparent 50%); background-position: right 1rem center, right 0.75rem center; background-size: 5px 5px, 5px 5px; background-repeat: no-repeat; }
.enquiry-form select option, .enquiry-form select optgroup { color: #111; }
.enquiry-form textarea { resize: vertical; min-height: 6rem; }
.enquiry-submit { justify-content: center; margin-top: 0.35rem; }
.enquiry-submit.is-loading { opacity: 0.6; pointer-events: none; }
.enquiry-status { min-height: 1.2em; text-align: center; font-size: 0.85rem; margin: 0.25rem 0 0; }
.enquiry-status.is-success { color: var(--accent); }
.enquiry-status.is-error { color: #ff6b6b; }

@keyframes modalFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes modalUp { from { opacity: 0; transform: translateY(18px) scale(0.98); } to { opacity: 1; transform: none; } }
@media (max-width: 480px) {
	.enquiry-row { grid-template-columns: 1fr; }
	.enquiry-modal__dialog { padding: 1.5rem; }
}

/* --- Hero variant B (liquid glass) --- */
.hero2 { position: relative; min-height: 100vh; background: #000; overflow: hidden; display: flex; flex-direction: column; }
.hero2__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transform: translateY(17%); z-index: 0; }
.hero2__inner { position: relative; z-index: 10; flex: 1; display: flex; flex-direction: column; }

.hero2__nav { position: relative; z-index: 20; padding: 1.5rem; }
.hero2__nav-pill { max-width: 64rem; margin-inline: auto; border-radius: 9999px; padding: 0.75rem 1.5rem; display: flex; align-items: center; justify-content: space-between; }
.hero2__logo { display: flex; align-items: center; gap: 2rem; }
.hero2__brand { display: inline-flex; align-items: center; gap: 0.5rem; color: #fff; font-weight: 600; font-size: 1.125rem; }
.hero2__links { display: none; gap: 2rem; }
.hero2__links a { color: rgba(255, 255, 255, 0.8); font-size: 0.875rem; font-weight: 500; transition: color 0.2s ease; }
.hero2__links a:hover { color: #fff; }
.hero2__nav-actions { display: flex; align-items: center; gap: 1rem; }
.hero2__signup { color: #fff; font-size: 0.9rem; font-weight: 500; background: none; border: none; cursor: pointer; }
.hero2__login { border-radius: 9999px; padding: 0.5rem 1.5rem; color: #fff; font-size: 0.9rem; cursor: pointer; }

.hero2__content { position: relative; z-index: 10; flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 3rem 1.5rem; text-align: center; }
.hero2__title { color: #fff; margin: 0 auto 1.25rem; max-width: 20ch; font-weight: 600; letter-spacing: -0.02em; font-size: clamp(2.2rem, 6vw, 4rem); line-height: 1.05; }
.hero2__subtitle { color: rgba(255, 255, 255, 0.85); font-size: clamp(0.9rem, 1.1vw, 1.05rem); line-height: 1.6; max-width: 34rem; margin: 0 auto; }
.hero2__cta {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	margin-top: 2rem;
	border-radius: 9999px;
	padding: 0.85rem 1.85rem;
	color: #fff;
	font-weight: 600;
	font-size: 1rem;
	cursor: pointer;
	transition: gap 0.2s ease, background 0.2s ease;
}
.hero2__cta:hover { gap: 0.85rem; background: rgba(255, 255, 255, 0.06); }
.hero2__cta svg { transition: transform 0.2s ease; }
.hero2__cta:hover svg { transform: translateX(3px); }

.hero2__social { position: relative; z-index: 10; display: flex; justify-content: center; gap: 1rem; padding-bottom: 3rem; }
.hero2__social a { border-radius: 9999px; padding: 1rem; color: rgba(255, 255, 255, 0.8); display: grid; place-items: center; transition: color 0.2s ease, background 0.2s ease; }
.hero2__social a:hover { color: #fff; background: rgba(255, 255, 255, 0.05); }

@media (min-width: 768px) {
	.hero2__links { display: flex; }
}

/* ==========================================================================
   Grids / cards
   ========================================================================== */

.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.stat { padding: 1.5rem; text-align: center; }
.stat__value { font-size: 2.25rem; font-weight: 500; }
.stat__label { color: var(--muted); font-size: 0.9rem; margin-top: 0.25rem; }

.bento-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.service-card { padding: 1.75rem; height: 100%; }
.service-card:nth-child(1), .service-card:nth-child(4) { grid-column: span 2; }
.service-card__icon {
	display: grid; place-items: center;
	width: 3rem; height: 3rem;
	border-radius: 0.85rem;
	font-size: 1.5rem;
	background: linear-gradient(135deg, rgba(132, 92, 255, 0.2), rgba(255, 211, 0, 0.1));
}
.service-card h3 { margin-top: 1.25rem; font-size: 1.1rem; }
.service-card p { margin-top: 0.5rem; color: var(--muted); font-size: 0.92rem; }

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

.project-card, .post-card { display: flex; flex-direction: column; height: 100%; overflow: hidden; }
.project-card__media, .post-card__media { aspect-ratio: 16 / 10; overflow: hidden; background: var(--surface); }
.project-card__media img, .post-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.project-card:hover .project-card__media img, .post-card:hover .post-card__media img { transform: scale(1.05); }
.media-placeholder {
	display: grid; place-items: center; height: 100%;
	font-size: 2.5rem; font-weight: 500; color: rgba(243, 243, 248, 0.6);
	background: linear-gradient(135deg, rgba(132, 92, 255, 0.2), rgba(255, 211, 0, 0.1));
}
.project-card__body, .post-card__body { padding: 1.5rem; display: flex; flex-direction: column; gap: 0.5rem; flex: 1; }
.project-card__body h3, .post-card__body h3 { font-size: 1.1rem; }
.project-card__body p, .post-card__body p { color: var(--muted); font-size: 0.9rem; }
.post-card__date, .post-card__meta { color: var(--muted); font-size: 0.8rem; }

/* CTA */
.cta-panel {
	position: relative;
	overflow: hidden;
	border: 1px solid var(--border);
	border-radius: 1.75rem;
	padding: 4rem 2rem;
	text-align: center;
}
.cta-panel h2 { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 500; }
.cta-panel p { max-width: 34rem; margin: 1rem auto 0; color: var(--muted); }
.cta-panel .btn-primary { margin-top: 2rem; }

/* ==========================================================================
   Page hero + article
   ========================================================================== */

.page-hero { position: relative; overflow: hidden; padding-block: 5rem 3rem; }
.page-hero__title { font-size: clamp(2.2rem, 5vw, 3.75rem); font-weight: 500; margin-top: 0.5rem; }
.page-hero__sub { color: var(--muted); font-size: 1.15rem; margin-top: 1.25rem; max-width: 42rem; }

.article-hero { position: relative; overflow: hidden; padding-block: 4rem 2rem; }
.article-chips { margin-top: 1.25rem; }
.article-title { font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 500; margin-top: 1rem; }
.article-meta { color: var(--muted); margin-top: 0.75rem; font-size: 0.9rem; }
.article-cover { margin-top: 2.5rem; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }
.project-meta-row { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.25rem; }

.article-content {
	margin-top: 2.5rem;
	font-size: 1.05rem;
	line-height: 1.85;
	color: #d6d6e2;
}
.article-content > * + * { margin-top: 1.4rem; }
.article-content h2 { font-size: 1.75rem; margin-top: 2.5rem; color: var(--foreground); scroll-margin-top: 110px; }
.article-content [id] { scroll-margin-top: 110px; }
.article-content h3 { font-size: 1.35rem; margin-top: 2rem; color: var(--foreground); }
.article-content a { color: var(--primary); text-decoration: underline; }
.article-content img { border-radius: 0.9rem; margin-block: 1.5rem; }
.article-content blockquote {
	border-left: 3px solid var(--primary);
	padding-left: 1.25rem;
	color: var(--muted);
	font-style: italic;
}
.article-content ul, .article-content ol { padding-left: 1.4rem; }
.article-content code {
	background: var(--surface);
	padding: 0.15rem 0.4rem;
	border-radius: 0.35rem;
	font-size: 0.9em;
}
.article-content pre {
	background: var(--surface);
	padding: 1.25rem;
	border-radius: 0.75rem;
	overflow-x: auto;
	border: 1px solid var(--border);
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
	position: relative;
	border-top: 1px solid var(--border);
	background: #050509;
}

/* Mega grid: 3 columns + divider + 3 columns */
.footer-mega {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr)) 1px repeat(3, minmax(0, 1fr));
	gap: 2rem 2rem;
	padding-block: 4rem 1.5rem;
}
.footer-col { display: flex; flex-direction: column; gap: 2.25rem; min-width: 0; }
.footer-divider { width: 1px; align-self: stretch; background: var(--border); }

.fcol-title { font-size: 1rem; font-weight: 700; color: #fff; margin: 0 0 1.15rem; }
.fcol-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.78rem; }
.fcol-list a { color: #bdbdc9; font-size: 0.95rem; transition: color 0.2s ease; }
.fcol-list a:hover { color: #fff; }

.footer-socials { display: flex; gap: 1rem; margin-top: 0.25rem; }
.fsocial { display: inline-flex; color: #bdbdc9; transition: color 0.2s ease, transform 0.2s ease; }
.fsocial:hover { color: #fff; transform: translateY(-2px); }
.fsocial svg { display: block; }

.app-badges { display: flex; flex-direction: column; gap: 0.75rem; align-items: flex-start; }
.app-badge { display: inline-block; border-radius: 8px; overflow: hidden; transition: transform 0.2s ease, opacity 0.2s ease; }
.app-badge:hover { transform: translateY(-2px); opacity: 0.9; }
.app-badge svg { display: block; height: auto; }

/* Brand row */
.footer-brand-row { display: flex; align-items: center; gap: 0.85rem; padding-block: 2rem 3rem; }
.footer-brand { display: inline-flex; align-items: center; gap: 0.6rem; font-weight: 700; }
.footer-from { color: #7c7c8c; font-size: 0.85rem; }

/* Bottom legal bar */
.footer-bottom-wrap { position: relative; border-top: 1px solid var(--border); }
.footer-logo-badge {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%, -50%);
	display: inline-flex;
	line-height: 0;
	padding: 0 1rem;
	background: #050509;
}
.footer-logo-badge img { width: 42px; height: auto; display: block; }
.footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem 1.5rem;
	padding-block: 2.75rem 2rem;
	flex-wrap: wrap;
}
.legal-menu { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; }
.legal-menu li { position: relative; }
.legal-menu li + li { margin-left: 1.6rem; }
.legal-menu li + li::before { content: "|"; position: absolute; left: -0.95rem; color: #3a3a48; }
.legal-menu a { color: #bdbdc9; font-size: 0.9rem; transition: color 0.2s ease; }
.legal-menu a:hover { color: #fff; }
.made-with { display: flex; align-items: center; gap: 0.35rem; color: #cfcfda; font-size: 0.9rem; font-weight: 600; }
.made-with .heart { color: #ff5fa2; font-size: 1.05rem; }

@media (max-width: 1100px) {
	.footer-mega { grid-template-columns: repeat(3, minmax(0, 1fr)); }
	.footer-divider { display: none; }
}
@media (max-width: 720px) {
	.footer-mega { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 2.5rem 1.5rem; }
	.footer-bottom { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 460px) {
	.footer-mega { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Search form, pagination
   ========================================================================== */

.search-form { display: flex; gap: 0.5rem; }
.search-field {
	flex: 1;
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: 0.75rem;
	padding: 0.7rem 1rem;
	color: var(--foreground);
	outline: none;
}
.search-field:focus { border-color: var(--primary); }

.pagination-wrap { margin-top: 3rem; }
.pagination-wrap .nav-links { display: flex; gap: 0.5rem; justify-content: center; flex-wrap: wrap; }
.pagination-wrap .page-numbers {
	display: grid;
	place-items: center;
	min-width: 2.5rem;
	height: 2.5rem;
	padding: 0 0.75rem;
	border: 1px solid var(--border);
	border-radius: 0.6rem;
	color: var(--muted);
	background: var(--surface);
}
.pagination-wrap .page-numbers.current { background: var(--primary); color: #fff; border-color: transparent; }
.pagination-wrap .page-numbers:hover { color: var(--foreground); }

/* comments (minimal) */
.comment-list { list-style: none; padding: 0; }
.comments-area { margin-top: 3rem; }
.comment-respond input[type="text"],
.comment-respond input[type="email"],
.comment-respond input[type="url"],
.comment-respond textarea {
	width: 100%;
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: 0.6rem;
	padding: 0.65rem 0.9rem;
	color: var(--foreground);
	margin-bottom: 0.75rem;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 900px) {
	.stats-grid { grid-template-columns: repeat(2, 1fr); }
	.bento-grid { grid-template-columns: repeat(2, 1fr); }
	.service-card:nth-child(1), .service-card:nth-child(4) { grid-column: span 2; }
	.cards-grid, .cards-grid--2 { grid-template-columns: 1fr 1fr; }
	.site-footer__main { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 780px) {
	.site-nav { display: none; }
	.header-cta { display: none; }
	.site-header__actions .call-us { display: none; }
	.nav-toggle { display: flex; }
}

@media (max-width: 600px) {
	.stats-grid { grid-template-columns: 1fr 1fr; }
	.bento-grid { grid-template-columns: 1fr; }
	.service-card:nth-child(1), .service-card:nth-child(4) { grid-column: span 1; }
	.cards-grid, .cards-grid--2 { grid-template-columns: 1fr; }
	.section { padding-block: 3rem; }
}

/* ======================= Lenis Smooth Scroll ======================= */
html.lenis, html.lenis body {
	height: auto;
}
.lenis.lenis-smooth {
	scroll-behavior: auto !important;
}
.lenis.lenis-smooth [data-lenis-prevent] {
	overscroll-behavior: contain;
}
.lenis.lenis-stopped {
	overflow: hidden;
}
.lenis.lenis-smooth iframe {
	pointer-events: none;
}

/* ======================= Tailored Solutions Bento (Light Section) ======================= */
.light-section {
	background-color: #ffffff;
	color: #000000;
	padding-block: 6rem;
}

.ts-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 3rem;
}

.ts-title {
	font-size: clamp(2.5rem, 4vw, 3.5rem);
	font-weight: 600;
	line-height: 1.1;
	margin: 0;
}

.ts-grid {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 1.5rem;
}

.ts-col {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.ts-card {
	background-color: #f4f4f4;
	border-radius: 16px;
	position: relative;
	display: flex;
	flex-direction: column;
	border: none;
}

.ts-card--padded {
	padding: 2.5rem;
}

.ts-card--img-full {
	padding: 0;
	height: 100%;
	min-height: 500px;
	overflow: hidden;
}

.ts-card--img-bottom {
	overflow: hidden;
	flex: 1;
}

.ts-card--img-full img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.ts-card-title {
	font-size: 1.25rem;
	font-weight: 600;
	line-height: 1.3;
	margin: 0 0 0 0;
}

.ts-card-title--small {
	font-size: 1.125rem;
	padding: 2.5rem 2.5rem 0 2.5rem;
	margin: 0 0 1.5rem 0;
}

.ts-img-wide {
	width: 100%;
	height: 200px;
	object-fit: cover;
	margin-top: auto;
	border-radius: 0 0 20px 20px;
}

.ts-card--flex-col {
	justify-content: space-between;
	flex: 1;
}

.ts-stat-block {
	margin-top: 2rem;
}

.ts-stat {
	font-size: clamp(4rem, 8vw, 6rem);
	font-weight: 800;
	line-height: 1;
	letter-spacing: -2px;
}

.ts-stat-label {
	color: #888888;
	font-size: 1rem;
	font-weight: 500;
	margin-top: 0.5rem;
}

.ts-rating {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	margin-top: 2rem;
}

.ts-rating-num {
	font-size: 2rem;
	font-weight: 800;
	line-height: 1;
}

.ts-stars {
	color: #ffd300;
	font-size: 1.25rem;
	letter-spacing: 2px;
}

.ts-avatars {
	display: flex;
	align-items: center;
	margin-top: 1rem;
}

.avatar {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	border: 3px solid #f7f7f7;
	margin-left: -12px;
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 800;
	font-size: 1.25rem;
}

.avatar:first-child {
	margin-left: 0;
}

.avatar-1 { background-image: url('https://i.pravatar.cc/100?img=47'); }
.avatar-2 { background-image: url('https://i.pravatar.cc/100?img=12'); }
.avatar-3 { background-image: url('https://i.pravatar.cc/100?img=33'); }
.avatar-4 { background-image: url('https://i.pravatar.cc/100?img=60'); }

.avatar-plus {
	background-color: var(--primary);
	color: #000000;
	z-index: 10;
}

.avatar-plus svg {
	fill: currentColor;
	width: 16px;
	height: 16px;
}

@media (max-width: 1024px) {
	.ts-grid {
		grid-template-columns: 1fr;
	}
	.ts-card--img-full {
		height: 400px;
	}
	.ts-header {
		flex-direction: column;
		gap: 1.5rem;
	}
	.ts-title {
		font-size: 2rem;
	}
}

