:root {
	--bg: #f4f7fb;
	--bg-accent: #edf6fc;
	--surface: #ffffff;
	--surface-soft: #f8fafc;
	--surface-muted: #eef5fb;
	--line: #e2e8f0;
	--line-strong: #cbd5e1;
	--ink: #0f172a;
	--muted: #64748b;
	--accent: #0783be;
	--accent-deep: #066998;
	--accent-soft: rgba(7, 131, 190, 0.1);
	--success: #10b981;
	--warning: #f59e0b;
	--shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.06);
	--shadow-md: 0 14px 40px rgba(15, 23, 42, 0.08);
	--radius-lg: 18px;
	--radius-md: 12px;
	--radius-sm: 8px;
	--max-width: 1400px;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: "Manrope", sans-serif;
	color: var(--ink);
	background:
		radial-gradient(circle at top right, rgba(7, 131, 190, 0.1), transparent 28%),
		linear-gradient(180deg, #f8fbfe 0%, var(--bg) 48%, #eef4fa 100%);
	line-height: 1.6;
}

body.is-intro-active {
	overflow: hidden;
}

.hidden{
	display: none !important;
	opacity: 0 !important;
	visibility: hidden !important;
	height: 0 !important;
}

.close{background:#e74c3c;}
.min{background:#f1c40f;}
.max{background:#2ecc71;}

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

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

.site-header,
.hero,
.stats-strip,
.explorer-section,
.feature-section,
.audience-section,
.benefits-section,
.workflow-section,
.faq-section,
.final-cta {
	width: min(calc(100% - 40px), var(--max-width));
	margin-inline: auto;
}

.page-shell {
	padding-bottom: 60px;
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	transition: opacity 700ms ease, transform 700ms ease, visibility 700ms ease;
}

body.is-intro-active .page-shell {
	opacity: 0;
	visibility: hidden;
	transform: translateY(18px);
}

.intro-overlay {
	position: fixed;
	inset: 0;
	z-index: 140;
	display: grid;
	place-items: center;
	padding: 28px;
	background:
		radial-gradient(circle at top, rgba(7, 131, 190, 0.16), transparent 35%),
		linear-gradient(180deg, rgba(248, 251, 254, 0.98), rgba(237, 245, 252, 0.98));
	transition: opacity 700ms ease, visibility 700ms ease;
}

.intro-overlay.is-leaving {
	opacity: 0;
	visibility: hidden;
}

.intro-shell {
	width: min(100%, 860px);
	display: grid;
	gap: 18px;
}

.intro-kicker {
	margin: 0;
	text-align: center;
	font-size: 0.85rem;
	font-weight: 800;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--accent-deep);
}

.site-header {
	position: sticky;
	top: 5px;
	z-index: 40;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	margin-top: 18px;
	padding: 14px 18px;
	background: rgba(255, 255, 255, 0.92);
	border: 1px solid var(--line);
	border-radius: 999px;
	box-shadow: var(--shadow-sm);
	backdrop-filter: blur(10px);
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 12px;
}

.brand-mark {
	display: inline-grid;
	place-items: center;
	width: 42px;
	height: 42px;
	border-radius: 12px;
	background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
	color: #fff;
	font-size: 1rem;
	font-weight: 800;
	box-shadow: 0 10px 20px rgba(7, 131, 190, 0.24);
}

.brand-mark svg {
	display: block;
	width: 30px;
	height: 42px;
}
.brand-mark-serp {
	display: inline-grid;
	place-items: center;
	width: 20px;
	height: 20px;
	border-radius: 12px;
	background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
	color: #fff;
	font-size: 1rem;
	font-weight: 800;
	box-shadow: 0 10px 20px rgba(7, 131, 190, 0.24);
}

.brand-mark-serp svg {
	display: block;
	width: 13px;
	height: 12px;
}

.intro-serp .brand-mark-serp {
	display: inline-grid;
	place-items: center;
	width: 20px;
	height: 20px;
	border-radius: 12px;
	background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
	color: #fff;
	font-size: 1rem;
	font-weight: 800;
	box-shadow: 0 10px 20px rgba(7, 131, 190, 0.24);
	margin-right: 5px;
}

.intro-serp .brand-mark-serp svg {
	display: block;
	width: 13px;
	height: 12px;
}

.brand-text {
	display: flex;
	flex-direction: column;
	line-height: 1.05;
}

.brand-text strong {
	font-size: 0.96rem;
}

.brand-text small {
	color: var(--muted);
	font-size: 0.76rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.site-nav {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
}

.site-nav a {
	padding: 10px 14px;
	border-radius: 999px;
	color: var(--muted);
	font-size: 0.95rem;
	font-weight: 700;
	transition: background-color 180ms ease, color 180ms ease;
}

.site-nav a.is-active,
.site-nav a:hover,
.site-nav a:focus-visible {
	background: var(--accent-soft);
	color: var(--accent-deep);
}

.nav-cta,
.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 0 20px;
	border-radius: 999px;
	font-weight: 700;
	transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.nav-cta,
.button-primary {
	background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
	color: #fff;
	box-shadow: 0 10px 24px rgba(7, 131, 190, 0.2);
}

.button-secondary {
	border: 1px solid var(--line-strong);
	background: var(--surface);
	color: var(--ink);
}

.nav-cta:hover,
.nav-cta:focus-visible,
.button:hover,
.button:focus-visible,
.explorer-tab:hover,
.feature-filter:hover {
	transform: translateY(-1px);
}

.hero {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(360px, 0.96fr);
	gap: 26px;
	padding-top: 56px;
	align-items: start;
}

.eyebrow,
.section-kicker,
.dashboard-eyebrow,
.card-label,
.workflow-index {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin: 0 0 14px;
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--accent-deep);
}

.eyebrow::before,
.section-kicker::before {
	content: "";
	width: 28px;
	height: 2px;
	border-radius: 999px;
	background: var(--accent);
}

.hero h1,
.section-head h2,
.final-cta h2,
.benefits-copy h2 {
	margin: 0;
	font-size: clamp(2.7rem, 5vw, 3.85rem);
	line-height: 1.25;
	letter-spacing: -0.02em;
}

.benefits-copy{
	position: sticky;
	top: 55px;
}

.hero-summary,
.section-head p,
.feature-card p,
.audience-popover,
.benefit-tile p,
.workflow-step p,
.faq-item p,
.panel-copy p,
.panel-copy li,
.dashboard-card p {
	color: var(--muted);
}

.hero-summary {
	max-width: 60ch;
	margin-top: 20px;
	font-size: 1.05rem;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 28px;
}

.hero-points {
	display: grid;
	gap: 12px;
	margin: 24px 0 0;
	padding: 0;
	list-style: none;
}

.hero-points li {
	position: relative;
	padding-left: 24px;
}

.hero-points li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.72em;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--accent);
	transform: translateY(-50%);
	box-shadow: 0 0 0 5px rgba(7, 131, 190, 0.12);
}

.hero-dashboard,
.explorer-shell,
.stat-card,
.feature-card,
.audience-item,
.benefit-tile,
.workflow-step,
.faq-item,
.final-cta {
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-sm);
}

.hero-dashboard {
	padding: 24px;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.96));
	position: sticky;
	top: 40px;
}

.hero-dashboard-header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 20px;
}

.hero-dashboard-header h2 {
	margin: 0;
	font-size: 1.7rem;
	line-height: 1.15;
}

.dashboard-badge {
	display: inline-flex;
	align-items: center;
	padding: 8px 12px;
	border-radius: 999px;
	background: var(--surface-muted);
	color: var(--accent-deep);
	font-size: 0.78rem;
	font-weight: 800;
	white-space: nowrap;
}

.dashboard-grid {
	display: grid;
	grid-template-columns: repeat(1, minmax(0, 1fr));
	gap: 14px;
}

.dashboard-card {
	padding: 18px;
	border-radius: var(--radius-md);
	background: var(--surface-soft);
	border: 1px solid var(--line);
	transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.dashboard-card h3 {
	margin: 0;
	font-size: 1.05rem;
}

.dashboard-card p {
	margin: 10px 0 0;
	font-size: 0.95rem;
}

.dashboard-card-primary {
	background: linear-gradient(135deg, #0783be 0%, #066998 100%);
	border-color: transparent;
	color: #fff;
	box-shadow: 0 12px 28px rgba(7, 131, 190, 0.18);
	animation: float-card 6.5s ease-in-out infinite;
}

.dashboard-card-primary .card-label,
.dashboard-card-primary p,
.dashboard-card-primary h3 {
	color: #fff;
}

.dashboard-card-accent {
	background: linear-gradient(180deg, #eef8fd 0%, #f8fbfe 100%);
	animation: float-card 7.5s ease-in-out infinite;
	animation-delay: 0.8s;
}

.dashboard-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 18px 34px rgba(15, 23, 42, 0.1);
	border-color: #b8d7e8;
}

.stats-strip {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 16px;
	margin-top: 20px;
}

.stat-card {
	padding: 22px 18px;
	position: relative;
	overflow: hidden;
	transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.stat-card::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 4px;
	background: linear-gradient(90deg, var(--accent) 0%, #2ea7dc 100%);
}

.stat-card::after,
.feature-card::after,
.audience-item::after,
.benefit-tile::after,
.workflow-step::after,
.faq-item::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.78) 48%, transparent 100%);
	transform: translateX(-130%);
	opacity: 0;
	pointer-events: none;
}

.stat-value,
.stat-suffix {
	font-size: 2rem;
	font-weight: 800;
	line-height: 1;
	color: var(--accent-deep);
}

.stat-card p {
	margin: 10px 0 0;
	color: var(--muted);
	font-size: 0.92rem;
}

.explorer-section,
.feature-section,
.audience-section,
.benefits-section,
.workflow-section,
.faq-section,
.final-cta {
	margin-top: 92px;
}

.section-head {
	max-width: 1200px;
}

.section-head h2 {
	font-size: clamp(2rem, 4vw, 3.6rem);
}

.section-head p {
	margin: 16px 0 0;
}

.explorer-shell {
	margin-top: 28px;
	overflow: hidden;
	position: relative;
	border: 1px solid var(--line);
	border-radius: 24px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 250, 252, 0.96));
	box-shadow: var(--shadow-md);
}

.explorer-tabs {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 12px;
	padding: 12px;
	background: linear-gradient(180deg, #f8fbff 0%, #f3f8fc 100%);
	border-bottom: 1px solid var(--line);
}

.explorer-tab,
.feature-filter {
	border: 1px solid var(--line-strong);
	background: var(--surface);
	color: var(--muted);
	border-radius: 18px;
	padding: 16px 18px;
	cursor: pointer;
	text-align: left;
	transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.explorer-tab {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 14px;
	align-items: center;
	padding: 18px 16px;
	min-height: 108px;
}

.explorer-tab-index {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 14px;
	background: var(--surface-soft);
	color: var(--accent-deep);
	font-size: 0.84rem;
	font-weight: 800;
	letter-spacing: 0.08em;
}

.explorer-tab-copy strong,
.explorer-tab-copy small {
	display: block;
}

.explorer-tab-copy strong {
	font-size: 0.98rem;
	font-weight: 800;
}

.explorer-tab-copy small {
	margin-top: 4px;
	color: var(--muted);
	font-size: 0.82rem;
	line-height: 1.35;
}

.explorer-tab.is-active,
.feature-filter.is-active {
	background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
	border-color: transparent;
	color: #fff;
}

.explorer-tab.is-active {
	box-shadow: 0 14px 30px rgba(7, 131, 190, 0.18);
}

.explorer-tab.is-active .explorer-tab-index {
	background: rgba(255, 255, 255, 0.18);
	color: #fff;
}

.explorer-tab.is-active .explorer-tab-copy small {
	color: rgba(255, 255, 255, 0.82);
}

.feature-filter {
	border-radius: 999px;
	padding: 10px 14px;
	text-align: center;
}

.explorer-panels {
	padding: 16px;
	background: rgba(255, 255, 255, 0.74);
}

.explorer-panel {
	display: none;
	grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
	column-gap: 18px;
	align-items: stretch;
	animation: panel-enter 380ms ease;
	row-gap: 20px;
}

.explorer-panel.is-active {
	display: grid;
}

.panel-copy h3 {
	margin: 0;
	font-size: 1.6rem;
	line-height: 1.15;
}

.panel-copy p,
.panel-copy ul {
	margin: 14px 0 0;
}

.panel-copy ul {
	padding-left: 20px;
}

.panel-plain-english {
	grid-column: 1 / -1;
	position: relative;
	padding: 20px 22px;
	border-radius: 16px;
	background:
		linear-gradient(135deg, rgba(7, 131, 190, 0.08) 0%, rgba(46, 167, 220, 0.05) 100%);
	border: 1px solid rgba(7, 131, 190, 0.16);
	overflow: hidden;
}

.panel-copy,
.panel-preview {
	align-self: stretch;
}

.panel-plain-english::before {
	content: "";
	position: absolute;
	right: -40px;
	bottom: -80px;
	width: 220px;
	height: 220px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(7, 131, 190, 0.12), transparent 70%);
	animation: pulse-soft 2.8s ease-in-out infinite;
}

.plain-kicker {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 8px 12px;
	border-radius: 999px;
	background: #fff;
	color: var(--accent-deep);
	font-size: 0.76rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	box-shadow: var(--shadow-sm);
}

.panel-plain-english h4 {
	position: relative;
	margin: 14px 0 0;
	font-size: clamp(1.4rem, 2.4vw, 2rem);
	line-height: 1.08;
	letter-spacing: -0.03em;
	animation: plain-headline 520ms ease both;
}

.panel-plain-english h4 em {
	position: relative;
	font-style: normal;
	font-weight: 900;
	color: var(--accent-deep);
}

.panel-plain-english h4 em::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0.04em;
	height: 0.15em;
	border-radius: 999px;
	background: rgba(7, 131, 190, 0.5);
	z-index: -1;
	animation: word-highlight 1.1s ease;
}

.panel-plain-english p {
	position: relative;
	margin: 10px 0 0;
	/* max-width: 72ch; */
	color: #475569;
}

.panel-preview {
	display: flex;
	align-items: stretch;
}

.preview-window,
.preview-stack,
.ops-board,
.pixel-grid,
.serp-mockup,
.discovery-mockup,
.analytics-mockup,
.operations-mockup {
	width: 100%;
	border-radius: var(--radius-md);
	border: 1px solid var(--line);
	background: var(--surface-soft);
	padding: 10px;
}

.preview-topline {
	font-size: 0.75rem;
	font-weight: 800;
	color: var(--muted);
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.preview-title {
	display: block;
	margin-top: 12px;
	color: #1d4ed8;
	font-size: 1.1rem;
	font-weight: 700;
}

.preview-url {
	margin-top: 8px;
	font-size: 0.88rem;
	color: var(--success);
}

.preview-description {
	margin: 10px 0 0;
	color: var(--muted);
}

.preview-stack,
.ops-board {
	display: grid;
	gap: 12px;
}

.serp-mockup {
	position: relative;
	background:
		linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.serp-browser {
	display: flex;
	gap: 8px;
}

.serp-browser span {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	/* background: #d8e1eb; */
}

.serp-searchbar {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 14px;
	padding: 12px 14px;
	border-radius: 999px;
	border: 1px solid var(--line);
	background: #fff;
	color: #475569;
	font-size: 0.93rem;
	box-shadow: 0 8px 18px rgba(15, 23, 42, 0.05);
}

.serp-search-icon {
	width: 14px;
	height: 14px;
	border: 2px solid #94a3b8;
	border-radius: 50%;
	position: relative;
}

.serp-search-icon::after {
	content: "";
	position: absolute;
	right: -5px;
	bottom: -4px;
	width: 6px;
	height: 2px;
	border-radius: 999px;
	background: #94a3b8;
	transform: rotate(45deg);
}

.serp-result {
	position: relative;
	margin-top: 18px;
	padding: 18px;
	border-radius: 16px;
	background: #fff;
	border: 1px solid #dfe7ef;
	box-shadow: 0 16px 28px rgba(15, 23, 42, 0.07);
}

.serp-breadcrumbs {
	font-size: 0.83rem;
	color: #047857;
}

.serp-breadcrumbs span {
	color: #94a3b8;
	margin: 0 4px;
}

.serp-title {
	display: block;
	margin-top: 10px;
	color: #1a0dab;
	font-size: 1.2rem;
	font-weight: 700;
	line-height: 1.25;
}

.serp-description {
	margin: 10px 0 0;
	font-size: 0.95rem;
	color: #4b5563;
}

.serp-rich {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 14px;
}

.serp-tag,
.signal-chip {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 8px 12px;
	border-radius: 999px;
	font-size: 0.78rem;
	font-weight: 800;
}

.serp-tag.is-title {
	background: rgba(29, 78, 216, 0.1);
	color: #1d4ed8;
}

.serp-tag.is-description {
	background: rgba(16, 185, 129, 0.12);
	color: #047857;
}

.serp-tag.is-canonical {
	background: rgba(245, 158, 11, 0.14);
	color: #b45309;
}

.serp-explainers {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
	margin-top: 15px;
}

.serp-note {
	/* max-width: 50%; */
	position: relative;
	padding: 12px 14px 12px 18px;
	border-radius: 12px;
	background: #eff6ff;
	border-left: 4px solid var(--accent);
	font-size: 0.86rem;
	color: #334155;
}

.serp-note-desc {
	background: #ecfdf5;
	border-left-color: var(--success);
}

.intro-serp {
	padding: 18px;
	border-radius: 24px;
	box-shadow:
		0 28px 70px rgba(15, 23, 42, 0.1),
		inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.intro-serp .serp-browser,
.intro-serp .serp-searchbar,
.intro-serp [data-intro-result],
.intro-serp [data-intro-explainers] {
	opacity: 0;
	transform: translateY(18px);
	transition: opacity 480ms ease, transform 480ms ease;
}

.intro-overlay.is-started .intro-serp .serp-browser,
.intro-overlay.is-started .intro-serp .serp-searchbar {
	opacity: 1;
	transform: translateY(0);
}

.intro-overlay.is-started .intro-serp .serp-searchbar {
	transition-delay: 180ms;
}

.intro-search-query {
	min-height: 1.4em;
	font-weight: 400;
	color: var(--ink);
}

.intro-search-cursor {
	display: inline-block;
	width: 2px;
	height: 1.2em;
	margin-left: -10px;
	background: var(--ink);
	border-radius: 999px;
	animation: blink-caret 0.9s step-end infinite;
}

.intro-overlay.is-results-visible .intro-serp [data-intro-result],
.intro-overlay.is-results-visible .intro-serp [data-intro-explainers] {
	opacity: 1;
	transform: translateY(0);
}

.intro-overlay.is-results-visible .intro-serp [data-intro-explainers] {
	transition-delay: 160ms;
}

.discovery-mockup {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

.discovery-column {
	display: grid;
	gap: 12px;
}

.sitemap-tree {
	display: grid;
	gap: 10px;
	padding: 14px;
	border-radius: 14px;
	background: #fff;
	border: 1px solid var(--line);
}

.tree-node {
	padding: 10px 12px;
	border-radius: 10px;
	background: #f8fbff;
	border: 1px solid #d7e6f2;
	font-weight: 700;
	font-size: 0.88rem;
}

.tree-node-root {
	background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
	border-color: transparent;
	color: #fff;
}

.tree-branch {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
}

.discovery-signals {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	padding: 16px;
	border-radius: 14px;
	background: #fff;
	border: 1px solid var(--line);
}

.signal-chip.is-allow {
	background: rgba(16, 185, 129, 0.12);
	color: #047857;
}

.signal-chip.is-block {
	background: rgba(239, 68, 68, 0.12);
	color: #b91c1c;
}

.analytics-mockup {
	display: grid;
	gap: 14px;
}

.analytics-summary {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 10px;
}

.metric-box {
	padding: 14px;
	border-radius: 14px;
	background: #fff;
	border: 1px solid var(--line);
}

.metric-box small,
.metric-box strong,
.metric-box span {
	display: block;
}

.metric-box small {
	color: var(--muted);
	font-size: 0.78rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.metric-box strong {
	margin-top: 10px;
	font-size: 1.35rem;
}

.metric-trend {
	margin-top: 8px;
	font-size: 0.82rem;
	font-weight: 800;
}

.metric-trend.is-up {
	color: var(--success);
}

.analytics-chart {
	position: relative;
	min-height: 220px;
	padding: 18px;
	border-radius: 16px;
	background:
		linear-gradient(180deg, rgba(7, 131, 190, 0.04) 0%, rgba(7, 131, 190, 0) 100%),
		#fff;
	border: 1px solid var(--line);
	overflow: hidden;
}

.analytics-chart::before {
	content: "";
	position: absolute;
	inset: 18px 18px 18px 18px;
	background:
		linear-gradient(to top, rgba(148, 163, 184, 0.2) 1px, transparent 1px);
	background-size: 100% 25%;
	pointer-events: none;
}

.chart-bars {
	position: absolute;
	left: 22px;
	right: 22px;
	bottom: 24px;
	height: 150px;
	display: flex;
	align-items: flex-end;
	gap: 10px;
}

.chart-bars span {
	flex: 1;
	height: var(--bar-height);
	border-radius: 10px 10px 4px 4px;
	background: linear-gradient(180deg, #65c2ea 0%, var(--accent) 100%);
	box-shadow: 0 12px 20px rgba(7, 131, 190, 0.14);
	animation: graph-grow 1.2s ease both;
}

.chart-line {
	position: absolute;
	left: 26px;
	right: 26px;
	top: 46px;
	height: 124px;
}

.chart-line span {
	display: block;
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, rgba(59, 130, 246, 0.08), rgba(59, 130, 246, 0));
	clip-path: polygon(0% 82%, 12% 68%, 24% 72%, 36% 48%, 50% 54%, 63% 26%, 78% 38%, 100% 8%, 100% 100%, 0% 100%);
	border-bottom: 3px solid #2563eb;
}

.analytics-footer {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
	margin-top: 10px;
}

.event-card {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	padding: 14px;
	border-radius: 14px;
	background: #fff;
	border: 1px solid var(--line);
}

.event-card strong,
.event-card small {
	display: block;
}

.event-card small {
	margin-top: 4px;
	color: var(--muted);
}

.event-dot {
	width: 12px;
	height: 12px;
	margin-top: 4px;
	border-radius: 50%;
	flex-shrink: 0;
}

.event-dot.is-blue {
	background: var(--accent);
	box-shadow: 0 0 0 6px rgba(7, 131, 190, 0.12);
}

.event-dot.is-green {
	background: var(--success);
	box-shadow: 0 0 0 6px rgba(16, 185, 129, 0.12);
}

.operations-mockup {
	display: grid;
	gap: 12px;
}

.ops-scorecard,
.ops-table,
.ops-migration {
	padding: 16px;
	border-radius: 14px;
	background: #fff;
	border: 1px solid var(--line);
}

.ops-scorecard {
	display: grid;
	grid-template-columns: 92px 1fr;
	gap: 14px;
	align-items: center;
}

.ops-score-ring {
	width: 92px;
	height: 92px;
	border-radius: 50%;
	border: 10px solid var(--success);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.7rem;
	font-weight: 800;
	color: var(--ink);
	background: #f0fdf4;
}

.ops-score-copy strong,
.migration-label strong {
	display: block;
}

.ops-score-copy small,
.migration-label small {
	display: block;
	margin-top: 6px;
	color: var(--muted);
}

.ops-table {
	display: grid;
	gap: 8px;
}

.ops-table-row {
	display: grid;
	grid-template-columns: 1.1fr 1fr 0.8fr;
	gap: 10px;
	align-items: center;
	font-size: 0.88rem;
}

.ops-table-head {
	padding-bottom: 6px;
	border-bottom: 1px solid var(--line);
	color: var(--muted);
	font-size: 0.74rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.ops-status {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 7px 10px;
	border-radius: 999px;
	font-size: 0.76rem;
	font-weight: 800;
}

.ops-status.is-good {
	background: rgba(16, 185, 129, 0.12);
	color: #047857;
}

.ops-status.is-warn {
	background: rgba(245, 158, 11, 0.14);
	color: #b45309;
}

.ops-status.is-live {
	background: rgba(7, 131, 190, 0.1);
	color: var(--accent-deep);
}

.ops-migration {
	display: grid;
	gap: 10px;
}

.migration-bar {
	height: 12px;
	border-radius: 999px;
	background: #e2e8f0;
	overflow: hidden;
}

.migration-bar span {
	display: block;
	width: 78%;
	height: 100%;
	border-radius: inherit;
	background: linear-gradient(90deg, var(--accent) 0%, #3ab0e6 100%);
	animation: graph-grow 1.2s ease both;
}

.mini-card {
	padding: 14px;
	border-radius: var(--radius-sm);
	background: #fff;
	border: 1px solid var(--line);
}

.mini-label {
	display: block;
	font-size: 0.74rem;
	font-weight: 800;
	color: var(--muted);
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.mini-card strong,
.ops-text {
	display: block;
	margin-top: 8px;
}

.mini-card small {
	display: block;
	margin-top: 6px;
	color: var(--muted);
}

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

.pixel-grid span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 14px 12px;
	border-radius: var(--radius-sm);
	background: #fff;
	border: 1px solid var(--line);
	font-weight: 700;
	font-size: 0.9rem;
	text-align: center;
}

.ops-row {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 14px;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius-sm);
}

.ops-pill {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 88px;
	padding: 8px 10px;
	border-radius: 999px;
	font-size: 0.78rem;
	font-weight: 800;
}

.ops-pill.is-good {
	background: rgba(16, 185, 129, 0.12);
	color: #047857;
}

.ops-pill.is-live {
	background: var(--accent-soft);
	color: var(--accent-deep);
}

.ops-pill.is-soft {
	background: rgba(245, 158, 11, 0.14);
	color: #b45309;
}

.feature-toolbar {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 24px;
}

.feature-visual-board {
	margin-top: 22px;
	padding: 24px;
	border-radius: var(--radius-lg);
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 249, 253, 0.98));
	border: 1px solid var(--line);
	box-shadow: var(--shadow-sm);
}

.feature-visual-board.is-refreshing .scene-card-main,
.feature-visual-board.is-refreshing .journey-metric {
	animation: panel-enter 360ms ease;
}

.visual-board-header {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(300px, 0.9fr);
	gap: 20px;
	align-items: center;
}

.visual-board-header h3 {
	margin: 0;
	font-size: clamp(1.5rem, 2.8vw, 2.35rem);
	line-height: 1.1;
	letter-spacing: -0.03em;
}

.visual-board-summary {
	margin: 0;
	padding: 16px 18px;
	border-radius: 14px;
	background: #fff;
	border: 1px solid var(--line);
	color: var(--muted);
}

.visual-board-grid {
	display: grid;
	grid-template-columns: minmax(200px, 0.5fr) minmax(0, 1.5fr);
	gap: 18px;
	margin-top: 30px;
}

.journey-rail {
	display: grid;
	gap: 10px;
}

.journey-node {
	display: grid;
	grid-template-columns: 50px 1fr;
	gap: 12px;
	align-items: center;
	padding: 14px;
	border-radius: 16px;
	border: 1px solid var(--line);
	background: #fff;
	cursor: pointer;
	text-align: left;
	transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease, background-color 200ms ease;
}

.journey-node:hover {
	transform: translateX(4px);
	border-color: #b8d7e8;
	box-shadow: 0 14px 28px rgba(15, 23, 42, 0.08);
}

.journey-node.is-active {
	background: linear-gradient(135deg, rgba(7, 131, 190, 0.12) 0%, rgba(46, 167, 220, 0.08) 100%);
	border-color: rgba(7, 131, 190, 0.28);
	box-shadow: 0 16px 30px rgba(7, 131, 190, 0.1);
}

.journey-index {
	display: inline-grid;
	place-items: center;
	width: 46px;
	height: 46px;
	border-radius: 14px;
	background: var(--surface-soft);
	color: var(--accent-deep);
	font-size: 0.86rem;
	font-weight: 800;
}

.journey-node.is-active .journey-index {
	background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
	color: #fff;
}

.journey-copy strong,
.journey-copy small {
	display: block;
}

.journey-copy small {
	margin-top: 4px;
	color: var(--muted);
}

.journey-preview {
	display: grid;
	gap: 14px;
}

.journey-browser,
.journey-metrics {
	padding: 18px;
	border-radius: 16px;
	background: #fff;
	border: 1px solid var(--line);
}

.journey-browser-top {
	display: flex;
	gap: 8px;
}

.journey-browser-top span {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	/* background: #d8e1eb; */
}

.journey-browser-body {
	margin-top: 16px;
	padding: 18px;
	border-radius: 16px;
	background:
		linear-gradient(180deg, rgba(7, 131, 190, 0.05), rgba(7, 131, 190, 0)),
		var(--surface-soft);
	min-height: 320px;
}

.browser-scene {
	display: grid;
	gap: 18px;
	position: relative;
	min-height: 264px;
}

.scene-network {
	position: relative;
	min-height: 214px;
	border-radius: 18px;
	background:
		radial-gradient(circle at center, rgba(7, 131, 190, 0.14), rgba(7, 131, 190, 0) 45%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(248, 250, 252, 0.82));
	overflow: hidden;
}

.scene-hub {
	position: absolute;
	left: 50%;
	top: 60%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 70px;
	height: 70px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
	color: #fff;
	box-shadow:
				0 16px 38px rgba(7, 131, 190, 0.24),
				0 0 0 14px rgba(7, 131, 190, 0.08);
	transform: translate(-50%, -50%);
	z-index: 2;
}


.scene-hub svg {
	display: block;
	width: 40px;
	height: 40px;
}

.scene-line {
	position: absolute;
	left: 50%;
	top: 60%;
	height: 5px;
	border-radius: 999px;
	background: linear-gradient(90deg, rgba(7, 131, 190, 0.96), rgba(54, 188, 243, 0.58));
	transform-origin: left center;
	opacity: 0.9;
}

.line-top {
	width: 70px;
	transform: translate(0, -20px) rotate(-90deg);
}

.line-left {
	width: 160px;
	transform: translate(-25px, -10px) rotate(195deg);
}

.line-right {
	width: 190px;
	transform: translate(0, 0px) rotate(-20deg);
}

.line-bottom-right {
	width: 155px;
	transform: translate(0, 5px) rotate(10deg);
}

.line-bottom-left {
	width: 160px;
	transform: translate(0, 0px) rotate(160deg);
}

.scene-card-main {
	width: 100%;
	padding: 18px;
	border-radius: 16px;
	background: #fff;
	border: 1px solid var(--line);
	box-shadow: 0 16px 32px rgba(15, 23, 42, 0.08);
}

.scene-card-main strong,
.scene-card-main p {
	display: block;
}

.scene-card-main p {
	margin: 10px 0 0;
	color: var(--muted);
}

.floating-chip {
	position: absolute;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 18px;
	border-radius: 999px;
	font-size: 0.88rem;
	font-weight: 800;
	color: #fff;
	box-shadow: 0 14px 30px rgba(15, 23, 42, 0.12);
	animation: chip-float 5.5s ease-in-out infinite;
	white-space: nowrap;
	z-index: 1;
}

.chip-ga4 {
	top: 45px;
	left: 15%;
	background: linear-gradient(135deg, #0d84bc 0%, #18a2e3 100%);
	animation-delay: 0.4s;
}

.chip-post-titles {
	bottom: 5%;
	left: 25%;
	background: linear-gradient(135deg, #f59e0b 0%, #f9a602 100%);
	animation-delay: 1.2s;
}

.chip-facebook {
	top: 15%;
	right: 18%;
	background: linear-gradient(135deg, #2f9cd2 0%, #1971a8 100%);
	animation-delay: 0.8s;
}

.chip-onpage {
	bottom: 10%;
	right: 20%;
	background: linear-gradient(135deg, #0f8f87 0%, #18a59d 100%);
	animation-delay: 1.2s;
}

.chip-open-graph {
	top: 5%;
	left: 50%;
	padding-inline: 22px;
	background: linear-gradient(135deg, #1f4fd7 0%, #2f7af0 100%);
	transform: translateX(-50%);
	animation: chip-float-centered 5.5s ease-in-out infinite;
}

.journey-metrics {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}

.journey-metric {
	padding: 14px;
	border-radius: 14px;
	background: var(--surface-soft);
	border: 1px solid var(--line);
}

.journey-metric small,
.journey-metric strong {
	display: block;
}

.journey-metric small {
	color: var(--muted);
	font-size: 0.76rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.journey-metric strong {
	margin-top: 8px;
	font-size: 1rem;
	line-height: 1.3;
}

.feature-grid,
.benefits-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
	margin-top: 26px;
	align-items: start;
}

.feature-grid {
	max-width: 920px;
	margin-inline: auto;
}

.feature-card,
.benefit-tile,
.workflow-step,
.faq-item {
	position: relative;
	overflow: hidden;
	transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background-color 220ms ease;
}

.feature-card {
	padding: 0;
}

.benefit-tile,
.workflow-step,
.faq-item {
	padding: 24px;
}

.feature-card summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	min-height: 92px;
	padding: 22px 24px;
	list-style: none;
	cursor: pointer;
	font-size: 1.18rem;
	font-weight: 800;
}

.feature-card summary::-webkit-details-marker {
	display: none;
}

.feature-card summary::marker {
	content: "";
}

.feature-card summary span:first-child {
	max-width: none;
}

.feature-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 14px;
	background: var(--surface-soft);
	border: 1px solid var(--line);
	color: var(--ink);
	font-size: 2rem;
	font-weight: 500;
	line-height: 1;
	transition: transform 220ms ease, background-color 220ms ease, color 220ms ease, border-color 220ms ease;
}

.feature-card-body {
	padding: 0 24px 24px;
}

.feature-card[open] {
	border-color: #b8d7e8;
	box-shadow: 0 18px 34px rgba(15, 23, 42, 0.1);
}

.feature-card[open] summary {
	border-bottom: 1px solid var(--line);
}

.feature-card[open] .feature-toggle {
	transform: rotate(45deg);
	background: var(--accent-soft);
	border-color: rgba(7, 131, 190, 0.22);
	color: var(--accent-deep);
}

.feature-card[open] .feature-card-body {
	display: grid;
	align-content: start;
	gap: 16px;
	animation: accordion-drop 260ms ease;
}

.workflow-step h3 {
	margin: 0;
	font-size: 1.2rem;
}

.feature-card p,
.workflow-step p,
.benefit-tile p {
	margin: 12px 0 0;
}

.feature-card.is-hidden {
	display: none;
}

.feature-card:hover,
.feature-card:focus-within,
.benefit-tile:hover,
.workflow-step:hover,
.faq-item:hover,
.stat-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 18px 34px rgba(15, 23, 42, 0.1);
	border-color: #b8d7e8;
}

.feature-card:hover::after,
.feature-card:focus-within::after,
.scene-line:hover::after,
.benefit-tile:hover::after,
.workflow-step:hover::after,
.faq-item:hover::after,
.stat-card:hover::after {
	opacity: 1;
	animation: sweep-shine 760ms ease;
}

.feature-example {
	margin: 0;
	padding: 16px 18px;
	border: 1px dashed var(--line-strong);
	border-radius: 14px;
	background: var(--surface-soft);
	font-size: 0.94rem;
}

.audience-list {
	/* max-width: 850px; */
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin: 28px 0 0;
	padding: 0;
	list-style: none;
	position: relative;
	overflow: visible;
}

.audience-item {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 18px 20px;
	position: relative;
	cursor: default;
	transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background-color 220ms ease;
	z-index: 1;
}

.audience-check {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: var(--accent-soft);
	color: var(--accent-deep);
	font-size: 0.95rem;
	font-weight: 800;
}

.audience-label {
	font-size: 1rem;
	font-weight: 800;
}

.audience-popover {
	position: absolute;
	left: 0;
	top: calc(100% + 12px);
	width: min(320px, 70vw);
	padding: 14px 16px;
	border-radius: 14px;
	background: #0f172a;
	color: rgba(255, 255, 255, 0.88);
	box-shadow: 0 20px 36px rgba(15, 23, 42, 0.22);
	opacity: 0;
	transform: translateY(8px);
	pointer-events: none;
	transition: opacity 180ms ease, transform 180ms ease;
	z-index: 155;
}

.audience-popover::before {
	content: "";
	position: absolute;
	left: 22px;
	top: -8px;
	width: 14px;
	height: 14px;
	background: #0f172a;
	transform: rotate(45deg);
}

.audience-item:hover,
.audience-item:focus-visible {
	transform: translateY(-5px);
	box-shadow: 0 18px 34px rgba(15, 23, 42, 0.1);
	border-color: #b8d7e8;
	outline: none;
	z-index: 20;
}

.audience-item:hover::after,
.audience-item:focus-visible::after {
	opacity: 1;
	animation: sweep-shine 760ms ease;
}

.audience-item:hover .audience-popover,
.audience-item:focus-visible .audience-popover {
	opacity: 1;
	transform: translateY(0);
}

.benefits-section {
	display: grid;
	grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
	gap: 22px;
	align-items: start;
}

.faq-section {
	display: grid;
	grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
	gap: 28px;
	align-items: start;
}

.faq-section .section-head {
	max-width: none;
	position: sticky;
	top: 80px;
}

.faq-section .section-head h2 {
	font-size: clamp(2.5rem, 4.4vw, 4.8rem);
	line-height: 1.02;
	letter-spacing: -0.045em;
}

.benefit-tile {
	min-height: 168px;
}

.benefit-number {
	display: block;
	font-size: 1.95rem;
	font-weight: 800;
	color: var(--accent-deep);
}

.workflow-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
	margin-top: 24px;
}

.faq-list {
	display: grid;
	gap: 14px;
	margin-top: 0;
	max-width: 860px;
	margin-inline: 0 0;
}

.faq-item {
	padding: 0;
	border-radius: 20px;
}

.faq-item summary {
	position: relative;
	padding: 20px 56px 20px 22px;
	min-height: 82px;
	display: flex;
	align-items: center;
	font-weight: 800;
	cursor: pointer;
	list-style: none;
}

.faq-item summary::-webkit-details-marker {
	display: none;
}

.faq-item summary::after {
	content: "+";
	position: absolute;
	right: 22px;
	top: 50%;
	font-size: 1.2rem;
	font-weight: 600;
	color: var(--accent);
	transform: translateY(-50%);
}

.faq-item[open] summary::after {
	content: "−";
}

.faq-item[open] {
	border-color: #b8d7e8;
	box-shadow: 0 18px 34px rgba(15, 23, 42, 0.08);
}

.faq-item p {
	margin: 0;
	padding: 0 22px 22px;
	border-top: 1px solid var(--line);
}

.final-cta {
	padding: 34px;
	background: linear-gradient(180deg, #fff 0%, #f2f8fc 100%);
}

[data-reveal] {
	opacity: 0;
	transform: translateY(22px);
	transition: opacity 680ms ease, transform 680ms ease;
	transition-delay: var(--reveal-delay, 0ms);
}

[data-reveal="down"] {
	transform: translateY(-22px);
}

[data-reveal="left"] {
	transform: translateX(-42px);
}

[data-reveal="right"] {
	transform: translateX(42px);
}

[data-reveal="zoom"] {
	transform: scale(0.94);
}

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

[data-reveal="left"].is-visible,
[data-reveal="right"].is-visible,
[data-reveal="zoom"].is-visible {
	transform: translateX(0) scale(1);
}

@keyframes float-card {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-6px);
	}
}

@keyframes panel-enter {
	from {
		opacity: 0;
		transform: translateY(12px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes accordion-drop {
	from {
		opacity: 0;
		transform: translateY(-8px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes sweep-shine {
	from {
		transform: translateX(-130%);
	}
	to {
		transform: translateX(130%);
	}
}

@keyframes graph-grow {
	from {
		transform: scaleY(0.2);
		transform-origin: bottom;
		opacity: 0.35;
	}
	to {
		transform: scaleY(1);
		transform-origin: bottom;
		opacity: 1;
	}
}

@keyframes plain-headline {
	from {
		opacity: 0;
		transform: translateY(10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes word-highlight {
	from {
		transform: scaleX(0.2);
		transform-origin: left;
		opacity: 0;
	}
	to {
		transform: scaleX(1);
		transform-origin: left;
		opacity: 1;
	}
}

@keyframes pulse-soft {
	0%,
	100% {
		transform: scale(1);
		opacity: 0.75;
	}
	50% {
		transform: scale(1.08);
		opacity: 1;
	}
}

@keyframes chip-float {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-7px);
	}
}

@keyframes chip-float-centered {
	0%,
	100% {
		transform: translateX(-50%) translateY(0);
	}
	50% {
		transform: translateX(-50%) translateY(-7px);
	}
}

@keyframes blink-caret {
	0%,
	49% {
		opacity: 1;
	}
	50%,
	100% {
		opacity: 0;
	}
}

@media (max-width: 1080px) {
	.hero,
	.explorer-panel,
	.benefits-section,
	.faq-section {
		grid-template-columns: 1fr;
	}

	.stats-strip,
	.dashboard-grid,
	.benefits-grid,
	.workflow-grid {
		grid-template-columns: 1fr 1fr;
	}

	.discovery-mockup,
	.analytics-summary,
	.analytics-footer,
	.visual-board-header,
	.visual-board-grid {
		grid-template-columns: 1fr;
	}

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

	.journey-metrics {
		grid-template-columns: 1fr;
	}

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

	.intro-shell {
		width: min(100%, 760px);
	}

	.faq-section .section-head {
		position: static;
	}
}

@media (max-width: 860px) {
	.site-header {
		border-radius: 24px;
		gap:10px;
		padding: 10px;
		flex-wrap: wrap;
		justify-content: center;
	}

	.site-nav {
		gap: 5px;
		justify-content: center;
	}

	.hero,
	.stats-strip,
	.dashboard-grid,
	.benefits-grid,
	.workflow-grid,
	.pixel-grid,
	.discovery-mockup,
	.tree-branch,
	.analytics-summary,
	.analytics-footer,
	.journey-metrics {
		grid-template-columns: 1fr;
	}

	.hero h1 {
		font-size: clamp(2.15rem, 6vw, 3.25rem);
	}

	.section-head h2,
	.final-cta h2,
	.benefits-copy h2,
	.faq-section .section-head h2 {
		font-size: clamp(2rem, 5vw, 3rem);
		line-height: 1.04;
	}

	.intro-overlay {
		padding: 20px;
	}

	.intro-serp {
		padding: 14px;
	}

	.hero-dashboard-header {
		flex-direction: column;
	}

	.scene-card-main {
		width: 100%;
	}

	.explorer-tabs {
		grid-template-columns: 1fr;
	}

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

	.scene-network {
		min-height: 320px;
		padding: 10px;
	}

	.scene-hub {
		width: 64px;
		height: 64px;
	}

	.scene-hub svg {
		width: 34px;
		height: 34px;
	}

	.line-top {
		width: 84px;
	}

	.line-left,
	.line-right,
	.line-bottom-left,
	.line-bottom-right {
		width: 128px;
	}

	.floating-chip {
		padding: 10px 14px;
		font-size: 0.78rem;
		max-width: 148px;
		white-space: normal;
		text-align: center;
	}
}

@media (max-width: 560px) {
	.site-header,
	.hero,
	.stats-strip,
	.explorer-section,
	.feature-section,
	.audience-section,
	.benefits-section,
	.workflow-section,
	.faq-section,
	.final-cta {
		width: min(calc(100% - 24px), var(--max-width));
	}

	.site-header {
		top: 10px;
		padding: 14px;
	}

	.brand,
	.nav-cta {
		width: 100%;
		justify-content: center;
	}

	.brand {
		gap: 10px;
	}

	.brand-mark {
		width: 38px;
		height: 38px;
	}

	.brand-mark svg {
		width: 26px;
		height: 38px;
	}

	.brand-text strong {
		font-size: 0.84rem;
	}

	.brand-text small {
		font-size: 0.64rem;
	}

	.intro-shell {
		gap: 14px;
	}

	.hero-actions,
	.feature-toolbar {
		flex-direction: column;
	}

	.button,
	.feature-filter {
		width: 100%;
	}

	.site-nav a {
		padding: 8px 8px;
		font-size: 0.88rem;
	}

	.hero h1 {
		font-size: clamp(2rem, 11vw, 2.85rem);
		line-height: 1.02;
	}

	.section-head h2,
	.final-cta h2,
	.benefits-copy h2,
	.faq-section .section-head h2 {
		font-size: clamp(1.25rem, 5vw, 2.2rem);
		line-height: 1.04;
	}

	.visual-board-header h3 {
		font-size: clamp(1.15rem, 4vw, 1.5rem);
	}

	.explorer-tabs {
		gap: 10px;
	}

	.explorer-panel {
		row-gap: 16px;
	}

	.hero-dashboard,
	.feature-card,
	.benefit-tile,
	.workflow-step,
	.faq-item,
	.final-cta,
	.stat-card {
		padding: 20px;
	}

	.explorer-panels {
		padding: 12px;
	}

	.explorer-tab {
		min-height: auto;
		padding: 16px 14px;
	}

	.explorer-tab-index {
		width: 38px;
		height: 38px;
	}

	.feature-card {
		padding: 0;
	}

	.faq-item {
		padding: 0;
	}

	.feature-card summary,
	.feature-card-body {
		padding-inline: 20px;
	}

	.faq-item summary {
		padding: 18px 52px 18px 20px;
	}

	.faq-item p {
		padding: 0 20px 20px;
	}

	.journey-rail {
		grid-template-columns: 1fr;
	}

	.journey-browser-body {
		padding: 10px;
		min-height: auto;
	}

	.browser-scene {
		gap: 10px;
	}

	.scene-network {
		min-height: 238px;
		border-radius: 16px;
	}

	.scene-hub {
		width: 50px;
		height: 50px;
		box-shadow:
			0 12px 28px rgba(7, 131, 190, 0.22),
			0 0 0 8px rgba(7, 131, 190, 0.08);
	}

	.scene-hub svg {
		width: 26px;
		height: 26px;
	}

	.line-top {
		width: 54px;
	}

	.line-left,
	.line-right,
	.line-bottom-left,
	.line-bottom-right {
		width: 86px;
	}

	.floating-chip {
		padding: 8px 10px;
		font-size: 0.7rem;
		line-height: 1.2;
		max-width: 112px;
		border-radius: 999px;
	}

	.chip-open-graph {
		top: 10px;
		left: 50%;
		max-width: 126px;
	}

	.chip-ga4 {
		top: 66px;
		left: 10px;
	}

	.chip-facebook {
		top: 66px;
		right: 10px;
	}

	.chip-post-titles {
		left: 14px;
		bottom: 16px;
	}

	.chip-onpage {
		right: 14px;
		bottom: 16px;
	}

	.scene-card-main {
		padding: 16px;
	}

	.scene-card-main strong {
		font-size: 1.15rem;
		line-height: 1.15;
	}

	.scene-card-main p {
		font-size: 0.94rem;
	}

	.feature-card summary {
		min-height: 84px;
	}

	.audience-list {
		flex-direction: column;
	}

	.audience-popover {
		position: static;
		width: 100%;
		margin-top: 12px;
		opacity: 1;
		transform: none;
		pointer-events: auto;
		display: none;
	}

	.audience-popover::before {
		display: none;
	}

	.audience-item:hover .audience-popover,
	.audience-item:focus-visible .audience-popover {
		display: block;
	}
}

@media (max-width: 420px) {
	.site-header,
	.hero,
	.stats-strip,
	.explorer-section,
	.feature-section,
	.audience-section,
	.benefits-section,
	.workflow-section,
	.faq-section,
	.final-cta {
		width: min(calc(100% - 18px), var(--max-width));
	}

	.hero h1,
	.section-head h2,
	.final-cta h2,
	.benefits-copy h2,
	.faq-section .section-head h2 {
		font-size: clamp(1.8rem, 11.5vw, 2.45rem);
	}

	.explorer-tab {
		grid-template-columns: 36px 1fr;
		gap: 12px;
		padding: 14px 12px;
	}

	.explorer-tab-index {
		width: 36px;
		height: 36px;
		font-size: 0.78rem;
	}

	.explorer-tab-copy strong {
		font-size: 0.92rem;
	}

	.explorer-tab-copy small {
		font-size: 0.76rem;
	}

	.scene-network {
		min-height: 214px;
	}

	.line-top {
		width: 48px;
	}

	.line-left,
	.line-right,
	.line-bottom-left,
	.line-bottom-right {
		width: 76px;
	}

	.floating-chip {
		max-width: 98px;
		font-size: 0.66rem;
		padding: 7px 9px;
	}

	.chip-ga4,
	.chip-facebook {
		top: 60px;
	}

	.chip-post-titles,
	.chip-onpage {
		bottom: 14px;
	}

	.scene-card-main {
		padding: 14px;
	}

	.scene-card-main strong {
		font-size: 1.02rem;
	}

	.scene-card-main p {
		font-size: 0.88rem;
	}
}
