/* ---------- Gallery chrome ---------- */

.gallery-label {
	flex: 1;
	font-size: 0.875rem;
	color: var(--text-faint);
}

@media (max-width: 700px) {
	.gallery-label {
		display: none;
	}
}

.index {
	max-width: var(--container);
	margin: 5.5rem auto 0;
	padding: 0 1.5rem 2rem;
	border-bottom: 1px solid var(--border-soft);
}

.index ol {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem 0.75rem;
}

.index a {
	display: inline-block;
	padding: 0.5rem 0.875rem;
	border-radius: 999px;
	border: 1px solid var(--border);
	font-size: 0.8125rem;
	color: var(--text-muted);
	transition:
		color 0.15s ease,
		border-color 0.15s ease;
}

.index a:hover {
	color: var(--accent-2);
	border-color: var(--accent-2);
}

.component {
	max-width: var(--container);
	margin: 0 auto;
	padding: 4.5rem 1.5rem;
	border-bottom: 1px solid var(--border-soft);
}

.component-label {
	font-size: 0.75rem;
	font-weight: 700;
	color: var(--accent-2);
	text-transform: uppercase;
	letter-spacing: 0.08em;
	margin-bottom: 1.5rem;
	font-family: var(--font-body);
}

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

/* ---------- 01 Genre carousel ---------- */

.genre-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 1.5rem;
}

.genre-head h2 {
	font-size: clamp(1.75rem, 3.5vw, 2.5rem);
}

.carousel-controls {
	display: flex;
	gap: 0.5rem;
}

.carousel-btn {
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 50%;
	border: 1px solid var(--border);
	background: var(--bg-card);
	color: var(--text);
	font-size: 1.25rem;
	cursor: pointer;
	transition: border-color 0.15s ease;
}

.carousel-btn:hover {
	border-color: var(--accent-2);
	color: var(--accent-2);
}

.genre-track {
	display: flex;
	gap: 1rem;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
	padding-bottom: 0.5rem;
}

.genre-track::-webkit-scrollbar {
	display: none;
}

.genre-card {
	position: relative;
	flex: 0 0 14rem;
	aspect-ratio: 3 / 4;
	border-radius: var(--radius-md);
	overflow: hidden;
	scroll-snap-align: start;
	border: 1px solid var(--border-soft);
}

.genre-card img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.35s ease;
}

.genre-card:hover img {
	transform: scale(1.06);
}

.genre-scrim {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(10, 10, 15, 0.9), transparent 60%);
}

.genre-name {
	position: absolute;
	left: 1rem;
	bottom: 1rem;
	right: 1rem;
	font-family: var(--font-display);
	font-size: 1.375rem;
	color: #fff;
}

/* ---------- 02 Live ticker ---------- */

.ticker {
	overflow: hidden;
	border-top: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
	padding: 1rem 0;
	mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}

.ticker-track {
	display: flex;
	gap: 3rem;
	width: max-content;
	animation: ticker-scroll 22s linear infinite;
}

.ticker-track span {
	font-size: 0.9375rem;
	color: var(--text-muted);
	white-space: nowrap;
}

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

@media (prefers-reduced-motion: reduce) {
	.ticker-track {
		animation: none;
		flex-wrap: wrap;
		width: auto;
	}
}

/* ---------- 03 Global coverage map ---------- */

.map-block {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: center;
}

.map-copy h2 {
	font-size: clamp(1.75rem, 3.5vw, 2.25rem);
}

.map-copy p {
	margin-top: 1rem;
	color: var(--text-muted);
	font-size: 1.0625rem;
}

.map-visual {
	position: relative;
	aspect-ratio: 16 / 10;
	border-radius: var(--radius-lg);
	background: var(--bg-elevated);
	border: 1px solid var(--border-soft);
	overflow: hidden;
}

.map-dots {
	position: absolute;
	inset: 0;
	background-image: radial-gradient(var(--border) 1.5px, transparent 1.5px);
	background-size: 22px 22px;
	opacity: 0.7;
}

.map-pin {
	position: absolute;
	font-size: 0.75rem;
	color: var(--accent-2);
	transform: translate(-50%, -50%);
}

.map-pin::before {
	content: '';
	position: absolute;
	left: 50%;
	top: -0.6rem;
	width: 0.5rem;
	height: 0.5rem;
	border-radius: 50%;
	background: var(--accent-2);
	transform: translateX(-50%);
	box-shadow: 0 0 10px 2px var(--accent-glow);
}

@media (max-width: 860px) {
	.map-block {
		grid-template-columns: 1fr;
	}
}

/* ---------- 04 App screenshot showcase ---------- */

.showcase {
	display: flex;
	align-items: flex-end;
	justify-content: center;
	gap: 2rem;
	flex-wrap: wrap;
}

.device {
	background: #050507;
	border-radius: 1.25rem;
	box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.device-frame-laptop {
	width: min(42rem, 100%);
	padding: 0.875rem 0.875rem 2rem;
	border: 1px solid var(--border);
	position: relative;
}

.device-frame-laptop::after {
	content: '';
	position: absolute;
	bottom: 0.75rem;
	left: 50%;
	transform: translateX(-50%);
	width: 3rem;
	height: 0.25rem;
	border-radius: 999px;
	background: var(--border);
}

.device-frame-phone {
	width: 11.5rem;
	padding: 0.625rem;
	border: 1px solid var(--border);
	border-radius: 1.75rem;
}

.device-screen {
	border-radius: 0.5rem;
	overflow: hidden;
	background: var(--bg-elevated);
}

.device-frame-phone .device-screen {
	border-radius: 1.125rem;
}

.device-screen img {
	width: 100%;
	display: block;
}

/* ---------- 05 Animated stats ---------- */

.stat-row {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2rem;
	text-align: center;
}

.big-stat-num {
	display: block;
	font-family: var(--font-display);
	font-size: clamp(2.5rem, 6vw, 3.5rem);
	color: var(--accent-2);
	font-variant-numeric: tabular-nums;
}

.big-stat-label {
	display: block;
	margin-top: 0.5rem;
	color: var(--text-muted);
	font-size: 0.9375rem;
}

@media (max-width: 700px) {
	.stat-row {
		grid-template-columns: repeat(2, 1fr);
		gap: 2rem 1rem;
	}
}

/* ---------- 06 Pricing ---------- */

.pricing {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5rem;
	max-width: 44rem;
	margin: 0 auto;
}

.price-card {
	position: relative;
	padding: 2rem;
	border-radius: var(--radius-lg);
	background: var(--bg-card);
	border: 1px solid var(--border);
}

.price-card h3 {
	font-family: var(--font-display);
	font-size: 1.5rem;
	text-transform: uppercase;
}

.price-amount {
	font-family: var(--font-display);
	font-size: 2.5rem;
	color: var(--accent-2);
	margin-top: 0.5rem;
}

.price-sub {
	font-size: 0.8125rem;
	color: var(--text-faint);
	margin-top: 0.25rem;
}

.price-card ul {
	margin-top: 1.5rem;
	display: flex;
	flex-direction: column;
	gap: 0.625rem;
}

.price-card li {
	position: relative;
	padding-left: 1.25rem;
	font-size: 0.875rem;
	color: var(--text-muted);
}

.price-card li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0.45em;
	width: 0.4rem;
	height: 0.4rem;
	border-radius: 50%;
	background: var(--accent-2);
}

.price-card .btn {
	margin-top: 1.75rem;
	width: 100%;
}

.price-card-locked {
	opacity: 0.75;
}

.price-badge {
	position: absolute;
	top: 1.25rem;
	right: 1.25rem;
	font-size: 0.6875rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--accent);
	border: 1px solid var(--accent);
	border-radius: 999px;
	padding: 0.25rem 0.625rem;
}

.price-card-locked .btn:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

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

/* ---------- 07 List your station ---------- */

.owner-cta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
	flex-wrap: wrap;
	padding: 2.5rem;
	border-radius: var(--radius-lg);
	background: linear-gradient(135deg, var(--bg-card), var(--bg-elevated));
	border: 1px solid var(--border);
}

@media (max-width: 480px) {
	.owner-cta {
		padding: 1.5rem;
	}
}

.owner-cta h2 {
	font-size: clamp(1.5rem, 3vw, 2rem);
}

.owner-cta p {
	margin-top: 0.75rem;
	color: var(--text-muted);
	max-width: 34rem;
	font-size: 0.9375rem;
}

/* ---------- 08 Blog preview ---------- */

.blog-head {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 1.5rem;
}

.blog-head h2 {
	font-size: clamp(1.75rem, 3.5vw, 2.25rem);
}

.soon-badge {
	font-size: 0.6875rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--accent);
	border: 1px solid var(--accent);
	border-radius: 999px;
	padding: 0.25rem 0.625rem;
}

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

.blog-card {
	border-radius: var(--radius-md);
	overflow: hidden;
	background: var(--bg-card);
	border: 1px solid var(--border-soft);
}

.blog-thumb {
	aspect-ratio: 16 / 10;
	background-size: cover;
	background-position: center;
}

.blog-tag {
	margin: 1.25rem 1.25rem 0;
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--accent-2);
}

.blog-card h3 {
	margin: 0.5rem 1.25rem 0;
	font-size: 1.125rem;
	line-height: 1.3;
}

.blog-card p {
	margin: 0.5rem 1.25rem 1.25rem;
	font-size: 0.875rem;
	color: var(--text-muted);
}

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

/* ---------- 09 Newsletter ---------- */

.newsletter {
	max-width: 32rem;
	margin: 0 auto;
	text-align: center;
}

.newsletter h2 {
	font-size: clamp(1.75rem, 3.5vw, 2.25rem);
}

.newsletter p {
	margin-top: 0.75rem;
	color: var(--text-muted);
}

.newsletter-form {
	margin-top: 2rem;
	display: flex;
	gap: 0.75rem;
}

.newsletter-form input {
	flex: 1;
	padding: 0.875rem 1.125rem;
	border-radius: 999px;
	border: 1px solid var(--border);
	background: var(--bg-card);
	color: var(--text);
	font-size: 0.9375rem;
	font-family: var(--font-body);
}

.newsletter-form input::placeholder {
	color: var(--text-faint);
}

.newsletter-form input:focus-visible {
	outline: 2px solid var(--accent-2);
	outline-offset: 2px;
}

@media (max-width: 600px) {
	.newsletter-form {
		flex-direction: column;
	}
}

/* ---------- 10 Tabbed FAQ ---------- */

.tabs-title {
	font-size: clamp(1.75rem, 3.5vw, 2.25rem);
	margin-bottom: 1.5rem;
	text-align: center;
}

.tab-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.5rem;
	margin-bottom: 2rem;
}

.tab-btn {
	padding: 0.625rem 1.25rem;
	border-radius: 999px;
	border: 1px solid var(--border);
	background: none;
	color: var(--text-muted);
	font-family: var(--font-body);
	font-size: 0.875rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.15s ease;
}

.tab-btn.is-active {
	background: var(--accent-2);
	border-color: var(--accent-2);
	color: #0a0a0f;
}

.tab-panel {
	max-width: 40rem;
	margin: 0 auto;
	display: grid;
	gap: 1.5rem;
}

.tab-panel[hidden] {
	display: none;
}

.tab-qa h4 {
	font-family: var(--font-body);
	font-size: 1.0625rem;
	font-weight: 600;
	margin-bottom: 0.375rem;
}

.tab-qa p {
	color: var(--text-muted);
	font-size: 0.9375rem;
}

/* ---------- 11 Video placeholder ---------- */

.video-block {
	position: relative;
	display: block;
	max-width: 48rem;
	margin: 0 auto;
	aspect-ratio: 16 / 9;
	border-radius: var(--radius-lg);
	overflow: hidden;
	border: 1px solid var(--border-soft);
}

.video-block img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top;
}

.video-scrim {
	position: absolute;
	inset: 0;
	background: rgba(10, 10, 15, 0.45);
	transition: background 0.2s ease;
}

.video-block:hover .video-scrim {
	background: rgba(10, 10, 15, 0.6);
}

.play-button {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 4.5rem;
	height: 4.5rem;
	border-radius: 50%;
	background: var(--accent-2);
	color: #0a0a0f;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	box-shadow: 0 0 40px var(--accent-glow);
}

.video-caption {
	position: absolute;
	left: 1.5rem;
	bottom: 1.25rem;
	font-family: var(--font-display);
	font-size: 1.5rem;
	color: #fff;
}

/* ---------- 12 Platform strip ---------- */

.platforms {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.75rem;
}

.platform-chip {
	padding: 0.625rem 1.25rem;
	border-radius: 999px;
	border: 1px solid var(--border);
	color: var(--text-muted);
	font-size: 0.875rem;
}

/* ---------- 13 Roadmap ---------- */

.roadmap {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2rem;
	max-width: 48rem;
	margin: 0 auto;
}

.roadmap-col {
	border-top: 2px solid var(--border);
	padding-top: 1.25rem;
}

.roadmap-status {
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin-bottom: 1rem;
}

.roadmap-live {
	color: var(--accent-2);
}

.roadmap-next {
	color: var(--text-faint);
}

.roadmap-col ul {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.roadmap-col li {
	font-size: 0.9375rem;
	color: var(--text-muted);
}

.roadmap-col:first-child li {
	color: var(--text);
}

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

/* ---------- 14 Testimonial carousel ---------- */

.testimonial {
	max-width: 36rem;
	margin: 0 auto;
	text-align: center;
}

.testimonial-track {
	position: relative;
	min-height: 8rem;
}

.testimonial-slide {
	display: none;
}

.testimonial-slide.is-active {
	display: block;
}

.testimonial-slide p {
	font-family: var(--font-display);
	font-size: 1.5rem;
	line-height: 1.3;
	text-transform: none;
	color: var(--text);
}

.testimonial-slide cite {
	display: block;
	margin-top: 1rem;
	font-style: normal;
	font-size: 0.875rem;
	color: var(--text-faint);
}

.testimonial-dots {
	display: flex;
	justify-content: center;
	gap: 0.5rem;
	margin-top: 2rem;
}

.testimonial-dot {
	width: 0.5rem;
	height: 0.5rem;
	border-radius: 50%;
	border: none;
	background: var(--border);
	cursor: pointer;
}

.testimonial-dot.is-active {
	background: var(--accent-2);
}

/* ---------- 15 Before/after slider ---------- */

.compare {
	position: relative;
	max-width: 44rem;
	margin: 0 auto;
	aspect-ratio: 16 / 10;
	border-radius: var(--radius-lg);
	overflow: hidden;
	border: 1px solid var(--border-soft);
	user-select: none;
	cursor: ew-resize;
}

.compare-after,
.compare-before {
	position: absolute;
	inset: 0;
}

.compare-after img,
.compare-before img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.compare-before img {
	filter: grayscale(1) contrast(0.85) brightness(0.7);
}

.compare-handle {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 50%;
	width: 2.75rem;
	transform: translateX(-50%);
	display: flex;
	align-items: center;
	justify-content: center;
	pointer-events: none;
}

.compare-handle span {
	width: 2.75rem;
	height: 2.75rem;
	border-radius: 50%;
	background: var(--accent-2);
	color: #0a0a0f;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.875rem;
	font-weight: 700;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

.compare-label {
	position: absolute;
	bottom: 1rem;
	font-size: 0.6875rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: #fff;
	background: rgba(10, 10, 15, 0.55);
	padding: 0.3rem 0.625rem;
	border-radius: 999px;
	pointer-events: none;
}

.compare-label-left {
	left: 1rem;
}

.compare-label-right {
	right: 1rem;
}

/* ---------- Index groups ---------- */

.index-group-label {
	font-size: 0.75rem;
	font-weight: 700;
	color: var(--text-faint);
	text-transform: uppercase;
	letter-spacing: 0.08em;
	margin: 1rem 0 0.75rem;
}

.index-group-label:first-child {
	margin-top: 0;
}

.section-h2 {
	font-size: clamp(1.75rem, 3.5vw, 2.25rem);
	margin-bottom: 1.5rem;
	text-align: center;
}

/* ---------- 16 / 32 Comparison tables ---------- */

.matrix-wrap {
	overflow-x: auto;
}

.matrix {
	width: 100%;
	max-width: 44rem;
	margin: 0 auto;
	border-collapse: collapse;
}

.matrix th,
.matrix td {
	padding: 0.875rem 1rem;
	text-align: left;
	border-bottom: 1px solid var(--border-soft);
	font-size: 0.9375rem;
}

.matrix thead th {
	font-family: var(--font-display);
	text-transform: uppercase;
	font-size: 0.8125rem;
	color: var(--text-faint);
	letter-spacing: 0.05em;
}

.matrix tbody td:first-child {
	color: var(--text);
}

.matrix th:not(:first-child),
.matrix td:not(:first-child) {
	text-align: center;
}

.mx-yes {
	color: var(--accent-2);
	font-weight: 700;
}

.mx-no {
	color: var(--text-faint);
}

.mx-soon {
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	color: var(--accent);
}

.matrix-vs td,
.matrix-vs th {
	text-align: left !important;
}

.matrix-vs td:nth-child(2) {
	color: var(--text-faint);
}

.matrix-vs td:nth-child(3) {
	color: var(--accent-2);
}

/* ---------- 17 Why free ---------- */

.explainer {
	max-width: 36rem;
	margin: 0 auto;
	text-align: center;
}

.explainer h2 {
	font-size: clamp(1.75rem, 3.5vw, 2.5rem);
}

.explainer p {
	margin-top: 1.25rem;
	color: var(--text-muted);
	font-size: 1.0625rem;
	line-height: 1.6;
	text-transform: none;
}

/* ---------- 18 Trust badges ---------- */

.trust-strip {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1rem;
}

.trust-badge {
	display: flex;
	align-items: center;
	gap: 0.625rem;
	padding: 0.875rem 1.25rem;
	border-radius: var(--radius-md);
	border: 1px solid var(--border);
	background: var(--bg-card);
	font-size: 0.875rem;
	color: var(--text-muted);
}

.trust-icon {
	font-size: 1.125rem;
}

/* ---------- 19 / 33 Invite / support cards ---------- */

.invite-card {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
	flex-wrap: wrap;
	padding: 2.5rem;
	border-radius: var(--radius-lg);
	background: linear-gradient(135deg, var(--bg-card), var(--bg-elevated));
	border: 1px solid var(--border);
}

@media (max-width: 480px) {
	.invite-card {
		padding: 1.5rem;
	}
}

.invite-card h2 {
	font-size: clamp(1.5rem, 3vw, 2rem);
}

.invite-card p {
	margin-top: 0.75rem;
	color: var(--text-muted);
	max-width: 30rem;
	font-size: 0.9375rem;
	text-transform: none;
}

.invite-copy-row {
	display: flex;
	gap: 0.75rem;
	flex-wrap: wrap;
	min-width: 0;
}

.invite-input {
	padding: 0.75rem 1.125rem;
	border-radius: 999px;
	border: 1px solid var(--border);
	background: var(--bg);
	color: var(--text-muted);
	font-size: 0.875rem;
	font-family: var(--font-body);
	width: 14rem;
	max-width: 100%;
	min-width: 0;
}

.invite-card .btn:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

/* ---------- 21 Sticky bar preview ---------- */

.device-viewport {
	position: relative;
	max-width: 40rem;
	margin: 0 auto;
	height: 12rem;
	border-radius: var(--radius-lg);
	overflow: hidden;
	border: 1px solid var(--border-soft);
	background: var(--bg-elevated);
}

.device-viewport-fill {
	position: absolute;
	inset: 0;
	background-image: linear-gradient(var(--border-soft) 1px, transparent 1px),
		linear-gradient(90deg, var(--border-soft) 1px, transparent 1px);
	background-size: 24px 24px;
	opacity: 0.5;
}

.sticky-bar-preview {
	position: absolute;
	left: 0.75rem;
	right: 0.75rem;
	bottom: 0.75rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 0.875rem 1.25rem;
	border-radius: var(--radius-md);
	background: rgba(10, 10, 15, 0.9);
	border: 1px solid var(--border);
	backdrop-filter: blur(8px);
}

.sticky-bar-preview span {
	font-size: 0.8125rem;
	color: var(--text-muted);
	text-transform: none;
}

.sticky-bar-preview .btn {
	padding: 0.5rem 1.125rem;
	font-size: 0.8125rem;
	white-space: nowrap;
}

/* ---------- 23 Embeddable widget ---------- */

.widget-block {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: center;
	max-width: 56rem;
	margin: 0 auto;
}

.widget-copy h2 {
	font-size: clamp(1.5rem, 3vw, 2rem);
}

.widget-copy p {
	margin-top: 0.75rem;
	color: var(--text-muted);
	font-size: 0.9375rem;
	text-transform: none;
}

.code-snippet {
	padding: 1.25rem;
	border-radius: var(--radius-md);
	background: var(--bg-elevated);
	border: 1px solid var(--border);
	overflow-x: auto;
	font-size: 0.8125rem;
	line-height: 1.6;
	color: var(--accent-2);
	font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

@media (max-width: 860px) {
	.widget-block {
		grid-template-columns: 1fr;
	}
}

/* ---------- 25 Community growth banner ---------- */

.growth-banner {
	text-align: center;
	padding: 3rem 2rem;
	border-radius: var(--radius-lg);
	border: 1px solid var(--border);
	background: radial-gradient(ellipse at center, var(--accent-soft), transparent 70%);
}

.growth-banner h2 {
	font-size: clamp(1.5rem, 3.5vw, 2.25rem);
	max-width: 30rem;
	margin: 0 auto;
}

.growth-banner .btn {
	margin-top: 1.75rem;
}

/* ---------- 26 Install guide ---------- */

.install-steps {
	max-width: 24rem;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	counter-reset: step;
}

.install-steps li {
	position: relative;
	padding-left: 2.25rem;
	font-size: 0.9375rem;
	color: var(--text-muted);
	counter-increment: step;
}

.install-steps li::before {
	content: counter(step);
	position: absolute;
	left: 0;
	top: -0.125rem;
	width: 1.5rem;
	height: 1.5rem;
	border-radius: 50%;
	background: var(--accent-2);
	color: #0a0a0f;
	font-size: 0.75rem;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* ---------- 27 What's new spotlight ---------- */

.whatsnew {
	max-width: 32rem;
	margin: 0 auto;
	text-align: center;
	padding: 3rem 2rem;
	border-radius: var(--radius-lg);
	border: 1px solid var(--accent);
	background: var(--bg-card);
}

.whatsnew-badge {
	display: inline-block;
	font-size: 0.6875rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: #0a0a0f;
	background: var(--accent);
	border-radius: 999px;
	padding: 0.3rem 0.75rem;
	margin-bottom: 1rem;
}

.whatsnew h2 {
	font-size: clamp(1.75rem, 3.5vw, 2.25rem);
}

.whatsnew p {
	margin-top: 0.75rem;
	color: var(--text-muted);
	font-size: 0.9375rem;
	text-transform: none;
}

.whatsnew .btn {
	margin-top: 1.5rem;
}

/* ---------- 28 Value-stack comparison ---------- */

.value-stack {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 2rem;
	flex-wrap: wrap;
	max-width: 48rem;
	margin: 0 auto;
}

.value-stack-before {
	display: flex;
	flex-direction: column;
	gap: 0.625rem;
}

.value-stack-before li {
	font-size: 0.9375rem;
	color: var(--text-faint);
	text-decoration: line-through;
}

.value-stack-arrow {
	font-family: var(--font-display);
	font-size: 2rem;
	color: var(--accent-2);
}

.value-stack-after {
	padding: 1.5rem 2rem;
	border-radius: var(--radius-lg);
	background: linear-gradient(135deg, var(--accent), #a020f0);
	color: #fff;
	font-family: var(--font-display);
	font-size: 1.5rem;
}

/* ---------- 29 Language switcher demo ---------- */

.lang-demo {
	max-width: 32rem;
	margin: 0 auto;
	text-align: center;
}

.lang-buttons {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.5rem;
	margin-bottom: 2rem;
}

.lang-sample {
	font-family: var(--font-display);
	font-size: 1.375rem;
	text-transform: none;
	color: var(--text);
	min-height: 3.5rem;
}

/* ---------- 30 No-ads commitment ---------- */

.commitment-banner {
	text-align: center;
	padding: 3.5rem 2rem;
}

.commitment-banner h2 {
	font-size: clamp(2.25rem, 6vw, 3.5rem);
	color: var(--accent-2);
}

/* ---------- 31 Personas ---------- */

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

.persona-card {
	padding: 2rem;
	border-radius: var(--radius-lg);
	background: var(--bg-card);
	border: 1px solid var(--border-soft);
	text-align: center;
}

.persona-icon {
	font-size: 2rem;
	display: block;
	margin-bottom: 1rem;
}

.persona-card h3 {
	font-family: var(--font-body);
	font-size: 1.0625rem;
	font-weight: 600;
	text-transform: none;
}

.persona-card p {
	margin-top: 0.625rem;
	font-size: 0.875rem;
	color: var(--text-muted);
	text-transform: none;
}

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

/* ---------- 34 Social share ---------- */

.share-row {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.75rem;
}

.share-chip {
	padding: 0.75rem 1.5rem;
	border-radius: 999px;
	border: 1px solid var(--border);
	background: var(--bg-card);
	color: var(--text-muted);
	font-size: 0.875rem;
	font-family: var(--font-body);
	cursor: pointer;
	transition: border-color 0.15s ease;
}

.share-chip:hover {
	border-color: var(--accent-2);
	color: var(--accent-2);
}

/* ---------- 35 Mid-page CTA break ---------- */

.cta-break {
	text-align: center;
	padding: 4rem 2rem;
}

.cta-break h2 {
	font-size: clamp(2.5rem, 7vw, 4rem);
	line-height: 1;
}

.cta-break .btn {
	margin-top: 2rem;
}

/* =====================================================================
   Redesign pass — sections 16-35 (full-bleed backgrounds, photo panels,
   richer layouts). Everything below intentionally overrides/extends the
   rules above where a class is reused with new markup.
   ===================================================================== */

.section-sub {
	text-align: center;
	color: var(--text-muted);
	font-size: 0.9375rem;
	margin-top: -1rem;
	margin-bottom: 2rem;
	text-transform: none;
}

.eyebrow {
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--accent-2);
	margin-bottom: 0.75rem;
}

/* ---------- Full-bleed component shell ---------- */

.component-full {
	max-width: none;
	padding: 0;
}

.bg-panel {
	position: relative;
	padding: 5rem 0;
	overflow: hidden;
}

.component-inner {
	position: relative;
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 1.5rem;
}

.component-label-overlay {
	position: absolute;
	top: 1.25rem;
	left: 1.5rem;
	z-index: 2;
	margin: 0;
	padding: 0.3rem 0.75rem;
	border-radius: 999px;
	background: rgba(10, 10, 15, 0.45);
	backdrop-filter: blur(6px);
	color: rgba(255, 255, 255, 0.75);
}

.statement-block {
	text-align: center;
	max-width: 40rem;
	margin: 0 auto;
}

.eyebrow-light {
	font-size: 0.8125rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: 1rem;
}

.display-statement {
	font-family: var(--font-display);
	font-size: clamp(2.25rem, 5.5vw, 3.75rem);
	line-height: 1.02;
	color: #fff;
}

.display-statement-huge {
	font-size: clamp(2.75rem, 8vw, 5.5rem);
}

.statement-sub {
	margin-top: 1.5rem;
	font-size: 1.0625rem;
	color: rgba(255, 255, 255, 0.85);
	text-transform: none;
	line-height: 1.6;
}

.statement-block .btn {
	margin-top: 2rem;
}

.highlight {
	background: rgba(255, 255, 255, 0.16);
	color: #fff;
	padding: 0.05em 0.4em;
	border-radius: 0.3em;
	font-weight: 600;
}

/* Gradient backgrounds, each its own mood */

.bg-gradient-violet {
	background:
		radial-gradient(ellipse 60% 90% at 20% 20%, rgba(255, 47, 176, 0.55), transparent 60%),
		radial-gradient(ellipse 70% 90% at 85% 80%, rgba(160, 32, 240, 0.55), transparent 60%),
		#120b1f;
}

.bg-gradient-sunset {
	background:
		radial-gradient(ellipse 65% 90% at 15% 25%, rgba(255, 122, 26, 0.55), transparent 60%),
		radial-gradient(ellipse 70% 90% at 90% 75%, rgba(255, 47, 176, 0.5), transparent 60%),
		#1a0e10;
}

.bg-gradient-teal {
	background:
		radial-gradient(ellipse 65% 90% at 20% 20%, rgba(186, 255, 41, 0.35), transparent 60%),
		radial-gradient(ellipse 70% 90% at 85% 80%, rgba(14, 165, 148, 0.5), transparent 60%),
		#08130f;
}

.bg-flat-dark {
	background: radial-gradient(ellipse 80% 100% at 50% 50%, #17141d, #0a0a0f 70%);
}

.bg-photo-cta {
	padding: 0;
}

.bg-photo-cta img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.bg-photo-scrim {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(10, 10, 15, 0.75), rgba(10, 10, 15, 0.9));
}

.bg-photo-cta .component-inner {
	padding: 7rem 1.5rem;
}

/* ---------- 16 Feature matrix, redesigned ---------- */

.matrix-card {
	max-width: 44rem;
	margin: 0 auto;
	border-radius: var(--radius-lg);
	border: 1px solid var(--border);
	background: var(--bg-card);
	overflow: hidden;
}

.matrix-card .matrix {
	max-width: none;
}

.matrix-card .matrix th,
.matrix-card .matrix td {
	padding: 1rem 1.5rem;
}

.matrix-col-premium {
	background: var(--accent-soft);
}

.matrix thead .matrix-col-premium {
	color: var(--accent-2);
}

.mx-check {
	display: inline-block;
	width: 1.375rem;
	height: 1.375rem;
	border-radius: 50%;
	background: var(--accent-2);
	position: relative;
}

.mx-check::after {
	content: '';
	position: absolute;
	left: 50%;
	top: 45%;
	width: 0.5rem;
	height: 0.3rem;
	border-left: 2px solid #0a0a0f;
	border-bottom: 2px solid #0a0a0f;
	transform: translate(-50%, -50%) rotate(-45deg);
}

.mx-dash {
	color: var(--text-faint);
}

/* ---------- 18 Trust grid, redesigned ---------- */

.trust-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2.5rem;
	max-width: 56rem;
	margin: 0 auto;
}

.trust-item {
	text-align: center;
}

.trust-item .trust-icon {
	width: 2.25rem;
	height: 2.25rem;
	color: var(--accent-2);
	margin-bottom: 1rem;
}

.trust-item h3 {
	font-family: var(--font-body);
	font-size: 1rem;
	font-weight: 600;
	text-transform: none;
}

.trust-item p {
	margin-top: 0.5rem;
	font-size: 0.8125rem;
	color: var(--text-muted);
	text-transform: none;
}

@media (max-width: 700px) {
	.trust-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 2rem;
	}
}

/* ---------- Photo panels (19 / 27 / 33) ---------- */

.photo-panel {
	position: relative;
	max-width: 56rem;
	margin: 0 auto;
	border-radius: var(--radius-lg);
	overflow: hidden;
	min-height: 26rem;
	display: flex;
	align-items: flex-end;
	border: 1px solid var(--border-soft);
}

.photo-panel-compact {
	min-height: 20rem;
}

.photo-panel img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.photo-panel-scrim {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(10, 10, 15, 0.15) 0%, rgba(10, 10, 15, 0.92) 85%);
}

.photo-panel-body {
	position: relative;
	padding: 2.5rem;
	max-width: 32rem;
}

.photo-panel-body h2 {
	font-size: clamp(1.5rem, 3vw, 2.125rem);
	color: #fff;
}

.photo-panel-body p {
	margin-top: 0.75rem;
	color: rgba(255, 255, 255, 0.8);
	font-size: 0.9375rem;
	text-transform: none;
}

.photo-panel-body .invite-copy-row {
	margin-top: 1.5rem;
}

.photo-panel-body .invite-input {
	background: rgba(0, 0, 0, 0.35);
	border-color: rgba(255, 255, 255, 0.2);
	color: rgba(255, 255, 255, 0.8);
}

.photo-panel-body .btn {
	margin-top: 1.5rem;
}

.photo-panel-body .whatsnew-badge {
	margin-bottom: 1rem;
}

/* ---------- 20 Waitlist light form (on gradient) ---------- */

.newsletter-form-light input {
	background: rgba(255, 255, 255, 0.12);
	border-color: rgba(255, 255, 255, 0.3);
	color: #fff;
}

.newsletter-form-light input::placeholder {
	color: rgba(255, 255, 255, 0.6);
}

/* ---------- 21 Sticky bar preview, browser chrome ---------- */

.device-viewport-chrome {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2rem;
	display: flex;
	align-items: center;
	gap: 0.375rem;
	padding: 0 0.875rem;
	background: var(--bg-card);
	border-bottom: 1px solid var(--border-soft);
}

.device-viewport-chrome span {
	width: 0.5rem;
	height: 0.5rem;
	border-radius: 50%;
	background: var(--border);
}

.device-viewport-fill {
	top: 2rem;
}

/* ---------- 22 Developer block ---------- */

.dev-block {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: center;
	max-width: 56rem;
	margin: 0 auto;
}

.dev-block > * {
	min-width: 0;
}

.dev-copy h2 {
	font-size: clamp(1.5rem, 3vw, 2rem);
}

.dev-copy p {
	margin-top: 0.75rem;
	color: var(--text-muted);
	font-size: 0.9375rem;
	text-transform: none;
}

.dev-copy .btn {
	margin-top: 1.5rem;
}

.window-mock {
	border-radius: var(--radius-md);
	overflow: hidden;
	border: 1px solid var(--border);
	background: var(--bg-elevated);
}

.window-mock-bar {
	display: flex;
	gap: 0.375rem;
	padding: 0.75rem;
	background: var(--bg-card);
	border-bottom: 1px solid var(--border-soft);
}

.window-mock-bar span {
	width: 0.625rem;
	height: 0.625rem;
	border-radius: 50%;
	background: var(--border);
}

.window-mock .code-snippet {
	border: none;
	border-radius: 0;
	background: transparent;
}

.tok-key {
	color: var(--accent);
}

.tok-str {
	color: var(--accent-2);
}

.tok-com {
	color: var(--text-faint);
}

.tok-attr {
	color: #7dd3fc;
}

@media (max-width: 860px) {
	.dev-block {
		grid-template-columns: 1fr;
	}
}

/* ---------- 23 Embeddable widget preview ---------- */

.widget-block {
	grid-template-columns: 1.2fr 1fr;
}

.widget-block > * {
	min-width: 0;
}

.code-snippet {
	max-width: 100%;
}

@media (max-width: 860px) {
	.widget-block {
		grid-template-columns: 1fr;
	}
}

.widget-copy h2 {
	font-size: clamp(1.5rem, 3vw, 2rem);
}

.widget-preview {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 2rem;
	border-radius: var(--radius-md);
	background: var(--bg-elevated);
	border: 1px solid var(--border);
}

.mini-player {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	width: 100%;
	max-width: 18rem;
	padding: 0.75rem;
	border-radius: var(--radius-md);
	background: var(--bg-card);
	border: 1px solid var(--border);
}

.mini-player-art {
	width: 2.75rem;
	height: 2.75rem;
	border-radius: 0.375rem;
	background: linear-gradient(135deg, var(--accent), #a020f0);
	flex-shrink: 0;
}

.mini-player-info {
	display: flex;
	flex-direction: column;
	gap: 0.125rem;
	min-width: 0;
	flex: 1;
}

.mini-player-info strong {
	font-size: 0.875rem;
}

.mini-player-info span {
	font-size: 0.75rem;
	color: var(--text-faint);
}

.mini-player-play {
	width: 2rem;
	height: 2rem;
	border-radius: 50%;
	background: var(--accent-2);
	color: #0a0a0f;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.75rem;
	flex-shrink: 0;
}

/* ---------- 24 Inset photo card (partner program) ---------- */

.inset-photo-card {
	position: relative;
	display: block;
	max-width: 56rem;
	margin: 0 auto;
	min-height: 22rem;
	border-radius: var(--radius-lg);
	overflow: hidden;
	border: 1px solid var(--border-soft);
}

.inset-photo-card img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.inset-photo-card:hover img {
	transform: scale(1.03);
}

.inset-photo-scrim {
	position: absolute;
	inset: 0;
	background: linear-gradient(100deg, rgba(10, 10, 15, 0.9) 0%, rgba(10, 10, 15, 0.35) 60%);
}

.inset-photo-body {
	position: relative;
	padding: 2.5rem;
	max-width: 24rem;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.inset-photo-body h2 {
	font-size: clamp(1.5rem, 3vw, 2.125rem);
	line-height: 1.1;
	color: #fff;
}

.inset-photo-body p {
	margin-top: 0.75rem;
	color: rgba(255, 255, 255, 0.8);
	font-size: 0.9375rem;
	text-transform: none;
}

.inset-photo-cta {
	display: inline-block;
	margin-top: 1.5rem;
	font-weight: 700;
	color: var(--accent-2);
}

/* ---------- 26 Install guide, redesigned ---------- */

.install-block {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 3rem;
	align-items: center;
	max-width: 52rem;
	margin: 0 auto;
}

.tabs-title-left {
	text-align: left;
}

.tab-list-left {
	justify-content: flex-start;
}

.install-phone {
	justify-self: center;
}

@media (max-width: 700px) {
	.install-block {
		grid-template-columns: 1fr;
	}

	.tabs-title-left,
	.tab-list-left {
		text-align: center;
		justify-content: center;
	}
}

/* ---------- 28 Value stack, redesigned with icons ---------- */

.value-stack-before li {
	display: flex;
	align-items: center;
	gap: 0.625rem;
}

.value-stack-before li svg {
	width: 1.125rem;
	height: 1.125rem;
	flex-shrink: 0;
	color: var(--text-faint);
}

.value-stack-arrow {
	width: 2rem;
	height: 2rem;
	color: var(--accent-2);
	flex-shrink: 0;
}

/* ---------- 29 Language switcher, redesigned ---------- */

.lang-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.625rem 1.125rem;
	border-radius: 999px;
	border: 1px solid var(--border);
	background: none;
	color: var(--text-muted);
	font-family: var(--font-body);
	font-size: 0.875rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.15s ease;
}

.lang-btn.is-active {
	background: var(--accent-2);
	border-color: var(--accent-2);
	color: #0a0a0f;
}

.lang-flag {
	font-size: 0.6875rem;
	font-weight: 700;
	opacity: 0.7;
}

.lang-btn.is-active .lang-flag {
	opacity: 1;
}

.lang-sample-card {
	max-width: 32rem;
	margin: 0 auto;
	padding: 2rem;
	border-radius: var(--radius-lg);
	background: var(--bg-card);
	border: 1px solid var(--border-soft);
}

/* ---------- 31 Persona cards, photo-backed ---------- */

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

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

	.persona-card {
		aspect-ratio: 16 / 10;
	}
}

.persona-card {
	position: relative;
	padding: 0;
	text-align: left;
	aspect-ratio: 3 / 4;
	overflow: hidden;
	border-radius: var(--radius-lg);
	border: 1px solid var(--border-soft);
}

.persona-card img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.persona-scrim {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(10, 10, 15, 0.1) 40%, rgba(10, 10, 15, 0.95) 100%);
}

.persona-body {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 1.75rem;
}

.persona-body h3 {
	font-family: var(--font-body);
	font-size: 1.125rem;
	font-weight: 700;
	color: #fff;
	text-transform: none;
}

.persona-body p {
	margin-top: 0.5rem;
	font-size: 0.8125rem;
	color: rgba(255, 255, 255, 0.75);
	text-transform: none;
}

/* ---------- 32 Old-way vs. Signal Sonics panels ---------- */

.vs-panels {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.5rem;
	max-width: 52rem;
	margin: 0 auto;
}

.vs-panel {
	padding: 2rem;
	border-radius: var(--radius-lg);
	border: 1px solid var(--border);
}

.vs-panel-old {
	background: var(--bg-elevated);
}

.vs-panel-new {
	background: linear-gradient(160deg, var(--accent-soft), var(--bg-card));
	border-color: var(--accent);
}

.vs-panel-title {
	font-family: var(--font-display);
	font-size: 1.125rem;
	margin-bottom: 1.25rem;
}

.vs-panel-old .vs-panel-title {
	color: var(--text-faint);
}

.vs-panel-new .vs-panel-title {
	color: var(--accent-2);
}

.vs-panel ul {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.vs-panel li {
	font-size: 0.875rem;
	line-height: 1.4;
}

.vs-panel-old li {
	color: var(--text-faint);
}

.vs-panel-new li {
	color: var(--text);
}

@media (max-width: 700px) {
	.vs-panels {
		grid-template-columns: 1fr;
	}
}

/* ---------- 34 Social share, icon buttons ---------- */

.share-icon-btn {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.625rem;
	padding: 1.25rem 1.75rem;
	border-radius: var(--radius-md);
	border: 1px solid var(--border);
	background: var(--bg-card);
	color: var(--text-muted);
	font-size: 0.8125rem;
	font-family: var(--font-body);
	cursor: pointer;
	transition: border-color 0.15s ease;
}

.share-icon-btn:hover {
	border-color: var(--accent-2);
	color: var(--accent-2);
}

.share-icon-btn svg {
	width: 1.5rem;
	height: 1.5rem;
}

/* =====================================================================
   Redesign pass 2 — sections 1-15, same design-system elevation as the
   16-35 pass above.
   ===================================================================== */

.eyebrow-center {
	text-align: center;
}

.eyebrow-light-center {
	text-align: center;
}

.statement-sub-left {
	text-align: left;
	margin-left: 0;
}

.bg-gradient-blue {
	background:
		radial-gradient(ellipse 65% 90% at 20% 20%, rgba(34, 211, 238, 0.35), transparent 60%),
		radial-gradient(ellipse 70% 90% at 85% 80%, rgba(160, 32, 240, 0.45), transparent 60%),
		#0a0e1a;
}

/* ---------- 01 Genre carousel head ---------- */

.genre-head {
	align-items: flex-end;
}

.genre-head .eyebrow {
	margin-bottom: 0.5rem;
}

.genre-card {
	flex: 0 0 16rem;
}

.genre-name {
	font-size: 1.5rem;
}

/* ---------- 02 Ticker chips ---------- */

.ticker-track {
	gap: 0.75rem;
}

.ticker-chip {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.5rem 1rem 0.5rem 0.625rem;
	border-radius: 999px;
	border: 1px solid var(--border);
	background: var(--bg-card);
	font-size: 0.875rem;
	color: var(--text);
	white-space: nowrap;
}

.ticker-chip em {
	font-style: normal;
	color: var(--text-faint);
}

.ticker-dot {
	width: 0.5rem;
	height: 0.5rem;
	border-radius: 50%;
	flex-shrink: 0;
}

.ticker-dot-a {
	background: var(--accent);
}

.ticker-dot-b {
	background: var(--accent-2);
}

.ticker-dot-c {
	background: #7dd3fc;
}

.ticker-dot-d {
	background: #a020f0;
}

.ticker-dot-e {
	background: #fb923c;
}

/* ---------- 03 Global coverage map, redesigned ---------- */

.map-block {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: center;
}

.map-copy .display-statement {
	font-size: clamp(1.75rem, 3.5vw, 2.5rem);
	text-align: left;
}

.map-visual {
	position: relative;
	aspect-ratio: 16 / 10;
	border-radius: var(--radius-lg);
	background: rgba(10, 10, 15, 0.35);
	border: 1px solid rgba(255, 255, 255, 0.12);
	overflow: hidden;
}

.map-dots {
	position: absolute;
	inset: 0;
	background-image: radial-gradient(rgba(255, 255, 255, 0.18) 1.5px, transparent 1.5px);
	background-size: 22px 22px;
}

.map-lines {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	stroke: var(--accent-2);
	stroke-width: 1;
	opacity: 0.5;
}

.map-pin {
	color: rgba(255, 255, 255, 0.85);
}

.map-pin::before {
	background: rgba(255, 255, 255, 0.6);
	box-shadow: none;
}

.map-pin-active {
	color: var(--accent-2);
	font-weight: 700;
}

.map-pin-active::before {
	background: var(--accent-2);
	box-shadow: 0 0 12px 3px var(--accent-glow);
}

@media (max-width: 860px) {
	.map-block {
		grid-template-columns: 1fr;
	}

	.map-copy .display-statement {
		text-align: center;
	}

	.statement-sub-left {
		text-align: center;
	}
}

/* ---------- 04 Showcase glow ---------- */

.showcase {
	position: relative;
	overflow: hidden;
}

.showcase-glow {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 44rem;
	height: 26rem;
	transform: translate(-50%, -50%);
	background: radial-gradient(ellipse, var(--accent-soft), transparent 70%);
	z-index: -1;
}

/* ---------- 06 Pricing icons ---------- */

.price-icon {
	width: 2rem;
	height: 2rem;
	color: var(--text-faint);
	margin-bottom: 1rem;
}

.price-icon-accent {
	color: var(--accent);
}

/* ---------- 08 Blog card body ---------- */

.blog-card {
	transition: transform 0.2s ease;
}

.blog-card:hover {
	transform: translateY(-4px);
}

.blog-card-body {
	padding: 1.25rem;
}

.blog-card-body .blog-tag {
	margin: 0;
}

.blog-card-body h3 {
	margin: 0.5rem 0 0;
}

.blog-card-body p {
	margin: 0.5rem 0 0;
}

/* ---------- 10 FAQ card wrapper ---------- */

.tabs-card {
	max-width: 40rem;
	margin: 0 auto;
	padding: 2.5rem;
	border-radius: var(--radius-lg);
	background: var(--bg-card);
	border: 1px solid var(--border-soft);
}

.tabs-card .tab-panel {
	max-width: none;
}

/* ---------- 12 Platform grid ---------- */

.platform-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2rem;
	max-width: 44rem;
	margin: 0 auto;
}

.platform-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.75rem;
	text-align: center;
}

.platform-item svg {
	width: 2rem;
	height: 2rem;
	color: var(--accent-2);
}

.platform-item span {
	font-size: 0.8125rem;
	color: var(--text-muted);
}

@media (max-width: 700px) {
	.platform-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* ---------- 13 Roadmap panels ---------- */

.roadmap-panels {
	max-width: 44rem;
}

/* ---------- 14 Testimonial card ---------- */

.testimonial-card {
	position: relative;
	padding: 3rem 2.5rem 2.5rem;
	border-radius: var(--radius-lg);
	background: var(--bg-card);
	border: 1px solid var(--border-soft);
}

.testimonial-quote-mark {
	width: 2rem;
	height: 2rem;
	color: var(--accent);
	opacity: 0.6;
	margin: 0 auto 1rem;
	display: block;
}

/* ---------- 36-39 Real product screens ---------- */

.showcase-below-statement {
	margin-top: 3rem;
}

.check-copy {
	max-width: 30rem;
}

.check-copy .eyebrow {
	margin-bottom: 0.75rem;
}

.check-copy h2 {
	font-size: clamp(1.75rem, 3.5vw, 2.25rem);
}

.check-copy p {
	margin-top: 1rem;
	color: var(--text-muted);
	font-size: 1.0625rem;
}

/* ---------- Big header demos ---------- */

.header-demo {
	position: relative;
	min-height: 34rem;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	text-align: center;
	padding: 5rem 1.5rem;
}

.header-demo-inner {
	position: relative;
	z-index: 2;
	max-width: 40rem;
}

.header-demo-h1 {
	font-family: var(--font-display);
	font-size: clamp(2.5rem, 7vw, 4.75rem);
	line-height: 0.98;
	color: var(--text);
	text-transform: uppercase;
	text-wrap: balance;
}

.header-demo-h1-huge {
	font-size: clamp(3rem, 9vw, 6rem);
}

.header-demo-sub {
	margin-top: 1.25rem;
	font-size: 1.0625rem;
	color: var(--text-muted);
	font-family: var(--font-body);
	max-width: 30rem;
	margin-left: auto;
	margin-right: auto;
}

.header-demo-cta {
	margin-top: 2rem;
}

/* H1 — Waveform hero */

.header-demo-waveform {
	background:
		radial-gradient(ellipse 70% 70% at 50% 105%, rgba(255, 47, 176, 0.3), transparent 65%),
		#0a0a0f;
}

.waveform-bars {
	position: absolute;
	inset: auto 0 0 0;
	height: 55%;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	gap: 0.375rem;
	padding: 0 1.5rem;
	opacity: 0.55;
	z-index: 1;
}

.waveform-bars span {
	width: 0.375rem;
	min-height: 8%;
	border-radius: 999px;
	background: linear-gradient(180deg, var(--accent-2), var(--accent));
	animation: waveform-bounce 1.6s ease-in-out infinite;
}

@keyframes waveform-bounce {
	0%,
	100% {
		height: 12%;
	}
	50% {
		height: 100%;
	}
}

@media (prefers-reduced-motion: reduce) {
	.waveform-bars span {
		animation: none;
		height: 40%;
	}
}

/* H2 — Device-frame hero */

.header-demo-device {
	text-align: left;
	background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(160, 32, 240, 0.22), transparent 60%), #0a0a0f;
	padding: 4rem 1.5rem;
}

.header-demo-device-inner {
	position: relative;
	z-index: 2;
	max-width: var(--container);
	margin: 0 auto;
	width: 100%;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: center;
}

.header-demo-device-copy .eyebrow-light {
	color: var(--accent-2);
}

.header-demo-device-copy .header-demo-h1 {
	text-align: left;
	font-size: clamp(2.25rem, 5vw, 3.5rem);
}

.header-demo-device-copy .header-demo-sub {
	margin-left: 0;
	max-width: 26rem;
}

.header-demo-device-visual {
	position: relative;
	display: flex;
	justify-content: center;
}

.header-demo-device-visual::before {
	content: '';
	position: absolute;
	inset: -3rem;
	background: radial-gradient(ellipse 60% 60% at 50% 50%, var(--accent-glow), transparent 70%);
	filter: blur(10px);
	z-index: 0;
}

.header-demo-device-tilt {
	position: relative;
	z-index: 1;
	transform: perspective(1400px) rotateY(-10deg) rotateX(3deg);
	transition: transform 0.4s ease;
}

@media (max-width: 860px) {
	.header-demo-device-inner {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.header-demo-device-copy .header-demo-h1,
	.header-demo-device-copy .header-demo-sub {
		text-align: center;
		margin-left: auto;
		margin-right: auto;
	}

	.header-demo-device-tilt {
		transform: none;
	}
}

/* H3 — Live ticker hero */

.header-demo-ticker {
	flex-direction: column;
	background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(186, 255, 41, 0.14), transparent 65%), #0a0a0f;
	padding-bottom: 0;
	gap: 2.5rem;
}

.header-demo-live-badge {
	display: inline-block;
	padding: 0.375rem 0.875rem;
	border-radius: 999px;
	border: 1px solid var(--accent);
	color: var(--accent);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	margin-bottom: 1.25rem;
}

.header-demo-ticker-strip {
	width: 100%;
	border-left: none;
	border-right: none;
}

/* H4 — Minimal orb hero */

.header-demo-orb {
	background: #0a0a0f;
}

.header-demo-orb-glow {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 44rem;
	height: 44rem;
	transform: translate(-50%, -50%);
	border-radius: 50%;
	background: radial-gradient(circle, rgba(255, 47, 176, 0.4), rgba(160, 32, 240, 0.18) 45%, transparent 72%);
	filter: blur(20px);
	z-index: 0;
}

/* ---------- Features section: icon checklist grid ---------- */

.icon-feature-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.25rem;
}

.icon-feature-tile {
	display: flex;
	flex-direction: column;
	gap: 0.875rem;
	padding: 1.75rem 1.5rem;
	border-radius: var(--radius-lg);
	background: var(--bg-card);
	border: 1px solid var(--border-soft);
	transition:
		border-color 0.15s ease,
		transform 0.15s ease;
}

.icon-feature-tile:hover {
	border-color: var(--accent-2);
	transform: translateY(-2px);
}

.icon-feature-badge {
	width: 2.75rem;
	height: 2.75rem;
	border-radius: 999px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.icon-feature-badge svg {
	width: 20px;
	height: 20px;
}

.icon-feature-badge.accent {
	background: var(--accent-soft);
	color: var(--accent);
}

.icon-feature-badge.accent-2 {
	background: rgba(186, 255, 41, 0.14);
	color: var(--accent-2);
}

.icon-feature-tile h3 {
	font-size: 1.0625rem;
}

.icon-feature-tile p {
	font-size: 0.875rem;
	color: var(--text-muted);
	margin: 0;
}

@media (max-width: 860px) {
	.icon-feature-grid {
		grid-template-columns: 1fr;
	}
}

@media (min-width: 861px) and (max-width: 1080px) {
	.icon-feature-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* A photograph in a two-column .map-block, where the other half would
   normally hold a device frame.

   Capped the way .device-frame-laptop is capped. Without a max width it
   filled its whole grid column, which on a wide screen meant a 700px-tall
   photograph next to three lines of text — the image read as the subject and
   the copy as a caption, which is backwards for a feature block. */
.block-photo {
	width: min(26rem, 100%);
	/* height:auto is load-bearing. The width/height attributes on the img are
	   there so the browser reserves the right space before the file loads, but
	   they also become presentational hints — and with BOTH dimensions set,
	   aspect-ratio is ignored and the element renders at its full intrinsic
	   height. That is why capping the width alone left a 900px-tall photo. */
	height: auto;
	justify-self: center;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	border-radius: var(--radius-lg);
	border: 1px solid var(--border-soft);
}

/* Puts the visual first on wide screens so consecutive blocks alternate
   instead of marching down one side. Below the .map-block breakpoint the
   source order wins, which keeps the copy above its image on a phone. */
@media (min-width: 861px) {
	.map-block-reverse > .block-photo {
		order: -1;
	}
}
