@font-face {
	font-family: 'Montserrat';
	font-style: normal;
	font-weight: 100 900;
	font-display: swap;
	src: url('https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459WlhyyTh89Y.woff2') format('woff2');
}

:root {
	color-scheme: light;
	font-family: 'Montserrat', sans-serif;
	font-synthesis: none;
	text-rendering: optimizeLegibility;
	--ink: #10262d;
	--muted: #52636a;
	--surface: #ffffff;
	--surface-soft: #f3f0e8;
	--line: #ded9cf;
	--accent: #176f7e;
	--accent-dark: #0b4f5b;
	--accent-soft: #dceef0;
	--shadow: 0 24px 60px rgb(23 33 43 / 12%);
	--shadow-soft: 0 12px 34px rgb(23 33 43 / 8%);
	--navy: #0a252c;
	--success: #1b7f5d;
}

* {
	box-sizing: border-box;
	font-family: inherit;
}

html {
	background: var(--surface-soft);
}

body {
	min-width: 320px;
	margin: 0;
	color: var(--ink);
	background: var(--surface-soft);
}

button,
input,
textarea {
	font: inherit;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: none;
	margin: 0;
	padding: 1.5rem 2rem;
	color: #fff;
	background: var(--navy);
	box-shadow: 0 8px 24px rgb(10 37 44 / 14%);
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 0.7rem;
	color: #fff;
	text-decoration: none;
}

.brand-logo {
	display: block;
	width: 10rem;
	height: auto;
}

.header-label {
	margin: 0;
	color: #c4d6da;
	font-size: 0.92rem;
	letter-spacing: 0.11em;
	text-transform: uppercase;
}

.header-actions {
	display: flex;
	align-items: center;
	gap: 1.25rem;
}

.header-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 2.65rem;
	padding: 0.65rem 1rem;
	border: 1px solid rgb(255 255 255 / 34%);
	border-radius: 0.65rem;
	color: var(--navy);
	font-size: 0.8rem;
	font-weight: 800;
	text-decoration: none;
	background: #fff;
	transition:
		transform 160ms ease,
		box-shadow 160ms ease;
}

.header-cta:hover {
	box-shadow: 0 8px 20px rgb(0 0 0 / 22%);
	transform: translateY(-1px);
}

.header-cta:focus-visible {
	outline: 3px solid var(--accent-soft);
	outline-offset: 3px;
}

.header-cta-label-short {
	display: none;
}

.page-shell {
	display: grid;
	grid-template-columns: minmax(0, 0.82fr) minmax(34rem, 1.18fr);
	gap: clamp(2.5rem, 6vw, 6rem);
	align-items: start;
	max-width: 1180px;
	margin: 0 auto;
	padding: clamp(3rem, 7vw, 6rem) 2rem;
}

.intro {
	position: sticky;
	top: 7rem;
	max-width: 32rem;
}

.eyebrow,
.step-label {
	margin: 0 0 0.9rem;
	color: var(--accent);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.24em;
	text-transform: uppercase;
}

h1,
h2,
p {
	margin-top: 0;
}

h1 {
	margin-bottom: 1.4rem;
	font-size: clamp(2.6rem, 5vw, 4.75rem);
	line-height: 0.98;
	letter-spacing: -0.055em;
}

.intro-copy {
	max-width: 31rem;
	margin-bottom: 2rem;
	color: var(--muted);
	font-size: 1.12rem;
	line-height: 1.7;
}

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

.benefit-list li {
	position: relative;
	padding-left: 1.8rem;
	font-weight: 650;
}

.benefit-list li::before {
	position: absolute;
	left: 0;
	color: var(--accent);
	content: '✓';
}

.form-card {
	padding: clamp(1.5rem, 4vw, 3rem);
	border: 1px solid var(--line);
	border-radius: 1.5rem;
	background: #fff;
	box-shadow: var(--shadow);
	backdrop-filter: blur(16px);
}

.form-heading {
	margin-bottom: 2rem;
}

.form-meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 0.9rem;
}

.form-meta .step-label {
	margin: 0;
}

.form-meta span {
	color: var(--muted);
	font-size: 0.78rem;
	font-weight: 650;
}

.form-heading h2 {
	margin-bottom: 0.65rem;
	font-size: clamp(1.8rem, 3vw, 2.45rem);
	letter-spacing: -0.035em;
}

.form-heading p:last-child {
	margin-bottom: 0;
	color: var(--muted);
	line-height: 1.6;
}

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

.field {
	display: grid;
	gap: 0.5rem;
}

.field-wide {
	grid-column: 1 / -1;
}

label {
	font-size: 0.88rem;
	font-weight: 700;
}

input,
textarea {
	width: 100%;
	padding: 0.85rem 0.95rem;
	border: 1px solid var(--line);
	border-radius: 0.75rem;
	outline: none;
	color: var(--ink);
	background: #fbfcfd;
	transition:
		border-color 160ms ease,
		box-shadow 160ms ease;
}

input {
	min-height: 3.25rem;
}

textarea {
	min-height: 7rem;
	line-height: 1.5;
	resize: vertical;
}

input::placeholder,
textarea::placeholder {
	color: #8d98a3;
}

input:focus-visible,
textarea:focus-visible {
	border-color: var(--accent);
	box-shadow: 0 0 0 4px rgb(15 103 114 / 14%);
}

.optional-label {
	color: var(--muted);
	font-size: 0.78rem;
	font-weight: 500;
}

.input-with-suffix {
	position: relative;
}

.input-with-suffix input {
	padding-right: 4.5rem;
}

.input-with-suffix span {
	position: absolute;
	top: 50%;
	right: 0.95rem;
	color: var(--muted);
	font-size: 0.82rem;
	transform: translateY(-50%);
	pointer-events: none;
}

.submit-button {
	width: 100%;
	min-height: 3.4rem;
	margin-top: 1.5rem;
	padding: 0.9rem 1.3rem;
	border: 0;
	border-radius: 0.8rem;
	color: white;
	font-weight: 800;
	cursor: pointer;
	background: linear-gradient(135deg, var(--accent), #168293);
	box-shadow: 0 10px 22px rgb(15 103 114 / 22%);
	transition:
		transform 160ms ease,
		box-shadow 160ms ease,
		background 160ms ease;
}

.submit-button:hover {
	background: linear-gradient(135deg, var(--accent-dark), var(--accent));
	box-shadow: 0 14px 28px rgb(15 103 114 / 28%);
	transform: translateY(-1px);
}

.submit-button:focus-visible {
	outline: 4px solid var(--accent-soft);
	outline-offset: 3px;
}

.form-note {
	margin: 0.9rem 0 0;
	color: var(--muted);
	font-size: 0.78rem;
	line-height: 1.5;
	text-align: center;
}

.site-footer {
	max-width: 1180px;
	margin: 0 auto;
	padding: 0 2rem 2.5rem;
	color: var(--muted);
	font-size: 0.85rem;
}

.site-footer p {
	margin-bottom: 0;
}

@media (max-width: 900px) {
	.page-shell {
		grid-template-columns: 1fr;
		gap: 2.5rem;
		padding-top: 2rem;
	}

	.intro {
		position: static;
		max-width: 42rem;
	}
}

@media (max-width: 620px) {
	.site-header {
		padding: 1.1rem 1rem;
	}

	.header-label {
		display: none;
	}

	.brand-logo {
		width: 8.5rem;
	}

	.header-actions {
		gap: 0.5rem;
	}

	.header-cta {
		min-height: 2.4rem;
		padding: 0.55rem 0.75rem;
		font-size: 0.72rem;
	}

	.header-cta-label-full {
		display: none;
	}

	.header-cta-label-short {
		display: inline;
	}

	.page-shell {
		padding: 1.5rem 1rem 3rem;
	}

	h1 {
		font-size: clamp(2.4rem, 13vw, 3.5rem);
	}

	.form-card {
		padding: 1.25rem;
		border-radius: 1rem;
	}

	.field-grid {
		grid-template-columns: 1fr;
	}

	.field-wide {
		grid-column: auto;
	}

	.site-footer {
		padding: 0 1rem 2rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	* {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
	}
}

/* Completed Search Visibility Audit */

.report-shell {
	width: min(1120px, calc(100% - 2rem));
	margin: 0 auto;
	padding: 3rem 0 5rem;
}

.report-hero,
.report-section {
	margin-bottom: 1.25rem;
	padding: clamp(1.5rem, 4vw, 3rem);
	border: 1px solid rgb(23 33 43 / 9%);
	border-radius: 1.5rem;
	background: #fff;
	box-shadow: var(--shadow-soft);
}

.report-hero {
	position: relative;
	overflow: hidden;
	color: #fff;
	background: radial-gradient(circle at 92% 8%, rgb(34 137 153 / 27%), transparent 20rem), var(--navy);
}

.report-hero::before {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 0.35rem;
	background: linear-gradient(90deg, var(--accent), #38a7b4, transparent 85%);
	content: '';
}

.report-hero .eyebrow,
.report-hero .report-domain,
.report-hero .coverage-note,
.report-hero .report-lead {
	color: #d8e5e7;
}

.report-hero h1 {
	max-width: 16ch;
	margin: 0;
	font-size: clamp(2.5rem, 7vw, 5rem);
	line-height: 0.98;
}

.report-domain,
.coverage-note {
	color: #64748b;
}

.report-domain {
	margin-top: 0.65rem;
	font-weight: 750;
}

.report-lead {
	max-width: 760px;
	font-size: clamp(1.1rem, 2vw, 1.35rem);
	line-height: 1.65;
}

.score-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
	margin: 2rem 0 1rem;
}

.score-card {
	display: flex;
	min-height: 180px;
	flex-direction: column;
	justify-content: center;
	padding: 1.5rem;
	border-radius: 1.25rem;
	border: 1px solid rgb(255 255 255 / 16%);
	background: rgb(255 255 255 / 9%);
	color: #fff;
}

.score-card-primary {
	border-color: transparent;
	background: var(--accent);
	color: #fff;
}

.score-card p,
.score-card span {
	margin: 0;
}

.score-card strong {
	margin: 0.35rem 0;
	font-size: clamp(2.75rem, 6vw, 4.5rem);
	line-height: 1;
}

.section-heading {
	max-width: 760px;
	margin-bottom: 1.75rem;
}

.section-heading h2,
.booking-section h2 {
	margin-top: 0;
	font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.section-heading > p:last-child {
	color: var(--muted);
	line-height: 1.65;
}

.section-title-row,
.test-name {
	display: flex;
	align-items: center;
	gap: 0.85rem;
}

.section-title-row h2,
.section-title-row .eyebrow {
	margin-bottom: 0.35rem;
}

.product-mark {
	display: inline-grid;
	width: 2.65rem;
	height: 2.65rem;
	flex: 0 0 auto;
	place-items: center;
	padding: 0.45rem;
	border: 1px solid #e1e7ea;
	border-radius: 0.75rem;
	color: var(--accent);
	font-weight: 900;
	background: #fff;
	box-shadow: 0 5px 14px rgb(16 38 45 / 10%);
}

.product-mark img {
	display: block;
	width: 100%;
	height: 100%;
}

.test-name .product-mark {
	width: 2rem;
	height: 2rem;
	border-radius: 0.6rem;
	font-size: 0.75rem;
}

.report-table-wrap {
	overflow-x: auto;
}

.report-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.9rem;
}

.report-table th,
.report-table td {
	padding: 0.85rem;
	border-bottom: 1px solid #e2e8f0;
	text-align: left;
	vertical-align: top;
}

.report-table th {
	color: var(--accent-dark);
	font-size: 0.75rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	background: #f4f8f9;
}

.report-table tbody tr:hover {
	background: #f8fbfc;
}

.report-table td {
	overflow-wrap: anywhere;
}

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

.report-card-rail {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
}

.organic-carousel .report-card-rail {
	display: grid;
	grid-auto-columns: calc((100% - 1rem) / 2);
	grid-auto-flow: column;
	grid-template-columns: none;
	overflow-x: auto;
	scroll-behavior: smooth;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
}

.organic-carousel .report-card-rail::-webkit-scrollbar {
	display: none;
}
.organic-carousel .ranking-card {
	scroll-snap-align: start;
}

.carousel-controls {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 0.7rem;
	margin-bottom: 0.85rem;
}

.carousel-controls > span {
	color: var(--muted);
	font-size: 0.78rem;
	font-weight: 750;
}
.carousel-button {
	display: grid;
	width: 2.6rem;
	height: 2.6rem;
	place-items: center;
	border: 1px solid #d5dfe2;
	border-radius: 50%;
	color: var(--navy);
	font-size: 1.2rem;
	font-weight: 800;
	background: #fff;
	cursor: pointer;
}
.carousel-button:hover {
	border-color: var(--accent);
	background: var(--accent-soft);
}
.carousel-button:focus-visible {
	outline: 3px solid rgb(23 111 126 / 25%);
	outline-offset: 2px;
}

.ranking-card {
	padding: 1.5rem;
	border: 1px solid rgba(15, 23, 42, 0.1);
	border-radius: 1rem;
	background: #fff;
}

.ranking-card-heading {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 1rem;
}

.ranking-card h3 {
	margin: 0.25rem 0 1rem;
}
.card-footnote {
	color: var(--muted);
	font-size: 0.84rem;
}

.rank-badge {
	min-width: 4.5rem;
	padding: 0.55rem 0.75rem;
	border-radius: 999px;
	font-size: 0.82rem;
	font-weight: 900;
	text-align: center;
}

.rank-first {
	color: #775300;
	background: #ffe69a;
}
.rank-high {
	color: #126244;
	background: #dff4e9;
}
.rank-visible {
	color: #695000;
	background: #fff1c7;
}
.rank-low {
	color: #8b342b;
	background: #fde7e3;
}

.featured-section {
	border: 2px solid rgb(23 111 126 / 24%);
	background: linear-gradient(145deg, #fff, #edf7f8);
}

.competitive-frequency {
	display: grid;
	grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
	gap: 2rem;
	margin-bottom: 1.25rem;
	padding: 1.5rem;
	border: 1px solid rgb(23 111 126 / 16%);
	border-radius: 1rem;
	background: #fff;
}

.competitive-frequency-heading h3 {
	margin: 0.25rem 0 0.75rem;
}
.competitive-frequency-heading > p:last-child {
	color: var(--muted);
	line-height: 1.55;
}
.competitive-frequency ul {
	display: grid;
	gap: 0.85rem;
	margin: 0;
	padding: 0;
	list-style: none;
}
.frequency-row > div {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 0.35rem;
}
.frequency-row > div span {
	color: var(--muted);
	font-size: 0.78rem;
}
.frequency-track {
	display: block;
	overflow: hidden;
	width: 100%;
	height: 0.65rem;
	border: 0;
	border-radius: 999px;
	background: #e5ecee;
	appearance: none;
}
.frequency-track::-webkit-progress-bar {
	border-radius: 999px;
	background: #e5ecee;
}
.frequency-track::-webkit-progress-value {
	border-radius: 999px;
	background: #80969b;
}
.frequency-track::-moz-progress-bar {
	border-radius: 999px;
	background: #80969b;
}
.frequency-target .frequency-track::-webkit-progress-value {
	background: linear-gradient(90deg, var(--accent), #35a3af);
}
.frequency-target .frequency-track::-moz-progress-bar {
	background: var(--accent);
}
.frequency-target strong {
	color: var(--accent-dark);
}

.key-result {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin: 0 0 1.25rem;
	padding: 1.25rem;
	border-radius: 1rem;
	color: #fff;
	background: var(--navy);
}

.key-result strong {
	font-size: clamp(1.75rem, 4vw, 2.75rem);
	white-space: nowrap;
}
.key-result span {
	color: #d8e5e7;
	line-height: 1.45;
}

.search-surface-diagram {
	max-width: 47.5rem;
	margin: 0 0 1.25rem;
}

.search-surface-diagram img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 1rem;
	box-shadow: 0 12px 30px rgb(23 33 43 / 9%);
}

.search-surface-diagram figcaption {
	margin-top: 0.75rem;
	color: var(--muted);
	font-size: 0.82rem;
	line-height: 1.5;
}

.platform-card {
	display: flex;
	flex-direction: column;
	border-top-width: 0.3rem;
}

.platform-card-footer {
	display: flex;
	justify-content: flex-end;
	margin-top: auto;
	padding-top: 1rem;
}

.platform-card-footer .product-mark {
	width: 3rem;
	height: 3rem;
	padding: 0.5rem;
}
.platform-chatgpt_search {
	border-top-color: #10a37f;
}
.platform-gemini {
	border-top-color: #6a7ee8;
}
.platform-claude_api {
	border-top-color: #d97757;
}
.platform-perplexity_sonar {
	border-top-color: #20808d;
}

.report-details {
	margin-top: 1.25rem;
	padding: 1rem;
	border-radius: 0.8rem;
	background: #f4f7f8;
}

.report-details summary {
	cursor: pointer;
	font-weight: 800;
}

.pagespeed-card {
	text-align: center;
}
.pagespeed-score {
	display: grid;
	width: 8.5rem;
	height: 8.5rem;
	margin: 1rem auto 1.5rem;
	place-content: center;
	border: 0.65rem solid currentColor;
	border-radius: 50%;
}
.pagespeed-score strong {
	font-size: 2.25rem;
}
.pagespeed-score span {
	display: block;
	font-size: 0.7rem;
	font-weight: 800;
	text-transform: uppercase;
}
.pagespeed-good {
	color: #0c8b5b;
	background: #edf9f4;
}
.pagespeed-needs-work {
	color: #c17b00;
	background: #fff8e8;
}
.pagespeed-poor {
	color: #c23a2b;
	background: #fff0ed;
}
.pagespeed-unknown {
	color: #64748b;
	background: #f1f5f9;
}

.finding-card {
	border-left: 0.35rem solid #7a8b91;
}
.finding-positive {
	border-left-color: #1b7f5d;
	background: #f0faf5;
}
.finding-attention {
	border-left-color: #c23a2b;
	background: #fff5f3;
}
.finding-neutral {
	border-left-color: #c17b00;
	background: #fff9ec;
}

.report-card,
.recommendation-card {
	padding: 1.5rem;
	border: 1px solid rgba(15, 23, 42, 0.1);
	border-radius: 1rem;
	background: linear-gradient(145deg, #fbfcfd, #f4f7f9);
}

.report-card {
	transition:
		border-color 160ms ease,
		transform 160ms ease;
}

.report-card:hover {
	border-color: rgb(15 103 114 / 25%);
	transform: translateY(-1px);
}

.report-card h3,
.recommendation-card h3 {
	margin-top: 0.25rem;
}

.report-card-label {
	margin-bottom: 0;
	color: #64748b;
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.test-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.75rem;
	padding: 0;
	list-style: none;
}

.test-list li {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	padding: 1rem;
	border-radius: 0.75rem;
	background: #f8fafc;
}

.test-list span {
	color: #64748b;
}

.recommendations-list {
	display: grid;
	gap: 1rem;
}

.recommendation-card {
	border-left: 0.3rem solid var(--accent);
	background: #fff;
	box-shadow: 0 8px 24px rgb(23 33 43 / 6%);
}

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

.recommendation-grid h4 {
	margin-bottom: 0.35rem;
}

.priority {
	display: inline-block;
	margin: 0 0 0.5rem;
	font-size: 0.8rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.priority-high,
.priority-medium,
.priority-low {
	padding: 0.35rem 0.6rem;
	border-radius: 999px;
}

.priority-high {
	color: #9f2d20;
	background: #ffebe7;
}

.priority-medium {
	color: #8a5a00;
	background: #fff3d2;
}

.priority-low {
	color: var(--success);
	background: #e4f5ee;
}

.monsoon-services,
.booking-section {
	border-color: transparent;
	background: radial-gradient(circle at 90% 0%, rgb(38 156 170 / 24%), transparent 24rem), var(--navy);
	color: #fff;
}

.monsoon-services .report-card {
	border-color: rgb(255 255 255 / 14%);
	background: rgb(255 255 255 / 7%);
}

.monsoon-services .report-card-label,
.monsoon-services code,
.monsoon-services p {
	color: #dce8eb;
}

.booking-section {
	text-align: center;
}

.social-proof {
	display: grid;
	max-width: 48rem;
	margin: 0 auto 2.5rem;
	padding: clamp(1.25rem, 4vw, 2rem);
	border: 1px solid rgb(255 255 255 / 18%);
	border-radius: 1.25rem;
	background: rgb(255 255 255 / 8%);
}

.review-rating {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.7rem;
	flex-wrap: wrap;
}

.review-rating strong {
	font-size: 2rem;
}
.review-rating span {
	color: #f4b627;
	letter-spacing: 0.12em;
}
.review-rating small {
	width: 100%;
	color: #b9d0d4;
}
.social-proof blockquote {
	margin: 1.25rem auto 0.75rem;
	font-size: clamp(1.15rem, 2.5vw, 1.55rem);
	font-weight: 750;
	line-height: 1.45;
}
.social-proof > p {
	margin-bottom: 0.75rem;
	color: #dce8eb;
}
.social-proof a {
	color: #fff;
	font-size: 0.82rem;
	font-weight: 750;
}

.booking-section p {
	max-width: 680px;
	margin-right: auto;
	margin-left: auto;
}

.booking-section .submit-button {
	display: inline-block;
	width: min(100%, 26rem);
	margin-top: 1rem;
	text-decoration: none;
}

.methodology-details {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
	margin: 2rem 0;
}

.methodology-details div {
	padding: 1rem;
	border-radius: 0.75rem;
	background: #f8fafc;
}

.report-hero .methodology-details div {
	background: rgb(255 255 255 / 8%);
}

.report-hero .methodology-details dt {
	color: #a8c7cc;
}

.methodology-details dt {
	color: #64748b;
	font-size: 0.8rem;
	font-weight: 700;
	text-transform: uppercase;
}

.methodology-details dd {
	margin: 0.35rem 0 0;
	font-weight: 700;
}

.processing-page {
	position: relative;
	z-index: 2;
	display: block;
	max-width: 900px;
	min-height: calc(100vh - 12rem);
}

.processing-view {
	position: relative;
	isolation: isolate;
	background: transparent;
}

.processing-view .site-footer {
	position: relative;
	z-index: 2;
}

.report-view {
	position: relative;
	isolation: isolate;
	background: transparent;
}

.report-view .report-shell,
.report-view .site-footer {
	position: relative;
	z-index: 2;
}

.monsoon-water {
	--water-level: 0%;
	position: fixed;
	z-index: 0;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	pointer-events: none;
	background: transparent;
}

.monsoon-water.is-fallback {
	background: linear-gradient(180deg, transparent calc(100% - var(--water-level)), rgb(44 152 169 / 24%) calc(100% - var(--water-level)), rgb(12 75 89 / 48%));
}

.water-motion-control,
.water-motion-status {
	display: none;
}

.water-motion-control[hidden],
.water-motion-status[hidden] {
	display: none !important;
}

.processing-card {
	position: relative;
	overflow: hidden;
	padding: clamp(2rem, 6vw, 4.5rem);
	border: 1px solid var(--line);
	border-radius: 1.5rem;
	background: #fff;
	box-shadow: var(--shadow);
}

.processing-card::before {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 0.4rem;
	background: linear-gradient(90deg, var(--accent), #2f9aa7 72%, #f4b627);
	content: '';
}

.processing-card h1 {
	max-width: 14ch;
	font-size: clamp(2.4rem, 7vw, 4.5rem);
}

.processing-status,
.processing-stage,
.processing-note {
	padding: 1.35rem;
	border-radius: 1rem;
}

.processing-status {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin: 2rem 0 1rem;
	color: #fff;
	background: var(--navy);
}

.processing-status p,
.processing-stage p,
.processing-note p {
	margin-bottom: 0;
	line-height: 1.6;
}

.processing-status .status-label {
	margin-bottom: 0.2rem;
	color: #8ed2da;
	font-size: 0.75rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.processing-indicator {
	width: 1rem;
	height: 1rem;
	flex: 0 0 auto;
	border: 0.2rem solid rgb(255 255 255 / 28%);
	border-top-color: #f4b627;
	border-radius: 50%;
	animation: processing-spin 1s linear infinite;
}

.processing-stage {
	margin-bottom: 1rem;
	border: 1px solid var(--line);
	background: var(--surface-soft);
}

.audit-progress-heading {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 1rem;
}

.audit-progress-percent {
	color: var(--navy);
	font-size: 1.35rem;
}

.audit-progress-track {
	overflow: hidden;
	height: 0.55rem;
	margin: 1rem 0 1.25rem;
	border-radius: 999px;
	background: #dbe6e8;
}

.audit-progress-track span {
	display: block;
	width: 0;
	height: 100%;
	border-radius: inherit;
	background: linear-gradient(90deg, var(--accent), #2f9aa7);
	transition: width 400ms ease;
}

.audit-progress-list {
	display: grid;
	gap: 0.55rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.audit-progress-item {
	display: grid;
	grid-template-columns: 1.5rem minmax(0, 1fr) auto;
	align-items: center;
	gap: 0.75rem;
	padding: 0.75rem 0.85rem;
	border: 1px solid #dce7e9;
	border-radius: 0.7rem;
	background: #fff;
}

.audit-progress-icon {
	display: grid;
	width: 1.35rem;
	height: 1.35rem;
	place-items: center;
	border: 2px solid #9aadb1;
	border-radius: 50%;
	color: #fff;
	font-size: 0.9rem;
	font-weight: 900;
	line-height: 1;
}

.audit-progress-copy {
	display: grid;
	gap: 0.1rem;
}

.audit-progress-copy strong {
	color: var(--navy);
	font-size: 0.9rem;
}

.audit-progress-copy span,
.audit-progress-message {
	color: var(--muted);
	font-size: 0.78rem;
}

.audit-progress-count {
	min-width: 3rem;
	color: #526b70;
	font-size: 0.8rem;
	font-variant-numeric: tabular-nums;
	font-weight: 800;
	text-align: right;
}

.audit-progress-item.is-running .audit-progress-icon {
	border-color: #b8dfe3;
	border-top-color: var(--accent);
	animation: processing-spin 1s linear infinite;
}

.audit-progress-item.is-complete .audit-progress-icon,
.audit-progress-item.is-unavailable .audit-progress-icon {
	border-color: var(--accent);
	background: var(--accent);
	box-shadow: 0 3px 8px rgb(23 111 126 / 22%);
}

.audit-progress-item.is-complete .audit-progress-icon::after {
	content: '✓';
}

.audit-progress-item.is-unavailable .audit-progress-icon {
	border-color: #c07c18;
	background: #c07c18;
}

.audit-progress-item.is-unavailable .audit-progress-icon::after {
	content: '!';
}

.audit-progress-message {
	margin-top: 1rem;
}

.processing-stage h2,
.processing-note h2 {
	margin-bottom: 0.5rem;
	font-size: 1.15rem;
}

.processing-note {
	border-left: 0.3rem solid var(--accent);
	background: var(--accent-soft);
}

.processing-cta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	margin-top: 2rem;
	padding-top: 2rem;
	border-top: 1px solid var(--line);
}

.processing-cta p {
	max-width: 32rem;
	margin: 0;
	color: var(--muted);
}

.processing-cta .submit-button {
	width: auto;
	min-width: 12rem;
	text-decoration: none;
}

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

@media (prefers-reduced-motion: reduce) {
	.processing-indicator,
	.audit-progress-item.is-running .audit-progress-icon {
		animation: none;
	}

	.audit-progress-track span {
		transition: none;
	}
}

.limitations-list {
	padding-left: 1.25rem;
}

.limitations-list li + li {
	margin-top: 0.75rem;
}

@media (max-width: 760px) {
	.processing-view .processing-page {
		padding-right: clamp(1.75rem, 7vw, 2rem);
		padding-left: clamp(1.75rem, 7vw, 2rem);
	}

	.processing-view .processing-card {
		padding: 1rem;
	}

	.processing-view .processing-stage {
		width: calc(100% + 2rem);
		margin-right: -1rem;
		margin-left: -1rem;
		border-right: 0;
		border-left: 0;
		border-radius: 0.75rem;
	}

	.water-motion-control:not([hidden]),
	.water-motion-status:not([hidden]) {
		position: fixed;
		z-index: 4;
		bottom: max(1rem, env(safe-area-inset-bottom));
		left: 50%;
		display: flex;
		max-width: calc(100vw - 2rem);
		min-height: 3rem;
		align-items: center;
		justify-content: center;
		padding: 0.75rem 1.1rem;
		border: 1px solid rgb(255 255 255 / 45%);
		border-radius: 999px;
		color: #fff;
		font-size: 0.8rem;
		font-weight: 800;
		line-height: 1.25;
		text-align: center;
		transform: translateX(-50%);
		background: rgb(4 46 55 / 92%);
		box-shadow: 0 0.75rem 2rem rgb(4 46 55 / 28%);
		backdrop-filter: blur(12px);
	}

	.water-motion-control:not([hidden]) {
		cursor: pointer;
	}

	.water-motion-control:not([hidden]):disabled {
		cursor: wait;
		opacity: 0.78;
	}

	.water-motion-status:not([hidden]) {
		margin: 0;
		pointer-events: none;
	}

	.score-grid,
	.report-grid,
	.recommendation-grid,
	.methodology-details {
		grid-template-columns: 1fr;
	}

	.report-card-rail {
		display: flex;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		scrollbar-width: thin;
		padding: 0 0 0.75rem;
	}

	.organic-carousel .report-card-rail {
		grid-auto-columns: min(84vw, 22rem);
	}
	.competitive-frequency {
		grid-template-columns: 1fr;
		gap: 1rem;
		padding: 1.15rem;
	}

	.report-card-rail > * {
		width: min(84vw, 22rem);
		min-width: min(84vw, 22rem);
		scroll-snap-align: start;
	}

	.test-list {
		grid-template-columns: 1fr;
	}

	.test-list li {
		flex-direction: column;
	}

	.ranking-card-heading {
		flex-direction: column;
	}
	.section-title-row {
		align-items: flex-start;
	}
	.section-title-row .product-mark {
		margin-top: 0.15rem;
	}
	.search-surface-diagram {
		margin-right: 0;
		margin-left: 0;
	}

	.report-shell {
		width: min(100% - 1rem, 1180px);
		padding-top: 1rem;
	}

	.report-hero,
	.report-section {
		border-radius: 1rem;
	}

	.processing-cta {
		align-items: stretch;
		flex-direction: column;
	}

	.processing-cta .submit-button {
		width: 100%;
	}
}
