/*
Theme Name: Ignite Pulse Motion
Theme URI: https://example.com/ignite-pulse-motion
Author: Ignite DGX
Author URI: https://example.com
Description: A modern, editable WordPress agency theme with video hero, animated audio graphics, client scrollers, approved reviews, India state pages, and plugin-friendly templates.
Version: 1.0.2
Requires at least: 6.0
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ignite-pulse-motion
Tags: custom-logo, custom-menu, featured-images, full-width-template, blog, portfolio, entertainment, threaded-comments, translation-ready
*/

:root {
	--bg: #f7f9fc;
	--bg-elevated: #ffffff;
	--bg-soft: #eef3f8;
	--text: #111827;
	--muted: #5d6678;
	--line: rgba(17, 24, 39, 0.13);
	--cyan: #16d9e3;
	--coral: #ff5d57;
	--lime: #74c91f;
	--amber: #c77c06;
	--violet: #b28cff;
	--max: 1180px;
	--radius: 8px;
	--shadow: 0 28px 90px rgba(17, 24, 39, 0.14);
	font-size: 16px;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background:
		linear-gradient(90deg, rgba(17, 24, 39, 0.045) 1px, transparent 1px),
		linear-gradient(0deg, rgba(17, 24, 39, 0.045) 1px, transparent 1px),
		var(--bg);
	background-size: 44px 44px;
	color: var(--text);
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	line-height: 1.6;
	letter-spacing: 0;
	overflow-x: hidden;
}

img,
video,
canvas {
	display: block;
	max-width: 100%;
}

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

a:hover,
a:focus-visible {
	color: var(--cyan);
}

button,
input,
textarea,
select {
	font: inherit;
}

input,
textarea,
select {
	width: 100%;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: rgba(255, 255, 255, 0.78);
	color: var(--text);
	padding: 0.9rem 1rem;
}

textarea {
	resize: vertical;
}

label span {
	display: block;
	margin-bottom: 0.4rem;
	color: var(--muted);
	font-weight: 700;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
	margin-top: 0;
	overflow-wrap: anywhere;
}

h1,
h2,
h3 {
	line-height: 1.04;
	letter-spacing: 0;
}

h1 {
	font-size: 5rem;
	max-width: 980px;
}

h2 {
	font-size: 3rem;
	max-width: 900px;
}

h3 {
	font-size: 1.4rem;
}

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

.screen-reader-text,
.skip-link {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.skip-link:focus {
	z-index: 1000;
	top: 1rem;
	left: 1rem;
	width: auto;
	height: auto;
	padding: 0.75rem 1rem;
	clip: auto;
	background: var(--text);
	color: var(--bg);
	border-radius: var(--radius);
}

.site-header {
	position: fixed;
	inset: 0 0 auto 0;
	z-index: 100;
	border-bottom: 1px solid transparent;
	transition: background 180ms ease, border-color 180ms ease, transform 220ms ease;
}

.site-header.is-scrolled {
	background: rgba(255, 255, 255, 0.86);
	border-color: var(--line);
	backdrop-filter: blur(18px);
}

.site-header__inner {
	width: min(var(--max), calc(100% - 2rem));
	min-height: 76px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	gap: 1.25rem;
}

.site-brand {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	min-width: 0;
}

.site-brand img {
	max-height: 52px;
	width: auto;
}

.site-brand__mark {
	display: grid;
	place-items: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: conic-gradient(from 40deg, var(--cyan), var(--coral), var(--lime), var(--cyan));
	color: #111827;
	font-weight: 900;
}

.site-brand__text {
	display: grid;
	min-width: 0;
}

.site-brand__text strong {
	font-size: 1rem;
	line-height: 1.1;
}

.site-brand__text small {
	color: var(--muted);
	font-size: 0.78rem;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.primary-navigation {
	margin-left: auto;
}

.menu {
	display: flex;
	align-items: center;
	gap: 0.1rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.menu a {
	display: inline-flex;
	align-items: center;
	min-height: 44px;
	padding: 0 0.75rem;
	color: var(--text);
	font-size: 0.94rem;
	font-weight: 700;
	border-radius: var(--radius);
}

.menu a:hover,
.menu a:focus-visible {
	background: rgba(17, 24, 39, 0.07);
	color: var(--text);
}

.site-header__actions {
	display: flex;
	align-items: center;
	gap: 0.6rem;
}

.button,
button.button,
.wp-block-button__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 0.78rem 1rem;
	border: 1px solid transparent;
	border-radius: var(--radius);
	font-weight: 900;
	line-height: 1.1;
	cursor: pointer;
	transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
	white-space: normal;
	text-align: center;
}

.button:hover,
.button:focus-visible,
button.button:hover,
button.button:focus-visible {
	transform: translateY(-2px);
}

.button-primary {
	background: var(--text);
	color: var(--bg);
}

.button-primary:hover,
.button-primary:focus-visible {
	background: var(--lime);
	color: var(--bg);
}

.button-soft {
	background: rgba(255, 255, 255, 0.8);
	border-color: var(--line);
	color: var(--text);
}

.button-ghost {
	background: transparent;
	border-color: var(--line);
	color: var(--text);
}

.menu-toggle {
	display: none;
	width: 46px;
	height: 46px;
	padding: 0;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: rgba(255, 255, 255, 0.84);
	color: var(--text);
	cursor: pointer;
}

.menu-toggle span:not(.screen-reader-text) {
	display: block;
	width: 18px;
	height: 2px;
	margin: 4px auto;
	background: currentColor;
	transition: transform 180ms ease, opacity 180ms ease;
}

.mobile-navigation {
	display: none;
	width: min(var(--max), calc(100% - 2rem));
	margin: 0 auto 1rem;
	padding: 0.75rem;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(18px);
}

.mobile-navigation.is-open {
	display: block;
}

.menu--mobile,
.menu--mobile .sub-menu {
	display: grid;
	gap: 0.3rem;
}

.site-main {
	min-height: 70vh;
}

.hero-section {
	position: relative;
	min-height: 92svh;
	display: grid;
	align-items: end;
	padding: 9rem 1rem 2rem;
	overflow: hidden;
	isolation: isolate;
	border-bottom: 1px solid var(--line);
}

.hero-media {
	position: absolute;
	inset: 0;
	z-index: -2;
	background: #f5f8fc;
}

.hero-media::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(247, 249, 252, 0.46), rgba(247, 249, 252, 0.96) 80%),
		linear-gradient(90deg, rgba(22, 217, 227, 0.2), transparent 42%, rgba(255, 93, 87, 0.16));
}

.hero-media video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: saturate(1.08) contrast(1.06);
}

.hero-motion-screen {
	position: absolute;
	inset: 0;
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	background:
		linear-gradient(135deg, rgba(22, 217, 227, 0.2), rgba(255, 255, 255, 0.42) 28%, rgba(255, 93, 87, 0.16) 62%, rgba(116, 201, 31, 0.18)),
		repeating-linear-gradient(90deg, rgba(17, 24, 39, 0.07) 0 1px, transparent 1px 15vw);
	animation: color-shift 12s ease-in-out infinite alternate;
}

.hero-motion-screen span {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 0;
	padding: 1rem;
	border-right: 1px solid rgba(17, 24, 39, 0.08);
	color: rgba(17, 24, 39, 0.22);
	font-size: 2.2rem;
	font-weight: 900;
	writing-mode: vertical-rl;
	text-transform: uppercase;
}

.hero-motion-screen span:nth-child(2n) {
	transform: translateY(6%);
	color: rgba(116, 201, 31, 0.34);
}

.hero-motion-screen span:nth-child(3n) {
	color: rgba(255, 93, 87, 0.34);
}

.hero-wave {
	position: absolute;
	inset: auto 0 0;
	width: 100%;
	height: 34%;
	opacity: 0.76;
	mix-blend-mode: multiply;
}

.hero-video-toggle {
	position: absolute;
	z-index: 5;
	right: clamp(1rem, 4vw, 4rem);
	top: 50%;
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	min-height: 52px;
	padding: 0.55rem 0.85rem;
	border: 1px solid rgba(17, 24, 39, 0.12);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.86);
	color: var(--text);
	box-shadow: 0 18px 44px rgba(17, 24, 39, 0.14);
	backdrop-filter: blur(16px);
	cursor: pointer;
	opacity: 0;
	transform: translateY(-50%) scale(0.92);
	transition: opacity 180ms ease, transform 180ms ease, background 180ms ease;
}

.hero-section:hover .hero-video-toggle,
.hero-video-toggle:focus-visible {
	opacity: 1;
	transform: translateY(-50%) scale(1);
}

.hero-video-toggle svg {
	width: 22px;
	height: 22px;
	fill: currentColor;
}

.hero-video-toggle__icon--playing {
	display: none;
}

.hero-video-toggle[aria-pressed="true"] .hero-video-toggle__icon--muted {
	display: none;
}

.hero-video-toggle[aria-pressed="true"] .hero-video-toggle__icon--playing {
	display: inline-flex;
}

.hero-video-toggle span:last-child {
	font-size: 0.82rem;
	font-weight: 900;
	text-transform: uppercase;
}

.hero-content,
.hero-metrics,
.section,
.client-marquee-section,
.site-footer__grid,
.site-footer__bottom,
.page-hero,
.page-content,
.comments-area {
	width: min(var(--max), calc(100% - 2rem));
	margin-inline: auto;
}

.hero-content {
	position: relative;
	z-index: 2;
	padding-bottom: 5rem;
}

.hero-content p {
	max-width: 710px;
	font-size: 1.2rem;
}

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	color: var(--lime);
	font-size: 0.78rem;
	font-weight: 900;
	text-transform: uppercase;
}

.eyebrow::before {
	content: "";
	width: 28px;
	height: 2px;
	background: currentColor;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-top: 1.4rem;
}

.hero-metrics {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1px;
	border: 1px solid var(--line);
	background: var(--line);
	border-radius: var(--radius);
	overflow: hidden;
}

.hero-metrics div {
	min-height: 112px;
	padding: 1.1rem;
	background: rgba(255, 255, 255, 0.78);
	backdrop-filter: blur(16px);
}

.hero-metrics strong {
	display: block;
	font-size: 2rem;
	line-height: 1;
}

.hero-metrics span {
	display: block;
	margin-top: 0.35rem;
	color: var(--muted);
}

.hero-scroll-cue {
	position: absolute;
	z-index: 4;
	left: 50%;
	bottom: 1.1rem;
	display: grid;
	place-items: center;
	width: 78px;
	height: 78px;
	border: 1px solid rgba(17, 24, 39, 0.15);
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.68);
	box-shadow: 0 18px 44px rgba(17, 24, 39, 0.12);
	backdrop-filter: blur(14px);
	transform: translateX(-50%);
}

.hero-scroll-cue span {
	display: block;
	width: 26px;
	height: 26px;
	border-right: 4px solid var(--text);
	border-bottom: 4px solid var(--text);
	transform: translateY(-6px) rotate(45deg);
	animation: arrow-drop 1.35s ease-in-out infinite;
}

.section,
.client-marquee-section {
	padding: 6rem 0;
}

.section-heading {
	display: grid;
	gap: 0.7rem;
	margin-bottom: 2rem;
}

.section-heading p:not(.eyebrow) {
	max-width: 700px;
	font-size: 1.08rem;
}

.story-grid {
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: 2rem;
	align-items: stretch;
}

.story-copy {
	display: grid;
	align-content: center;
	min-height: 380px;
	padding: 2rem;
	border-left: 2px solid var(--coral);
	background: linear-gradient(90deg, rgba(255, 93, 87, 0.12), rgba(255, 255, 255, 0.52));
}

.story-copy p {
	font-size: 1.35rem;
	color: var(--text);
}

.text-link {
	display: inline-flex;
	width: max-content;
	margin-top: 1rem;
	color: var(--lime);
	font-weight: 900;
}

.process-board {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	overflow: hidden;
	background: var(--line);
}

.process-board span {
	display: grid;
	place-items: center;
	min-height: 188px;
	padding: 1rem;
	background: var(--bg-elevated);
	font-size: 1.2rem;
	font-weight: 900;
	position: relative;
	overflow: hidden;
}

.process-board span::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(120deg, transparent 0 35%, rgba(22, 217, 227, 0.16) 35% 45%, transparent 45%),
		linear-gradient(20deg, rgba(17, 24, 39, 0.04), transparent);
	transform: translateX(-100%);
	animation: scan 5.5s ease-in-out infinite;
}

.process-board span:nth-child(2n)::before {
	animation-delay: 900ms;
	background:
		linear-gradient(120deg, transparent 0 35%, rgba(255, 93, 87, 0.16) 35% 45%, transparent 45%),
		linear-gradient(20deg, rgba(17, 24, 39, 0.04), transparent);
}

.card-grid,
.testimonial-grid,
.team-grid,
.project-grid,
.post-grid,
.review-grid {
	display: grid;
	gap: 1rem;
}

.card-grid--services {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.motion-card,
.testimonial-card,
.team-card,
.project-card,
.post-card,
.review-card,
.notice-panel {
	position: relative;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 253, 0.9));
	overflow: hidden;
	box-shadow: 0 18px 46px rgba(17, 24, 39, 0.07);
}

.motion-card {
	min-height: 270px;
	padding: 1.3rem;
	display: grid;
	align-content: space-between;
	gap: 1rem;
	transition: transform 200ms ease, border-color 200ms ease, background 200ms ease;
}

.motion-card::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(135deg, color-mix(in srgb, var(--accent), transparent 74%), transparent 52%),
		repeating-linear-gradient(0deg, rgba(17, 24, 39, 0.04) 0 1px, transparent 1px 18px);
	opacity: 0.65;
}

.motion-card > * {
	position: relative;
}

.motion-card__visual {
	height: 132px;
	margin: -0.2rem -0.2rem 0.3rem;
	border-radius: var(--radius);
	overflow: hidden;
	background: #fff;
	box-shadow: inset 0 0 0 1px rgba(17, 24, 39, 0.08);
}

.motion-card__visual img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.motion-card:hover {
	transform: translateY(-6px);
	border-color: color-mix(in srgb, var(--accent), black 8%);
	background: linear-gradient(180deg, #ffffff, #f7fafc);
}

.card-index {
	position: absolute;
	top: 1rem;
	left: 1rem;
	color: var(--accent);
	font-weight: 900;
}

.client-marquee-section {
	width: 100%;
	max-width: none;
	border-block: 1px solid var(--line);
	background: #ffffff;
}

.client-marquee-section .section-heading {
	width: min(var(--max), calc(100% - 2rem));
	margin-inline: auto;
}

.client-marquee {
	overflow: hidden;
	border-block: 1px solid var(--line);
	background: linear-gradient(90deg, rgba(22, 217, 227, 0.13), rgba(255, 93, 87, 0.12), rgba(116, 201, 31, 0.14));
}

.client-marquee__track {
	display: flex;
	width: max-content;
	min-width: 200%;
	animation: marquee 28s linear infinite;
}

.client-marquee:hover .client-marquee__track {
	animation-play-state: paused;
}

.client-marquee span {
	display: inline-flex;
	align-items: center;
	min-height: 96px;
	padding: 0 2rem;
	border-right: 1px solid rgba(17, 24, 39, 0.12);
	color: var(--text);
	font-size: 1.2rem;
	font-weight: 900;
	white-space: nowrap;
}

.locations-section {
	padding-top: 5rem;
}

.locations-grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 1rem;
}

.location-tile {
	display: grid;
	place-items: center;
	min-height: 92px;
	padding: 1rem;
	border: 1px solid rgba(17, 24, 39, 0.16);
	border-radius: var(--radius);
	background: rgba(255, 255, 255, 0.82);
	color: #0c2544;
	box-shadow: 0 14px 34px rgba(17, 24, 39, 0.06);
	font-size: 1.12rem;
	font-weight: 800;
	text-align: center;
	transition: transform 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.location-tile:hover,
.location-tile:focus-visible {
	transform: translateY(-4px);
	border-color: rgba(22, 217, 227, 0.7);
	color: #087b83;
	box-shadow: 0 22px 46px rgba(22, 217, 227, 0.14);
}

.testimonial-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.testimonial-card,
.review-card {
	min-height: 250px;
	padding: 1.4rem;
}

.quote-mark {
	color: var(--coral);
	font-size: 4rem;
	line-height: 0.8;
}

.testimonial-card h3,
.review-card h3 {
	margin-top: 1rem;
	color: #2f7d15;
	font-size: 1rem;
}

.team-grid {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.team-card {
	padding: 1rem;
}

.team-card__avatar {
	display: grid;
	place-items: center;
	aspect-ratio: 1;
	margin-bottom: 1rem;
	border-radius: var(--radius);
	background:
		linear-gradient(135deg, color-mix(in srgb, var(--accent), transparent 28%), transparent),
		repeating-linear-gradient(45deg, rgba(17, 24, 39, 0.06) 0 2px, transparent 2px 12px);
	overflow: hidden;
}

.team-card__avatar span {
	font-size: 4rem;
	font-weight: 900;
	color: var(--bg);
}

.team-card__avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.rotary-section {
	overflow: hidden;
}

.rotary-stage {
	position: relative;
	min-height: 620px;
	display: grid;
	place-items: center;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background:
		radial-gradient(circle at center, rgba(22, 217, 227, 0.13), transparent 34%),
		linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(238, 243, 248, 0.86));
	box-shadow: 0 22px 58px rgba(17, 24, 39, 0.08);
}

.rotary-stage::before,
.rotary-stage::after {
	content: "";
	position: absolute;
	inset: 12%;
	border: 1px dashed rgba(17, 24, 39, 0.18);
	border-radius: 50%;
}

.rotary-stage::after {
	inset: 24%;
	border-style: solid;
	border-color: rgba(22, 217, 227, 0.18);
}

.rotary-core {
	position: relative;
	z-index: 3;
	display: grid;
	place-items: center;
	width: min(360px, 72vw);
	aspect-ratio: 1;
	border: 1px solid var(--line);
	border-radius: 50%;
	background: #fff;
	box-shadow: 0 24px 64px rgba(17, 24, 39, 0.12);
	overflow: hidden;
}

.rotary-core img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.rotary-core span {
	position: absolute;
	left: 50%;
	bottom: 1.2rem;
	transform: translateX(-50%);
	padding: 0.45rem 0.75rem;
	border-radius: 999px;
	background: rgba(17, 24, 39, 0.86);
	color: #fff;
	font-size: 0.84rem;
	font-weight: 900;
	white-space: nowrap;
}

.rotary-orbit {
	position: absolute;
	inset: 0;
	z-index: 2;
	animation: orbit-spin 24s linear infinite;
}

.rotary-orbit--team {
	animation-duration: 30s;
	animation-direction: reverse;
}

.rotary-item {
	position: absolute;
	left: 50%;
	top: 50%;
	display: grid;
	align-content: center;
	gap: 0.25rem;
	width: 180px;
	min-height: 88px;
	padding: 0.9rem;
	border: 1px solid rgba(17, 24, 39, 0.14);
	border-radius: var(--radius);
	background: rgba(255, 255, 255, 0.9);
	box-shadow: 0 18px 42px rgba(17, 24, 39, 0.12);
	transform: translate(-50%, -50%) rotate(calc(360deg / var(--total) * var(--i))) translateY(-250px) rotate(calc(-360deg / var(--total) * var(--i)));
	text-align: center;
}

.rotary-item--team {
	width: 154px;
	min-height: 76px;
	transform: translate(-50%, -50%) rotate(calc(360deg / var(--total) * var(--i))) translateY(-178px) rotate(calc(-360deg / var(--total) * var(--i)));
}

.rotary-item strong {
	color: var(--text);
	font-size: 0.9rem;
	line-height: 1.18;
}

.rotary-item span {
	color: #087b83;
	font-size: 0.74rem;
	font-weight: 900;
	text-transform: uppercase;
}

.project-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.project-card a,
.post-card a {
	display: grid;
	height: 100%;
	color: var(--text);
}

.project-card__media {
	aspect-ratio: 1.25;
	background:
		linear-gradient(135deg, color-mix(in srgb, var(--accent), transparent 22%), rgba(255, 255, 255, 0.72)),
		repeating-linear-gradient(90deg, rgba(17, 24, 39, 0.07) 0 1px, transparent 1px 18px);
}

.project-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.project-card__content {
	padding: 1rem;
}

.post-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.post-card a {
	padding: 1.2rem;
}

.post-card span,
.stars {
	color: var(--amber);
	font-size: 0.86rem;
	font-weight: 900;
}

.hire-section {
	padding-bottom: 7rem;
}

.hire-panel {
	position: relative;
	padding: 3rem;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background:
		linear-gradient(135deg, rgba(22, 217, 227, 0.18), rgba(255, 93, 87, 0.12) 42%, rgba(116, 201, 31, 0.12)),
		var(--bg-elevated);
	overflow: hidden;
}

.hire-panel::before {
	content: "";
	position: absolute;
	inset: 0;
	background: repeating-linear-gradient(135deg, rgba(17, 24, 39, 0.045) 0 1px, transparent 1px 20px);
	pointer-events: none;
}

.hire-panel > * {
	position: relative;
}

.site-footer {
	border-top: 1px solid var(--line);
	background: #ffffff;
}

.site-footer__grid {
	display: grid;
	grid-template-columns: 1.25fr 0.8fr 0.8fr 1fr;
	gap: 2rem;
	padding: 4rem 0 2rem;
}

.site-footer h2 {
	font-size: 1rem;
	margin-bottom: 0.9rem;
}

.site-footer p,
.site-footer a {
	color: var(--muted);
}

.footer-menu {
	display: grid;
	gap: 0.35rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.footer-menu a {
	padding: 0;
	min-height: auto;
}

.site-footer__bottom {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	padding: 1rem 0 2rem;
	border-top: 1px solid var(--line);
}

.sticky-social {
	position: fixed;
	z-index: 90;
	right: 1rem;
	top: 50%;
	display: grid;
	gap: 0.45rem;
	transform: translateY(-50%);
}

.sticky-social a {
	display: grid;
	place-items: center;
	width: 44px;
	height: 44px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: rgba(255, 255, 255, 0.9);
	color: var(--text);
	backdrop-filter: blur(12px);
	font-size: 0.75rem;
	font-weight: 900;
}

.sticky-social svg {
	width: 22px;
	height: 22px;
	fill: currentColor;
}

.sticky-social__link--linkedin,
.sticky-social__link--facebook {
	background: #0a66c2;
	color: #fff;
	border-color: #0a66c2;
}

.sticky-social__link--x,
.sticky-social__link--tiktok {
	background: #050505;
	color: #fff;
	border-color: #050505;
}

.sticky-social__link--instagram {
	background: radial-gradient(circle at 30% 100%, #fed373 0 16%, #f15245 36%, #d92e7f 58%, #515ecf 100%);
	color: #fff;
	border-color: transparent;
}

.sticky-social__link--youtube {
	background: #e00000;
	color: #fff;
	border-color: #e00000;
}

.sticky-social__link--whatsapp {
	background: #25d366;
	color: #fff;
	border-color: #25d366;
}

.sticky-social a:hover,
.sticky-social a:focus-visible {
	background: var(--text);
	color: var(--bg);
}

.audio-toggle {
	position: fixed;
	z-index: 92;
	left: 1rem;
	bottom: 1rem;
	display: flex;
	align-items: center;
	gap: 0.55rem;
	max-width: min(320px, calc(100vw - 2rem));
	min-height: 50px;
	padding: 0.45rem 0.75rem 0.45rem 0.45rem;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: rgba(255, 255, 255, 0.92);
	color: var(--text);
	backdrop-filter: blur(14px);
	cursor: pointer;
}

.audio-toggle canvas {
	width: 96px;
	height: 32px;
	border-radius: 6px;
	background: rgba(17, 24, 39, 0.06);
}

.audio-toggle span {
	font-size: 0.84rem;
	font-weight: 900;
}

.audio-toggle[aria-pressed="true"] {
	border-color: rgba(116, 201, 31, 0.65);
}

.cursor-follower {
	position: fixed;
	z-index: 1000;
	left: 0;
	top: 0;
	display: none;
	place-items: center;
	width: 48px;
	height: 48px;
	border: 1px solid rgba(17, 24, 39, 0.22);
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.7);
	box-shadow: 0 12px 30px rgba(17, 24, 39, 0.14);
	backdrop-filter: blur(10px);
	pointer-events: none;
	transform: translate3d(-100px, -100px, 0);
	transition: width 160ms ease, height 160ms ease, background 160ms ease, border-color 160ms ease;
}

.cursor-follower span {
	color: var(--text);
	font-size: 0.62rem;
	font-weight: 900;
	text-transform: uppercase;
}

.cursor-follower.is-visible {
	display: grid;
}

.cursor-follower.is-active {
	width: 68px;
	height: 68px;
	background: rgba(17, 24, 39, 0.88);
	border-color: rgba(17, 24, 39, 0.88);
}

.cursor-follower.is-active span {
	color: #fff;
}

.cursor-follower.is-hero {
	width: 92px;
	height: 92px;
	background: rgba(255, 255, 255, 0.86);
	border-color: rgba(22, 217, 227, 0.75);
}

.page-hero {
	padding: 9rem 0 3rem;
}

.compact-hero {
	min-height: 420px;
	display: grid;
	align-items: end;
}

.state-hero {
	min-height: 520px;
	display: grid;
	align-items: end;
	border-bottom: 1px solid var(--line);
	background:
		linear-gradient(135deg, rgba(22, 217, 227, 0.16), transparent 44%, rgba(245, 184, 75, 0.12)),
		repeating-linear-gradient(90deg, rgba(17, 24, 39, 0.05) 0 1px, transparent 1px 32px);
}

.page-content,
.comments-area {
	max-width: 900px;
	padding: 2rem 0 5rem;
}

.page-content > * {
	max-width: 900px;
}

.page-content a {
	color: #087b83;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 0.18em;
}

.page-content img {
	border-radius: var(--radius);
}

.state-content-grid {
	max-width: 1100px;
	display: grid;
	grid-template-columns: minmax(0, 1fr) 360px;
	gap: 2rem;
	align-items: start;
}

.state-content-grid > * {
	max-width: none;
}

.state-visual-card {
	position: sticky;
	top: 96px;
	padding: 1rem;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: rgba(255, 255, 255, 0.86);
	box-shadow: 0 18px 46px rgba(17, 24, 39, 0.08);
}

.state-visual-card img {
	width: 100%;
	aspect-ratio: 1.25;
	object-fit: cover;
	margin-bottom: 1rem;
}

.state-visual-card h2 {
	font-size: 1.2rem;
	margin-bottom: 0.4rem;
}

.single-featured {
	width: min(980px, calc(100% - 2rem));
	margin: 0 auto 2rem;
}

.single-featured img {
	width: 100%;
	max-height: 620px;
	object-fit: cover;
	border-radius: var(--radius);
}

.post-meta {
	color: var(--amber);
}

.review-form {
	display: grid;
	gap: 1rem;
	margin-bottom: 2rem;
	padding: 1.2rem;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: rgba(255, 255, 255, 0.78);
}

.notice-panel {
	padding: 1rem;
	margin-bottom: 1.2rem;
}

.notice-panel.success {
	border-color: rgba(116, 201, 31, 0.6);
}

.review-grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.search-form {
	display: flex;
	gap: 0.75rem;
	max-width: 680px;
}

.search-form label {
	flex: 1;
}

.wp-caption,
.gallery-caption,
.bypostauthor {
	color: inherit;
}

.alignwide {
	width: min(1100px, 100%);
}

.alignfull {
	width: 100vw;
	max-width: none;
	margin-left: calc(50% - 50vw);
}

.wp-block-separator {
	border-color: var(--line);
}

.comment-list {
	padding-left: 1.2rem;
}

.comment-form {
	display: grid;
	gap: 1rem;
}

.reveal {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

@keyframes marquee {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(-50%);
	}
}

@keyframes scan {
	0%,
	30% {
		transform: translateX(-100%);
	}
	65%,
	100% {
		transform: translateX(100%);
	}
}

@keyframes color-shift {
	from {
		filter: hue-rotate(0deg) saturate(1);
		transform: scale(1);
	}
	to {
		filter: hue-rotate(24deg) saturate(1.25);
		transform: scale(1.04);
	}
}

@keyframes arrow-drop {
	0%,
	100% {
		opacity: 0.55;
		transform: translateY(-8px) rotate(45deg);
	}
	50% {
		opacity: 1;
		transform: translateY(7px) rotate(45deg);
	}
}

@keyframes orbit-spin {
	to {
		transform: rotate(360deg);
	}
}

@media (max-width: 1024px) {
	h1 {
		font-size: 3.7rem;
	}

	h2 {
		font-size: 2.45rem;
	}

	.primary-navigation,
	.header-hire {
		display: none;
	}

	.menu-toggle {
		display: block;
	}

	.site-header__actions {
		margin-left: auto;
	}

	.story-grid,
	.site-footer__grid {
		grid-template-columns: 1fr 1fr;
	}

	.card-grid--services,
	.testimonial-grid,
	.project-grid,
	.post-grid,
	.locations-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.team-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 720px) {
	h1 {
		font-size: 2.5rem;
	}

	h2 {
		font-size: 2rem;
	}

	h3 {
		font-size: 1.2rem;
	}

	.site-header__inner {
		min-height: 66px;
	}

	.site-brand__text small {
		display: none;
	}

	.hero-section {
		min-height: 88svh;
		padding-top: 7rem;
	}

	.hero-content {
		padding-bottom: 3rem;
	}

	.hero-content p {
		font-size: 1rem;
	}

	.hero-motion-screen {
		grid-template-columns: repeat(3, 1fr);
	}

	.hero-motion-screen span {
		font-size: 1.35rem;
	}

	.hero-video-toggle {
		top: auto;
		right: 1rem;
		bottom: 6rem;
		opacity: 1;
		transform: none;
	}

	.hero-motion-screen span:nth-child(n+4) {
		display: none;
	}

	.hero-metrics,
	.story-grid,
	.process-board,
	.card-grid--services,
	.testimonial-grid,
	.team-grid,
	.project-grid,
	.post-grid,
	.review-grid,
	.locations-grid,
	.site-footer__grid {
		grid-template-columns: 1fr;
	}

	.hero-metrics div,
	.process-board span {
		min-height: 110px;
	}

	.section,
	.client-marquee-section {
		padding: 4rem 0;
	}

	.story-copy,
	.hire-panel {
		padding: 1.2rem;
	}

	.story-copy {
		min-height: auto;
	}

	.story-copy p {
		font-size: 1.08rem;
	}

	.client-marquee span {
		min-height: 76px;
		padding-inline: 1.25rem;
		font-size: 1rem;
	}

	.site-footer__bottom,
	.search-form {
		display: grid;
	}

	.sticky-social {
		right: 0.6rem;
	}

	.sticky-social a {
		width: 40px;
		height: 40px;
	}

	.rotary-stage {
		min-height: auto;
		display: grid;
		gap: 1rem;
		padding: 1rem;
	}

	.rotary-stage::before,
	.rotary-stage::after {
		display: none;
	}

	.rotary-core {
		width: 100%;
		max-width: 420px;
		border-radius: var(--radius);
		aspect-ratio: 1.35;
	}

	.rotary-orbit {
		position: static;
		display: grid;
		grid-template-columns: 1fr;
		gap: 0.75rem;
		animation: none;
		width: 100%;
	}

	.rotary-item,
	.rotary-item--team {
		position: static;
		width: 100%;
		min-height: 72px;
		transform: none;
	}

	.audio-toggle {
		right: 0.6rem;
		left: 0.6rem;
		bottom: 0.6rem;
		justify-content: center;
	}

	.state-content-grid {
		grid-template-columns: 1fr;
	}

	.state-visual-card {
		position: static;
	}
}

@media (pointer: fine) and (min-width: 900px) {
	body {
		cursor: none;
	}

	a,
	button,
	input,
	textarea,
	select {
		cursor: none;
	}
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		animation-duration: 1ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 1ms !important;
	}

	.reveal {
		opacity: 1;
		transform: none;
	}
}
