/* Chirpr marketing site — 2026 redesign */

:root {
	--brand: #7c40d6;
	--brand-hover: #6934b7;
	--brand-soft: #ebdcff;
	--brand-muted: rgba(124, 64, 214, 0.12);
	--bg: #ffffff;
	--bg-subtle: #f7f7f8;
	--bg-elevated: #fafafa;
	--border: #e8e8ec;
	--border-strong: #d4d4dc;
	--text: #111118;
	--text-secondary: #5c5c6a;
	--text-muted: #78788a;
	--radius-sm: 8px;
	--radius: 12px;
	--radius-lg: 16px;
	--radius-xl: 24px;
	--shadow-sm: 0 1px 2px rgba(17, 17, 24, 0.04);
	--shadow: 0 4px 24px rgba(17, 17, 24, 0.06);
	--shadow-lg: 0 12px 48px rgba(17, 17, 24, 0.08);
	--font: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	--wrap: 1120px;
	--nav-height: 64px;
	--section-y: clamp(72px, 10vw, 112px);
	--case-study-gap: clamp(48px, 6vw, 64px);
	--ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
}

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

body.mkt {
	margin: 0;
	font-family: var(--font);
	font-size: 16px;
	line-height: 1.6;
	color: var(--text);
	background: var(--bg);
	-webkit-font-smoothing: antialiased;
}

.mkt-wrap {
	width: 100%;
	max-width: var(--wrap);
	margin: 0 auto;
	padding: 0 24px;
}

.mkt-section {
	padding: var(--section-y) 0;
}

.mkt-section--subtle {
	background: var(--bg-subtle);
}
.mkt-section--subtle:has(+ .mkt-section--subtle) {
	padding-bottom: clamp(28px, 4vw, 44px);
}
.mkt-section--subtle + .mkt-section--subtle {
	padding-top: clamp(28px, 4vw, 44px);
}

.mkt-eyebrow {
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--brand);
	margin: 0 0 12px;
}

.mkt-h1 {
	font-size: clamp(2.25rem, 5vw, 3.25rem);
	font-weight: 800;
	line-height: 1.08;
	letter-spacing: -0.03em;
	margin: 0 0 20px;
	color: var(--text);
}
.mkt-h1-line {
	display: block;
}

.mkt-h2 {
	font-size: clamp(1.75rem, 3vw, 2.25rem);
	font-weight: 700;
	line-height: 1.15;
	letter-spacing: -0.02em;
	margin: 0 0 16px;
	color: var(--text);
}

.mkt-h3 {
	font-size: 1.125rem;
	font-weight: 700;
	line-height: 1.3;
	margin: 0 0 8px;
	color: var(--text);
}

.mkt-lede {
	font-size: clamp(1.05rem, 2vw, 1.2rem);
	line-height: 1.65;
	color: var(--text-secondary);
	max-width: 640px;
	margin: 0 0 28px;
	text-wrap: pretty;
}

.mkt-lede--center {
	text-align: center;
	max-width: 720px;
	margin-left: auto;
	margin-right: auto;
}

.mkt-who-list {
	margin: 0;
	padding-left: 1.25rem;
	font-size: clamp(1.05rem, 2vw, 1.2rem);
	line-height: 1.65;
	list-style: disc;
}
.mkt-who-list li {
	margin-bottom: 8px;
	color: var(--text-secondary);
}

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

.mkt-link {
	color: var(--brand);
	font-weight: 600;
	text-decoration: none;
}
.mkt-link:hover { text-decoration: underline; }

/* Buttons */
.mkt-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 22px;
	font-size: 0.9375rem;
	font-weight: 700;
	line-height: 1.2;
	border-radius: 999px;
	border: 2px solid transparent;
	text-decoration: none;
	cursor: pointer;
	transition: background 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease), transform 0.15s var(--ease);
}
.mkt-btn:focus-visible {
	outline: 2px solid var(--brand);
	outline-offset: 2px;
}
.mkt-btn--primary {
	background: var(--brand);
	color: #fff;
	border-color: var(--brand);
}
.mkt-btn--primary:hover {
	background: var(--brand-hover);
	border-color: var(--brand-hover);
	color: #fff;
}
.mkt-btn--ghost {
	background: transparent;
	color: var(--text);
	border-color: var(--border-strong);
}
.mkt-btn--ghost:hover {
	border-color: var(--brand);
	color: var(--brand);
}
.mkt-btn--lg {
	padding: 14px 28px;
	font-size: 1rem;
}

.mkt-btn-row {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	align-items: center;
}

/* Musician platform hero — preview generator form */
.mkt-hero-preview {
	max-width: 560px;
	margin-top: 4px;
}

.mkt-hero-preview__hint {
	margin: 0 0 12px;
	font-size: 0.98rem;
	line-height: 1.45;
	color: var(--text-secondary);
	max-width: 42ch;
}

.mkt-hero-preview__label {
	display: block;
	margin: 0 0 8px;
	font-size: 0.875rem;
	font-weight: 700;
	color: var(--text);
}

.mkt-hero-preview__row {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: stretch;
}

.mkt-hero-preview__input {
	flex: 1 1 220px;
	min-width: 0;
	appearance: none;
	border: 1px solid var(--border-strong);
	background: #fff;
	color: var(--text);
	border-radius: var(--radius, 10px);
	padding: 14px 16px;
	font: inherit;
	font-size: 1rem;
	outline: none;
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.mkt-hero-preview__input::placeholder {
	color: var(--text-muted, #9898a0);
}

.mkt-hero-preview__input:focus {
	border-color: var(--brand);
	box-shadow: 0 0 0 3px var(--brand-muted);
}

.mkt-hero-preview__submit {
	flex: 0 0 auto;
	white-space: nowrap;
}

.mkt-hero-preview__submit:disabled {
	opacity: 0.65;
	cursor: wait;
}

.mkt-hero-preview__status {
	min-height: 1.25em;
	margin: 10px 0 0;
	font-size: 0.875rem;
	color: #c2410c;
}

@media (max-width: 640px) {
	.mkt-hero-preview__row {
		flex-direction: column;
	}

	.mkt-hero-preview__submit {
		width: 100%;
		justify-content: center;
	}
}

/* Nav */
.mkt-nav {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(255, 255, 255, 0.92);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid var(--border);
}
.mkt-nav.is-scrolled {
	box-shadow: var(--shadow-sm);
}
.mkt-nav__inner {
	display: flex;
	align-items: center;
	gap: 16px;
	height: var(--nav-height);
}
.mkt-nav__brand {
	display: flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
	color: var(--text);
	flex-shrink: 0;
}
.mkt-nav__logo {
	width: 40px;
	height: 40px;
	border-radius: var(--radius-sm);
	object-fit: cover;
}
.mkt-nav__wordmark {
	font-weight: 800;
	font-size: 1.05rem;
	letter-spacing: 0.04em;
}
.mkt-nav__toggle {
	display: none;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 1px solid var(--border);
	border-radius: var(--radius-sm);
	background: var(--bg);
	cursor: pointer;
	color: var(--text);
}
.mkt-nav__menu {
	display: flex;
	align-items: center;
	gap: 8px 24px;
	flex: 1;
	justify-content: flex-end;
}
.mkt-nav__links {
	display: flex;
	align-items: center;
	gap: 4px 20px;
	list-style: none;
	margin: 0;
	padding: 0;
}
.mkt-nav__links a {
	text-decoration: none;
	color: var(--text-secondary);
	font-weight: 500;
	font-size: 0.9375rem;
	padding: 6px 0;
}
.mkt-nav__links a:hover,
.mkt-nav__links a.is-active {
	color: var(--text);
}
.mkt-nav__ctas {
	display: flex;
	align-items: center;
	gap: 8px;
}
.mkt-nav__ctas .mkt-btn {
	padding: 8px 16px;
	font-size: 0.875rem;
}

/* Products dropdown */
.mkt-nav__dropdown { position: relative; }
.mkt-nav__dropdown-btn {
	background: none;
	border: none;
	font: inherit;
	font-weight: 500;
	font-size: 0.9375rem;
	color: var(--text-secondary);
	cursor: pointer;
	padding: 6px 0;
	display: flex;
	align-items: center;
	gap: 4px;
}
.mkt-nav__dropdown-btn:hover { color: var(--text); }
.mkt-nav__dropdown-panel {
	position: absolute;
	top: calc(100% + 8px);
	left: -12px;
	min-width: 280px;
	background: var(--bg);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	box-shadow: var(--shadow-lg);
	padding: 8px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-4px);
	transition: opacity 0.2s var(--ease), transform 0.2s var(--ease), visibility 0.2s;
}
.mkt-nav__dropdown.is-open .mkt-nav__dropdown-panel,
.mkt-nav__dropdown:hover .mkt-nav__dropdown-panel {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
.mkt-nav__dropdown-panel a {
	display: block;
	padding: 10px 12px;
	border-radius: var(--radius-sm);
	text-decoration: none;
	color: var(--text);
	font-size: 0.9375rem;
}
.mkt-nav__dropdown-panel a:hover {
	background: var(--bg-subtle);
}
.mkt-nav__dropdown-panel small {
	display: block;
	color: var(--text-muted);
	font-size: 0.8125rem;
	margin-top: 2px;
}

/* Consumer tier-2 nav */
.mkt-nav-tier2 {
	background: var(--bg-subtle);
	border-bottom: 1px solid var(--border);
}
.mkt-nav-tier2__inner {
	display: flex;
	align-items: center;
	gap: 20px;
	padding: 10px 24px;
	max-width: var(--wrap);
	margin: 0 auto;
	flex-wrap: wrap;
}
.mkt-nav-tier2__group--browse a {
	text-decoration: none;
	color: var(--text-secondary);
	font-size: 0.875rem;
	font-weight: 600;
}
.mkt-nav-tier2__group--browse a:hover {
	color: var(--brand);
}
.mkt-nav-tier2__divider {
	width: 1px;
	height: 18px;
	background: var(--border-strong);
	flex-shrink: 0;
}
.mkt-nav-tier2__group--events {
	display: flex;
	gap: 20px;
	list-style: none;
	margin: 0;
	padding: 0;
	flex-wrap: wrap;
}
.mkt-nav-tier2__group--events a {
	text-decoration: none;
	color: var(--text-secondary);
	font-size: 0.875rem;
	font-weight: 500;
}
.mkt-nav-tier2__group--events a:hover { color: var(--brand); }

/* Hero */
.mkt-hero {
	padding: clamp(48px, 8vw, 96px) 0 clamp(64px, 10vw, 96px);
}

/* Consumer home — dark stage with app product visuals */
.mkt-hero--home {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	display: flex;
	align-items: center;
	min-height: min(78vh, 720px);
	padding: clamp(48px, 8vw, 88px) 0 clamp(56px, 9vw, 96px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	background: #070a12;
	color: #fff;
}
.mkt-hero--home::before {
	content: '';
	position: absolute;
	inset: 0;
	background: url('/img/hero-1.jpg') center/cover no-repeat;
	opacity: 0.35;
	filter: brightness(0.9) saturate(1.1);
	z-index: 0;
}
.mkt-hero--home::after {
	content: '';
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	background:
		linear-gradient(105deg, rgba(7, 10, 18, 0.94) 0%, rgba(7, 10, 18, 0.78) 42%, rgba(7, 10, 18, 0.55) 72%, rgba(7, 10, 18, 0.72) 100%),
		linear-gradient(180deg, rgba(7, 10, 18, 0.25) 0%, transparent 40%, rgba(7, 10, 18, 0.7) 100%),
		radial-gradient(ellipse 90% 70% at 70% 40%, rgba(124, 64, 214, 0.42), transparent 55%),
		radial-gradient(ellipse 50% 40% at 12% 60%, rgba(158, 124, 255, 0.22), transparent 50%);
}
.mkt-hero--home .mkt-wrap {
	position: relative;
	z-index: 2;
	width: 100%;
}
.mkt-hero--home .mkt-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
	gap: clamp(32px, 5vw, 56px);
	align-items: center;
}
.mkt-hero--home .mkt-hero__content {
	max-width: min(640px, 100%);
}
.mkt-hero--home .mkt-eyebrow {
	color: #d4b8ff;
}
.mkt-hero--home .mkt-h1 {
	color: #fff;
	font-size: clamp(1.85rem, 3.6vw, 2.75rem);
	line-height: 1.12;
	text-wrap: balance;
}
.mkt-hero--home .mkt-lede {
	color: rgba(255, 255, 255, 0.88);
	max-width: 46ch;
}
.mkt-hero--home .mkt-hero__audience {
	color: rgba(255, 255, 255, 0.78);
}
.mkt-hero--home .mkt-btn--primary {
	box-shadow: 0 10px 32px rgba(0, 0, 0, 0.28);
}
.mkt-hero--home .mkt-btn--ghost {
	color: #fff;
	border-color: rgba(255, 255, 255, 0.42);
	background: rgba(255, 255, 255, 0.06);
}
.mkt-hero--home .mkt-btn--ghost:hover {
	border-color: rgba(255, 255, 255, 0.72);
	color: #fff;
	background: rgba(255, 255, 255, 0.12);
}
.mkt-hero--home .mkt-hero__tertiary,
.mkt-hero__tertiary {
	margin: 20px 0 0;
	font-size: 0.9375rem;
	line-height: 1.5;
	color: var(--text-muted);
}
.mkt-hero--home .mkt-hero__tertiary {
	color: rgba(255, 255, 255, 0.72);
}
.mkt-hero--home .mkt-hero__tertiary .mkt-link {
	color: #e8d7ff;
}
.mkt-hero--home .mkt-hero__tertiary .mkt-link:hover {
	color: #fff;
}
.mkt-btn-row--center {
	justify-content: center;
}

/* Product / platform pages — light panel, photo fades in from the right */
.mkt-hero--platform {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	display: flex;
	align-items: center;
	min-height: min(56vh, 520px);
	padding: clamp(48px, 7vw, 80px) 0 clamp(56px, 8vw, 88px);
	background: linear-gradient(145deg, #f3ebff 0%, #faf8ff 38%, #ffffff 100%);
	border-bottom: 1px solid var(--border);
}
.mkt-hero--platform::before {
	content: '';
	position: absolute;
	inset: 0;
	background: url('/img/hero-1.jpg') 70% 42% / cover no-repeat;
	opacity: 0.52;
	filter: saturate(1.05) contrast(1.02) blur(0.4px);
	-webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.15) 38%, rgba(0, 0, 0, 0.55) 56%, rgba(0, 0, 0, 0.88) 76%, #000 100%);
	mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.15) 38%, rgba(0, 0, 0, 0.55) 56%, rgba(0, 0, 0, 0.88) 76%, #000 100%);
	z-index: 0;
}
.mkt-hero--platform::after {
	content: '';
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	background:
		linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.97) 36%, rgba(255, 255, 255, 0.68) 54%, rgba(255, 255, 255, 0.38) 70%, rgba(248, 242, 255, 0.16) 100%),
		radial-gradient(ellipse 90% 70% at 12% 40%, rgba(124, 64, 214, 0.14), transparent 58%),
		radial-gradient(ellipse 55% 45% at 90% 62%, rgba(124, 64, 214, 0.1), transparent 50%);
}
.mkt-hero--platform .mkt-wrap {
	position: relative;
	z-index: 2;
	width: 100%;
}
.mkt-hero--platform .mkt-hero__content {
	max-width: 720px;
}
.mkt-hero--platform .mkt-h1 {
	font-size: clamp(1.85rem, 3.6vw, 2.5rem);
	line-height: 1.12;
}
.mkt-hero--platform .mkt-lede {
	max-width: none;
	margin-bottom: 28px;
	min-height: calc(1.65em * 4);
	text-wrap: pretty;
}
.mkt-hero--customers {
	min-height: auto;
	align-items: flex-start;
	padding: clamp(36px, 5vw, 56px) 0 clamp(40px, 5vw, 56px);
}
.mkt-hero--customers .mkt-lede {
	max-width: 52ch;
	margin-bottom: 14px;
	min-height: 0;
}
.mkt-hero__support {
	margin: 0 0 24px;
	max-width: 52ch;
	font-size: 0.9375rem;
	line-height: 1.6;
	color: var(--text-secondary);
}
.mkt-hero__logos {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 24px;
	align-items: center;
	margin-bottom: 28px;
	font-size: 0.9375rem;
	font-weight: 600;
	color: var(--text);
}
.mkt-hero__stats {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
	max-width: 720px;
}
.mkt-hero__stat {
	padding: 16px 18px;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	background: rgba(255, 255, 255, 0.72);
}
.mkt-hero__stat-value {
	display: block;
	margin-bottom: 4px;
	font-size: 1.375rem;
	line-height: 1.2;
	color: var(--brand);
}
.mkt-hero__stat-label {
	display: block;
	font-size: 0.8125rem;
	line-height: 1.45;
	color: var(--text-secondary);
}
.mkt-hero--customers + .mkt-section {
	padding-top: clamp(40px, 5vw, 56px);
}
.mkt-hero__audience {
	margin: -12px 0 28px;
	font-size: 0.9375rem;
	font-weight: 600;
	color: var(--text-secondary);
	letter-spacing: 0.01em;
}
.mkt-hero--product {
	padding-top: clamp(40px, 6vw, 64px);
}

/* Product cards */
.mkt-product-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}
@media (min-width: 900px) {
	.mkt-product-grid {
		grid-template-columns: repeat(4, 1fr);
	}
}
.mkt-product-card {
	display: flex;
	flex-direction: column;
	padding: 24px;
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	background: var(--bg);
	text-decoration: none;
	color: inherit;
	transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease), transform 0.2s var(--ease);
}
.mkt-product-card:hover {
	border-color: var(--brand);
	box-shadow: var(--shadow);
	transform: translateY(-2px);
}
.mkt-product-card__badge {
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--brand);
	margin-bottom: 12px;
}
.mkt-product-card .mkt-h3 {
	font-size: 0.9375rem;
	line-height: 1.25;
	letter-spacing: -0.01em;
	margin-bottom: 10px;
}
.mkt-product-card__desc {
	font-size: 0.9375rem;
	color: var(--text-secondary);
	line-height: 1.55;
	margin: 0;
	flex: 1;
	min-height: calc(0.9375rem * 1.55 * 4);
	text-wrap: pretty;
}
.mkt-product-card__arrow {
	margin-top: 16px;
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--brand);
}

/* Feature cards */
.mkt-card-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
}
.mkt-card {
	padding: 20px;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	background: var(--bg-elevated);
}
.mkt-card p {
	margin: 0;
	font-size: 0.9375rem;
	color: var(--text-secondary);
	line-height: 1.55;
}
.mkt-card-grid .mkt-card p {
	min-height: calc(0.9375rem * 1.55 * 2.25);
}

/* Social proof */
.mkt-logos {
	display: flex;
	flex-wrap: wrap;
	gap: 16px 32px;
	align-items: center;
	justify-content: center;
	font-size: 1rem;
	font-weight: 600;
	color: var(--text-secondary);
}
.mkt-case-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
	margin-top: 32px;
}
.mkt-case-card {
	padding: 24px;
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	background: var(--bg);
}
.mkt-case-card p {
	margin: 0 0 12px;
	color: var(--text-secondary);
	font-size: 0.9375rem;
	line-height: 1.55;
}
.mkt-case-card__links {
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px 20px;
}
.mkt-section--case-follow {
	padding-bottom: clamp(24px, 3vw, 40px);
}
.mkt-section--case-follow + .mkt-section {
	padding-top: clamp(32px, 4vw, 48px);
}
.mkt-case-feature--hub {
	margin-top: 0;
}
.mkt-customers-featured > .mkt-reveal + .mkt-reveal {
	margin-top: 32px;
}
.mkt-case-feature--hub .mkt-case-card__links {
	justify-content: flex-start;
	margin-top: 20px;
}
.mkt-pricing-proof__chips--hub {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 8px;
	margin-top: 16px;
}
.mkt-pricing-proof__chips--hub .mkt-pricing-proof__chip {
	grid-column: span 2;
	text-align: center;
}
.mkt-pricing-proof__chips--hub .mkt-pricing-proof__chip:nth-child(n+4):nth-last-child(-n+2) {
	grid-column: span 3;
}
.mkt-case-grid--hub {
	margin-top: 32px;
}
.mkt-case-grid--hub .mkt-eyebrow {
	margin-bottom: 8px;
}
.mkt-case-grid--hub .mkt-case-card__links {
	justify-content: flex-start;
}
.mkt-case-grid--hub .mkt-case-card {
	display: flex;
	flex-direction: column;
	height: 100%;
}
.mkt-case-grid--hub .mkt-case-card p:not(.mkt-eyebrow):not(.mkt-case-card__links) {
	flex: 1;
}
.mkt-case-feature {
	margin-top: var(--case-study-gap);
	padding: 28px 32px;
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	background: var(--bg);
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(200px, 260px);
	gap: 24px 40px;
	align-items: center;
}
.mkt-case-feature__content {
	min-width: 0;
}
.mkt-case-feature .mkt-h2 {
	font-size: clamp(1.35rem, 2.5vw, 1.75rem);
	margin-bottom: 12px;
}
.mkt-case-feature .mkt-lede {
	margin-bottom: 16px;
	max-width: 560px;
}

.mkt-case-study-stores {
	display: flex;
	flex-wrap: wrap;
	gap: 12px 16px;
	align-items: center;
	margin-top: 20px;
}

.mkt-case-study-stores .store-badge--apple {
	width: 135px;
	height: auto;
	display: block;
}

.mkt-case-study-stores .store-badge--google {
	width: 155px;
	height: auto;
	display: block;
	margin: -4px 0;
}

.mkt-case-feature__media {
	display: flex;
	justify-content: center;
	align-items: center;
}
.mkt-case-feature__media img {
	display: block;
	width: 100%;
	max-width: 240px;
	height: auto;
	border-radius: 20px;
	box-shadow: var(--shadow-lg);
}
.mkt-case-app {
	margin-top: 20px;
	padding: 28px 32px;
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	background: linear-gradient(135deg, rgba(124, 64, 214, 0.08) 0%, var(--bg) 55%);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px 32px;
	flex-wrap: wrap;
	text-align: left;
}
.mkt-case-app__content {
	flex: 1;
	min-width: min(100%, 280px);
}
.mkt-case-app__eyebrow {
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--brand);
	margin: 0 0 8px;
}
.mkt-case-app__content p {
	margin: 0;
	color: var(--text-secondary);
	font-size: 0.9375rem;
	line-height: 1.55;
	max-width: 640px;
}
.mkt-case-app__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	flex-shrink: 0;
}

/* Timeline */
.mkt-timeline {
	list-style: none;
	margin: 24px 0 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}
.mkt-timeline li {
	padding: 20px;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	background: var(--bg);
}
.mkt-timeline strong {
	display: block;
	font-size: 0.9375rem;
	margin-bottom: 6px;
}
.mkt-timeline span {
	font-size: 0.875rem;
	color: var(--text-secondary);
	line-height: 1.5;
	min-height: calc(0.875rem * 1.5 * 2);
	text-wrap: pretty;
}

/* Comparison */
.mkt-compare {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	margin-top: 32px;
}
.mkt-compare__card {
	padding: 28px;
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	background: var(--bg);
}
.mkt-compare__card--highlight {
	border-color: var(--brand);
	background: var(--brand-muted);
}
.mkt-compare ul {
	margin: 16px 0 0;
	padding: 0;
	list-style: none;
}
.mkt-compare li {
	padding: 8px 0;
	font-size: 0.9375rem;
	color: var(--text-secondary);
	border-bottom: 1px solid var(--border);
}
.mkt-compare li:last-child { border-bottom: none; }

/* Musician platform pricing */
.mkt-pricing-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin-top: 32px;
	align-items: stretch;
}
.mkt-pricing-col {
	display: flex;
	flex-direction: column;
	height: 100%;
}
.mkt-pricing-col__tag {
	flex-shrink: 0;
	min-height: 36px;
	margin-bottom: 0;
}
.mkt-pricing-tag {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 36px;
	padding: 8px 16px;
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #fff;
	background: var(--brand);
	border: 1px solid var(--brand);
	border-bottom: none;
	border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.mkt-pricing-col__tag + .mkt-pricing-card {
	border-top-left-radius: 0;
	border-top-right-radius: 0;
}
.mkt-pricing-card {
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: 0;
	overflow: hidden;
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	background: var(--bg);
}
.mkt-pricing-card--featured {
	border-color: var(--brand);
	background: var(--brand-muted);
	box-shadow: var(--shadow);
}
.mkt-pricing-card__content {
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: 28px;
}
.mkt-pricing-card__price {
	margin: 0 0 12px;
	line-height: 1.1;
}
.mkt-pricing-card__amount {
	font-size: clamp(1.75rem, 3vw, 2.125rem);
	font-weight: 800;
	letter-spacing: -0.03em;
	color: var(--text);
}
.mkt-pricing-card__period {
	font-size: 1rem;
	font-weight: 600;
	color: var(--text-secondary);
}
.mkt-pricing-card__meta {
	margin: 0 0 8px;
	font-size: 0.875rem;
	color: var(--text-secondary);
	line-height: 1.5;
}
.mkt-pricing-card__meta strong {
	color: var(--text);
	font-weight: 600;
}
.mkt-pricing-card__meta--scale {
	margin-bottom: 16px;
}
.mkt-pricing-card__setup-waiver {
	margin: -2px 0 12px;
	font-size: 0.8125rem;
	line-height: 1.45;
	color: var(--text-muted);
}
.mkt-pricing-launch {
	margin-top: 32px;
	padding: 28px 32px;
	border: 1px solid var(--border);
	border-left: 3px solid var(--brand);
	border-radius: var(--radius-lg);
	background: var(--bg);
}
.mkt-pricing-launch .mkt-h3 {
	font-size: 1.25rem;
	margin-bottom: 12px;
}
.mkt-pricing-launch__body {
	margin: 0 0 12px;
	font-size: 1.0625rem;
	font-weight: 600;
	line-height: 1.55;
	color: var(--text);
	text-wrap: pretty;
}
.mkt-pricing-launch__support {
	margin: 0 0 12px;
	font-size: 0.9375rem;
	line-height: 1.6;
	color: var(--text-secondary);
	text-wrap: pretty;
}
.mkt-pricing-launch__note {
	margin: 0;
	font-size: 0.8125rem;
	line-height: 1.5;
	color: var(--text-muted);
}
.mkt-pricing-enterprise {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
	gap: 28px 40px;
	align-items: start;
	margin-top: 28px;
	padding: 32px;
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	background: var(--bg);
	box-shadow: none;
}
.mkt-pricing-enterprise__eyebrow {
	margin: 0 0 8px;
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--brand);
}
.mkt-pricing-enterprise .mkt-h3 {
	margin: 0 0 12px;
	font-size: 1.375rem;
}
.mkt-pricing-enterprise__price {
	margin: 0 0 12px;
	line-height: 1.1;
}
.mkt-pricing-enterprise__desc {
	margin: 16px 0 0;
	font-size: 0.9375rem;
	line-height: 1.6;
	color: var(--text-secondary);
	text-wrap: pretty;
}
.mkt-pricing-enterprise__aside {
	display: flex;
	flex-direction: column;
	min-width: 0;
}
.mkt-pricing-enterprise__features {
	margin-bottom: 20px;
}
.mkt-pricing-enterprise__aside .mkt-btn {
	align-self: flex-start;
	width: auto;
	min-width: 180px;
}
.mkt-pricing-card__desc {
	margin: 0 0 16px;
	font-size: 0.9375rem;
	color: var(--text-secondary);
	line-height: 1.55;
	text-wrap: pretty;
}
.mkt-pricing-card__features {
	margin: 0 0 24px;
	padding: 0;
	list-style: none;
	flex: 1;
}
.mkt-pricing-card__features li {
	position: relative;
	padding: 8px 0 8px 1.25rem;
	font-size: 0.9375rem;
	color: var(--text-secondary);
	line-height: 1.45;
	border-bottom: 1px solid var(--border);
}
.mkt-pricing-card__features li:last-child {
	border-bottom: none;
}
.mkt-pricing-card__features li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 1.05em;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--brand);
}
.mkt-pricing-card .mkt-btn {
	width: 100%;
	margin-top: auto;
}
.mkt-pricing-note {
	margin: 28px 0 0;
	max-width: 760px;
	font-size: 0.875rem;
	line-height: 1.6;
	color: var(--text-muted);
}
.mkt-pricing-context {
	margin: 0 0 32px;
	max-width: 760px;
	padding: 20px 24px;
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	background: var(--bg);
}
.mkt-pricing-context p {
	margin: 0 0 12px;
	font-size: 0.9375rem;
	line-height: 1.6;
	color: var(--text-secondary);
	text-wrap: pretty;
}
.mkt-pricing-context p:last-child {
	margin-bottom: 0;
}
.mkt-section--pricing {
	padding-bottom: clamp(24px, 3vw, 40px);
}
.mkt-section--pricing + .mkt-section--timeline {
	padding-top: clamp(48px, 6vw, 72px);
}
.mkt-section--timeline {
	padding-bottom: clamp(48px, 6vw, 72px);
}
.mkt-section--timeline + .mkt-section {
	padding-top: clamp(48px, 6vw, 72px);
}
.mkt-pricing-compare-title {
	margin: 40px 0 16px;
}
.mkt-pricing-table-wrap {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	background: var(--bg);
}
.mkt-pricing-table {
	width: 100%;
	min-width: 720px;
	border-collapse: collapse;
	font-size: 0.9375rem;
}
.mkt-pricing-table--wide {
	min-width: 880px;
}
.mkt-pricing-table th,
.mkt-pricing-table td {
	padding: 14px 16px;
	text-align: left;
	vertical-align: top;
	border-bottom: 1px solid var(--border);
}
.mkt-pricing-table thead th {
	background: var(--bg-subtle);
	font-weight: 700;
	color: var(--text);
}
.mkt-pricing-table tbody th {
	font-weight: 600;
	color: var(--text);
	background: var(--bg);
}
.mkt-pricing-table tbody td {
	color: var(--text-secondary);
}
.mkt-pricing-table tbody tr:last-child th,
.mkt-pricing-table tbody tr:last-child td {
	border-bottom: none;
}
.mkt-pricing-table thead th.mkt-pricing-table__featured,
.mkt-pricing-table tbody td.mkt-pricing-table__featured {
	background: var(--brand-muted);
}
.mkt-pricing-table__section th {
	padding-top: 18px;
	padding-bottom: 10px;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--brand);
	background: var(--bg-subtle);
	border-bottom: 1px solid var(--border);
}

.mkt-pricing-grid--4 {
	grid-template-columns: repeat(4, 1fr);
}
/* Tournament package cards — align badge, title, commercial, and intro across each row */
.mkt-pricing-grid--4 .mkt-pricing-col__tag {
	min-height: 52px;
}
.mkt-pricing-grid--4 .mkt-pricing-tag {
	min-height: 52px;
	line-height: 1.25;
	text-align: center;
}
.mkt-pricing-grid--4 .mkt-pricing-card__header .mkt-h3 {
	min-height: calc(1.125rem * 1.3 * 2);
	margin-bottom: 8px;
}
.mkt-pricing-grid--4 .mkt-pricing-card__header .mkt-pricing-card__commercial {
	min-height: calc(0.9375rem * 1.4 * 2);
	margin-bottom: 14px;
}
.mkt-pricing-grid--4 .mkt-pricing-card__header .mkt-pricing-card__desc {
	min-height: calc(0.9375rem * 1.55 * 3.5);
	margin-bottom: 16px;
}
.mkt-pricing-proof {
	margin-top: 28px;
	padding: 24px 28px;
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	background: var(--bg);
}
.mkt-pricing-proof .mkt-h3 {
	margin: 0 0 10px;
	font-size: 1.125rem;
}
.mkt-pricing-proof__body {
	margin: 0;
	font-size: 0.9375rem;
	line-height: 1.6;
	color: var(--text-secondary);
}
.mkt-pricing-proof__chips {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 16px 0 0;
	padding: 0;
	list-style: none;
}
.mkt-pricing-proof__chip {
	font-size: 0.8125rem;
	font-weight: 600;
	line-height: 1.3;
	padding: 6px 12px;
	border-radius: 999px;
	background: var(--bg-subtle);
	border: 1px solid var(--border);
	color: var(--text-secondary);
}
.mkt-pricing-card__commercial {
	margin: 0 0 14px;
	font-size: 0.9375rem;
	font-weight: 600;
	line-height: 1.4;
	color: var(--brand);
}
.mkt-pricing-partnership {
	margin: 20px 0 0;
	max-width: 72ch;
	font-size: 0.9375rem;
	line-height: 1.6;
	color: var(--text-secondary);
}

@media (max-width: 1200px) {
	.mkt-pricing-grid--4 {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 640px) {
	.mkt-pricing-grid--4 .mkt-pricing-col__tag,
	.mkt-pricing-grid--4 .mkt-pricing-tag,
	.mkt-pricing-grid--4 .mkt-pricing-card__header .mkt-h3,
	.mkt-pricing-grid--4 .mkt-pricing-card__header .mkt-pricing-card__commercial,
	.mkt-pricing-grid--4 .mkt-pricing-card__header .mkt-pricing-card__desc {
		min-height: auto;
	}
}

@media (max-width: 1024px) {
	.mkt-pricing-grid {
		grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	}
	.mkt-pricing-grid--4 {
		grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	}
}

/* Partnership grid */
.mkt-partnership-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	margin-top: 20px;
}
.mkt-partnership-grid .mkt-card p {
	min-height: calc(0.9375rem * 1.55 * 3);
	text-wrap: pretty;
}

/* Footer */
.mkt-footer {
	border-top: 1px solid var(--border);
	padding: 48px 0 32px;
	background: var(--bg-subtle);
}
.mkt-footer__grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	gap: 32px;
	margin-bottom: 40px;
}
.mkt-footer__brand p {
	margin: 12px 0 0;
	font-size: 0.875rem;
	color: var(--text-muted);
	max-width: 280px;
	line-height: 1.55;
}
.mkt-footer__col h4 {
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--text-muted);
	margin: 0 0 12px;
}
.mkt-footer__col ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.mkt-footer__col li { margin-bottom: 8px; }
.mkt-footer__col a {
	text-decoration: none;
	color: var(--text-secondary);
	font-size: 0.9375rem;
}
.mkt-footer__col a:hover { color: var(--brand); }
.mkt-footer__bottom {
	display: flex;
	flex-wrap: wrap;
	gap: 12px 24px;
	justify-content: space-between;
	align-items: center;
	padding-top: 24px;
	border-top: 1px solid var(--border);
	font-size: 0.875rem;
	color: var(--text-muted);
}
.mkt-footer__bottom a {
	color: var(--text-muted);
	text-decoration: none;
}
.mkt-footer__bottom a:hover { color: var(--brand); }

/* Ticker (consumer app page) */
.mkt-ticker {
	background: var(--brand);
	color: #fff;
	overflow: hidden;
	border-bottom: 1px solid rgba(255,255,255,0.15);
}
.mkt-ticker__inner {
	display: flex;
	gap: 32px;
	padding: 10px 0;
	animation: mkt-ticker-scroll 45s linear infinite;
	white-space: nowrap;
}
.mkt-ticker:hover .mkt-ticker__inner { animation-play-state: paused; }
@keyframes mkt-ticker-scroll {
	from { transform: translateX(0); }
	to { transform: translateX(-50%); }
}
.mkt-ticker__item {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 0.875rem;
	font-weight: 500;
}
.mkt-ticker__icon {
	flex: 0 0 auto;
	font-size: 0.95rem;
	line-height: 1;
	opacity: 0.95;
}
.mkt-ticker__badge {
	font-size: 0.6875rem;
	font-weight: 800;
	padding: 2px 8px;
	border-radius: 999px;
	background: rgba(255,255,255,0.2);
}
.mkt-ticker__badge--live {
	background: #ff3b5c;
}

/* Download cards */
.mkt-download-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}
.mkt-download-card {
	padding: 28px;
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	background: var(--bg-elevated);
	text-align: center;
}
.mkt-download-card img {
	height: 44px;
	width: auto;
}

/* Forms */
.mkt-form-wrap {
	max-width: 520px;
	margin: 0 auto;
	padding: var(--section-y) 0;
}
.mkt-form {
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 22px;
	background: var(--bg-subtle);
	box-sizing: border-box;
}
.mkt-form label {
	display: block;
	font-weight: 600;
	font-size: 0.875rem;
	margin-top: 16px;
}
.mkt-form label:first-of-type { margin-top: 0; }
.mkt-form input,
.mkt-form textarea {
	width: 100%;
	box-sizing: border-box;
	margin-top: 6px;
	padding: 10px 12px;
	border: 1px solid var(--border);
	border-radius: var(--radius-sm);
	font: inherit;
	font-size: 1rem;
}
.mkt-form input:focus,
.mkt-form textarea:focus {
	outline: none;
	border-color: var(--brand);
	box-shadow: 0 0 0 3px var(--brand-muted);
}
.mkt-form textarea {
	min-height: 120px;
	resize: vertical;
}
.mkt-form .mkt-btn { margin-top: 18px; width: 100%; box-sizing: border-box; }
.mkt-msg { font-weight: 600; margin-bottom: 16px; }
.mkt-msg--ok { color: var(--brand); }
.mkt-msg--error { color: #c41e3a; }
.mkt-hp { display: none !important; }

/* Explore links */
.mkt-explore {
	border-top: 1px solid var(--border);
	padding-top: 40px;
	margin-top: 48px;
}
.mkt-explore ul {
	list-style: none;
	padding: 0;
	margin: 12px 0 0;
	display: flex;
	flex-wrap: wrap;
	gap: 12px 20px;
}

/* Reveal animation */
.mkt-reveal {
	opacity: 0;
	transform: translateY(16px);
	transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.mkt-reveal.is-visible {
	opacity: 1;
	transform: none;
}

/* Responsive */
@media (max-width: 900px) {
	.mkt-timeline { grid-template-columns: 1fr 1fr; }
	.mkt-footer__grid { grid-template-columns: 1fr 1fr; }
	.mkt-pricing-enterprise {
		grid-template-columns: 1fr;
		gap: 24px;
	}
}

@media (max-width: 768px) {
	.mkt-hero--home {
		min-height: auto;
		padding: 48px 0 56px;
	}
	.mkt-hero--home .mkt-hero__grid {
		grid-template-columns: 1fr;
		gap: 36px;
	}
	.mkt-hero--home::after {
		background:
			linear-gradient(180deg, rgba(7, 10, 18, 0.92) 0%, rgba(7, 10, 18, 0.72) 42%, rgba(7, 10, 18, 0.85) 100%),
			radial-gradient(ellipse 120% 80% at 50% 18%, rgba(124, 64, 214, 0.45), transparent 58%);
	}
	.mkt-hero--platform {
		min-height: auto;
		padding: 48px 0 56px;
	}
	.mkt-hero--platform::before {
		opacity: 0.28;
		-webkit-mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.5) 35%, rgba(0, 0, 0, 0.75) 100%);
		mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.5) 35%, rgba(0, 0, 0, 0.75) 100%);
	}
	.mkt-hero--platform::after {
		background:
			linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0.94) 55%, rgba(255, 255, 255, 0.82) 100%),
			radial-gradient(ellipse 80% 60% at 50% 0%, rgba(124, 64, 214, 0.12), transparent 60%);
	}
	.mkt-hero--platform .mkt-hero__content {
		max-width: none;
	}
	.mkt-hero--customers .mkt-lede,
	.mkt-hero__support {
		max-width: none;
	}
	.mkt-hero__stats {
		grid-template-columns: 1fr;
	}
	.mkt-nav__toggle { display: flex; }
	.mkt-nav__menu {
		position: fixed;
		top: var(--nav-height);
		left: 0;
		right: 0;
		bottom: 0;
		background: var(--bg);
		flex-direction: column;
		align-items: stretch;
		padding: 24px;
		gap: 24px;
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transition: opacity 0.2s var(--ease), visibility 0.2s;
	}
	.mkt-nav.is-mobile-open .mkt-nav__menu {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
	}
	.mkt-nav__links {
		flex-direction: column;
		align-items: stretch;
		gap: 0;
	}
	.mkt-nav__links a,
	.mkt-nav__dropdown-btn {
		padding: 12px 0;
		font-size: 1rem;
	}
	.mkt-nav__dropdown-panel {
		position: static;
		opacity: 1;
		visibility: visible;
		transform: none;
		box-shadow: none;
		border: none;
		padding: 0;
		margin-top: 4px;
	}
	.mkt-nav__ctas {
		flex-direction: column;
		width: 100%;
	}
	.mkt-nav__ctas .mkt-btn { width: 100%; justify-content: center; }
	.mkt-card-grid,
	.mkt-compare,
	.mkt-case-grid,
	.mkt-download-grid,
	.mkt-partnership-grid,
	.mkt-pricing-grid { grid-template-columns: 1fr; }
	.mkt-pricing-enterprise {
		grid-template-columns: 1fr;
		gap: 24px;
		padding: 24px 20px;
	}
	.mkt-pricing-enterprise__aside .mkt-btn {
		width: 100%;
	}
	.mkt-pricing-launch {
		padding: 24px 20px;
	}
	.mkt-case-feature {
		grid-template-columns: 1fr;
		padding: 24px;
	}
	.mkt-case-feature__media {
		order: -1;
	}
	.mkt-pricing-proof__chips--hub {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.mkt-pricing-proof__chips--hub .mkt-pricing-proof__chip,
	.mkt-pricing-proof__chips--hub .mkt-pricing-proof__chip:nth-child(n+4):nth-last-child(-n+2) {
		grid-column: span 1;
	}
	.mkt-pricing-proof__chips--hub .mkt-pricing-proof__chip:last-child:nth-child(odd) {
		grid-column: span 2;
	}
	.mkt-case-app {
		flex-direction: column;
		align-items: stretch;
		padding: 24px;
	}
	.mkt-case-app__actions {
		width: 100%;
	}
	.mkt-case-app__actions .mkt-btn {
		flex: 1;
		justify-content: center;
	}
	.mkt-product-grid { grid-template-columns: 1fr; }
	.mkt-timeline { grid-template-columns: 1fr; }
	.mkt-footer__grid { grid-template-columns: 1fr; }
}

/* Homepage sections */
.mkt-home-phones {
	position: relative;
	width: 100%;
	min-width: 280px;
	height: 480px;
	max-width: 480px;
	margin: 0 auto;
	justify-self: center;
}
.mkt-home-phones__item {
	position: absolute;
	margin: 0;
	width: 210px;
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: 0 18px 48px rgba(0, 0, 0, 0.35);
	background: #1a1028;
}
.mkt-home-phones__item img {
	display: block;
	width: 100%;
	height: auto;
	object-fit: contain;
}
.mkt-home-phones__item--1 {
	left: 8%;
	top: 8%;
	z-index: 3;
	transform: rotate(-4deg);
}
.mkt-home-phones__item--2 {
	left: 34%;
	top: 0;
	z-index: 2;
	transform: rotate(1deg);
}
.mkt-home-phones__item--3 {
	right: 4%;
	top: 14%;
	z-index: 1;
	transform: rotate(5deg);
}
@media (prefers-reduced-motion: reduce) {
	.mkt-home-phones__item--1,
	.mkt-home-phones__item--2,
	.mkt-home-phones__item--3 {
		transform: none;
	}
}

.mkt-home-journey {
	display: grid;
	grid-template-columns: repeat(7, minmax(0, 1fr));
	gap: 12px;
	list-style: none;
	margin: 40px 0 0;
	padding: 0;
	counter-reset: journey;
}
.mkt-home-journey__step {
	display: flex;
	flex-direction: column;
	gap: 6px;
	padding: 16px 14px;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	background: var(--bg);
	box-shadow: var(--shadow-sm);
	min-width: 0;
}
.mkt-home-journey__step strong {
	font-size: 0.9375rem;
	color: var(--text);
}
.mkt-home-journey__step span {
	font-size: 0.8125rem;
	line-height: 1.4;
	color: var(--text-secondary);
}
.mkt-home-journey__step::before {
	counter-increment: journey;
	content: counter(journey);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	margin-bottom: 4px;
	border-radius: 999px;
	background: var(--brand-muted);
	color: var(--brand);
	font-size: 0.75rem;
	font-weight: 700;
}

.mkt-home-features {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px;
	margin-top: 40px;
}
.mkt-home-feature {
	padding: 24px;
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	background: var(--bg);
	box-shadow: var(--shadow-sm);
}
.mkt-home-feature:last-child:nth-child(odd) {
	grid-column: 1 / -1;
}
.mkt-home-feature .mkt-h3 {
	margin-bottom: 8px;
}
.mkt-home-feature p {
	margin: 0 0 16px;
	color: var(--text-secondary);
	font-size: 0.9375rem;
	line-height: 1.55;
}

.mkt-home-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	list-style: none;
	margin: 0;
	padding: 0;
}
.mkt-home-chips li {
	padding: 6px 10px;
	border-radius: 999px;
	border: 1px solid var(--border);
	background: var(--bg-subtle);
	color: var(--text-secondary);
	font-size: 0.8125rem;
	font-weight: 500;
	line-height: 1.2;
}

.mkt-home-shot-row {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
	margin-top: 40px;
	justify-items: center;
}
.mkt-home-shot-row figure {
	margin: 0;
	max-width: 260px;
	width: 100%;
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow);
	background: var(--bg);
}
.mkt-home-shot-row img {
	display: block;
	width: 100%;
	height: auto;
	object-fit: contain;
}

.mkt-home-categories {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 16px;
	margin-top: 36px;
}
.mkt-home-category {
	padding: 24px 20px;
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	background: var(--bg-subtle);
	min-width: 0;
}
.mkt-home-category__icon {
	width: 48px;
	height: 48px;
	object-fit: contain;
	margin-bottom: 12px;
}
.mkt-home-category__glyph {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 48px;
	height: 48px;
	padding: 0 10px;
	margin-bottom: 12px;
	border-radius: var(--radius-sm);
	background: var(--brand-muted);
	color: var(--brand);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}
.mkt-home-category .mkt-h3 {
	margin-bottom: 8px;
}
.mkt-home-category p {
	margin: 0;
	color: var(--text-secondary);
	font-size: 0.9375rem;
	line-height: 1.55;
}

.mkt-home-contrast {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 20px;
	margin-top: 36px;
}
.mkt-home-contrast__col {
	padding: 28px 24px;
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	background: var(--bg);
}
.mkt-home-contrast__col--focus {
	border-color: var(--brand);
	background: var(--brand-muted);
}
.mkt-home-contrast__list {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	list-style: none;
	margin: 16px 0 0;
	padding: 0;
}
.mkt-home-contrast__list li {
	padding: 8px 12px;
	border-radius: var(--radius-sm);
	border: 1px dashed var(--border-strong);
	color: var(--text-secondary);
	font-size: 0.875rem;
}
.mkt-home-contrast__list--focus li {
	border-style: solid;
	border-color: rgba(124, 64, 214, 0.35);
	background: var(--bg);
	color: var(--text);
	font-weight: 600;
}

.mkt-home-split {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
	gap: clamp(28px, 5vw, 56px);
	align-items: center;
}
.mkt-home-split--reverse .mkt-home-split__copy {
	order: 2;
}
.mkt-home-split--reverse .mkt-home-split__media {
	order: 1;
}
.mkt-home-split__media {
	margin: 0;
	justify-self: center;
	max-width: 320px;
	width: 100%;
	border-radius: var(--radius-xl);
	overflow: hidden;
	box-shadow: var(--shadow-lg);
}
.mkt-home-split__media img {
	display: block;
	width: 100%;
	height: auto;
	object-fit: contain;
}
.mkt-home-bullets {
	margin: 20px 0 0;
	padding-left: 1.15rem;
	color: var(--text-secondary);
}
.mkt-home-bullets li {
	margin-bottom: 8px;
	line-height: 1.5;
}

.mkt-home-org-lead {
	font-size: clamp(1.125rem, 2vw, 1.35rem);
	font-weight: 600;
	color: var(--text);
	max-width: 40ch;
	margin-left: auto;
	margin-right: auto;
}
.mkt-home-org-note {
	margin: 28px 0 0;
	text-align: center;
	color: var(--text-muted);
	font-size: 0.9375rem;
}
.mkt-home-org-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mkt-home-proof {
	display: grid;
	gap: 28px;
	margin-top: 40px;
}
.mkt-home-proof__card {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(180px, 0.55fr);
	gap: 28px;
	align-items: center;
	padding: 28px;
	border: 1px solid var(--border);
	border-radius: var(--radius-xl);
	background: var(--bg);
	box-shadow: var(--shadow-sm);
}
.mkt-home-proof__content .mkt-h3 {
	margin-bottom: 10px;
}
.mkt-home-proof__content > p {
	margin: 0 0 16px;
	color: var(--text-secondary);
	line-height: 1.55;
}
.mkt-home-proof__metrics {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 12px;
	list-style: none;
	margin: 0 0 20px;
	padding: 0;
}
.mkt-home-proof__metrics li {
	padding: 12px;
	border-radius: var(--radius);
	background: var(--bg-subtle);
	border: 1px solid var(--border);
	min-width: 0;
}
.mkt-home-proof__metrics strong {
	display: block;
	font-size: 1.125rem;
	color: var(--text);
	letter-spacing: -0.02em;
}
.mkt-home-proof__metrics span {
	display: block;
	margin-top: 4px;
	font-size: 0.75rem;
	line-height: 1.35;
	color: var(--text-muted);
}
.mkt-home-proof__links {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
	margin-top: 8px;
}
.mkt-home-proof__links--spaced {
	margin-top: 28px;
}
.mkt-home-proof__media {
	margin: 0;
	justify-self: center;
	max-width: 260px;
	width: 100%;
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow);
}
.mkt-home-proof__media img {
	display: block;
	width: 100%;
	height: auto;
}

/* Homepage polish — spacing & scanability only */
.mkt--home .mkt-lede--center {
	max-width: 40rem;
}
.mkt--home #how-chirpr-works .mkt-lede--center,
.mkt--home #differentiation .mkt-lede--center {
	max-width: 38rem;
}
.mkt--home .mkt-home-journey {
	margin-top: 44px;
}
.mkt--home .mkt-home-features {
	margin-top: 44px;
	gap: 22px;
}
.mkt--home .mkt-home-feature {
	padding: 28px 24px;
}
.mkt--home .mkt-home-shot-row {
	margin-top: 48px;
}
.mkt--home .mkt-home-categories {
	margin-top: 40px;
	gap: 18px;
}
.mkt--home .mkt-home-category {
	padding: 28px 22px;
}
.mkt--home .mkt-home-contrast {
	margin-top: 40px;
}
.mkt--home .mkt-home-split {
	gap: clamp(32px, 5vw, 64px);
}
.mkt--home .mkt-home-org-lead {
	margin-bottom: 12px;
}
.mkt--home #for-organizations .mkt-lede--center:not(.mkt-home-org-lead) {
	max-width: 42rem;
}
.mkt--home .mkt-home-org-grid {
	margin-top: 48px;
}
.mkt--home .mkt-home-org-note {
	margin-top: 32px;
}
.mkt--home .mkt-home-proof {
	margin-top: 44px;
	gap: 32px;
}
.mkt--home .mkt-home-proof__card {
	padding: 32px;
	gap: 32px;
}
.mkt--home .mkt-home-proof__metrics {
	margin-bottom: 24px;
}
.mkt--home .mkt-home-vision {
	max-width: 40rem;
	margin-left: auto;
	margin-right: auto;
}
.mkt--home .mkt-home-vision__support {
	margin-top: 18px;
}
.mkt--home .mkt-home-final-ctas {
	margin-top: 28px;
}
.mkt--home .mkt-home-final-note {
	margin-top: 28px;
	max-width: 36rem;
	margin-left: auto;
	margin-right: auto;
}

@media (max-width: 1100px) {
	.mkt-home-journey {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
	.mkt-home-categories {
		grid-template-columns: 1fr 1fr;
	}
	.mkt-home-org-grid {
		grid-template-columns: 1fr;
	}
	.mkt-home-proof__metrics {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 900px) {
	.mkt-home-phones {
		height: 400px;
	}
	.mkt-home-shot-row {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 520px) {
	.mkt-home-journey {
		grid-template-columns: 1fr;
	}
	.mkt-hero--home .mkt-btn-row {
		flex-direction: column;
		align-items: stretch;
	}
	.mkt-hero--home .mkt-btn-row .mkt-btn {
		width: 100%;
		justify-content: center;
	}
}

/* Homepage mobile overrides */
@media (max-width: 768px) {
	.mkt-home-phones {
		height: 340px;
		max-width: 340px;
		margin: 0 auto;
	}
	.mkt-home-phones__item {
		width: min(46vw, 168px);
	}
	.mkt-home-journey {
		grid-template-columns: 1fr 1fr;
	}
	.mkt-home-features {
		grid-template-columns: 1fr;
	}
	.mkt-home-feature:last-child:nth-child(odd) {
		grid-column: auto;
	}
	.mkt-home-categories {
		grid-template-columns: 1fr;
	}
	.mkt-home-contrast {
		grid-template-columns: 1fr;
	}
	.mkt-home-split,
	.mkt-home-split--reverse {
		grid-template-columns: 1fr;
	}
	.mkt-home-split--reverse .mkt-home-split__copy,
	.mkt-home-split--reverse .mkt-home-split__media {
		order: unset;
	}
	.mkt-home-split--reverse .mkt-home-split__media {
		order: -1;
	}
	.mkt-home-proof__card {
		grid-template-columns: 1fr;
	}
	.mkt-home-proof__media {
		order: -1;
		max-width: 220px;
		margin: 0 auto;
	}
	.mkt-home-proof__metrics {
		grid-template-columns: 1fr 1fr;
	}
	.mkt-home-shot-row {
		grid-template-columns: 1fr;
		justify-items: center;
	}
	.mkt-home-shot-row figure {
		max-width: 240px;
	}
	.mkt--home .mkt-home-proof__card {
		padding: 24px 20px;
	}
	.mkt--home .mkt-home-proof__links {
		flex-direction: column;
		align-items: stretch;
	}
	.mkt--home .mkt-home-proof__links .mkt-btn {
		width: 100%;
		justify-content: center;
	}
	.mkt--home .mkt-home-final-ctas {
		flex-direction: column;
		align-items: stretch;
	}
	.mkt--home .mkt-home-final-ctas .mkt-btn {
		width: 100%;
		justify-content: center;
	}
	.mkt--home .mkt-hero__tertiary,
	.mkt--home .mkt-home-final-note {
		text-wrap: pretty;
	}
	.mkt--home .mkt-home-feature,
	.mkt--home .mkt-home-category {
		padding: 24px 20px;
	}
}

/* Chirpr App product page */
.mkt-hero--app {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	display: flex;
	align-items: center;
	min-height: auto;
	padding: clamp(40px, 6vw, 72px) 0 clamp(48px, 7vw, 80px);
	background: linear-gradient(145deg, #f3ebff 0%, #faf8ff 38%, #ffffff 100%);
	border-bottom: 1px solid var(--border);
}
.mkt-hero--app .mkt-wrap {
	width: 100%;
}
.mkt-hero--app .mkt-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
	gap: clamp(28px, 4vw, 48px);
	align-items: center;
}
.mkt-hero--app .mkt-hero__content {
	max-width: 36rem;
}
.mkt-hero--app .mkt-h1 {
	font-size: clamp(1.75rem, 3.2vw, 2.35rem);
	line-height: 1.15;
	text-wrap: balance;
}
.mkt-hero--app .mkt-lede {
	max-width: 46ch;
	margin-bottom: 24px;
	text-wrap: pretty;
}
.mkt-hero--app .mkt-hero__media {
	margin: 0;
	justify-self: center;
	max-width: 260px;
	width: 100%;
	border-radius: var(--radius-xl);
	overflow: hidden;
	box-shadow: var(--shadow-lg);
	background: var(--bg);
}
.mkt-hero--app .mkt-hero__media img {
	display: block;
	width: 100%;
	height: auto;
	object-fit: contain;
}
.mkt-hero--app .mkt-hero__status {
	margin: 16px 0 0;
	font-size: 0.9375rem;
	line-height: 1.5;
	color: var(--text-muted);
}

.mkt-app-room-flow {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 8px 10px;
	margin: 28px auto 0;
	max-width: 52rem;
	color: var(--text-secondary);
	font-size: 0.9375rem;
	font-weight: 600;
}
.mkt-app-room-flow span:not([aria-hidden]) {
	padding: 8px 12px;
	border-radius: var(--radius-sm);
	border: 1px solid var(--border);
	background: var(--bg);
	color: var(--text);
	box-shadow: var(--shadow-sm);
}
.mkt-app-room-flow span[aria-hidden] {
	color: var(--brand);
	font-weight: 700;
}

.mkt-app-room-index {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 16px;
	margin-top: 32px;
	justify-items: center;
}
.mkt-app-room-index__item {
	display: block;
	width: 100%;
	max-width: 160px;
	text-decoration: none;
	color: inherit;
	transition: transform 0.18s var(--ease);
}
.mkt-app-room-index__item:hover,
.mkt-app-room-index__item:focus-visible {
	transform: translateY(-2px);
}
.mkt-app-room-index__item:focus-visible {
	outline: 2px solid var(--brand);
	outline-offset: 4px;
	border-radius: var(--radius);
}
.mkt-app-room-index figure {
	margin: 0;
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
	background: var(--bg);
}
.mkt-app-room-index img {
	display: block;
	width: 100%;
	height: auto;
	object-fit: contain;
}
.mkt-app-room-index figcaption {
	margin-top: 10px;
	text-align: center;
	font-size: 0.8125rem;
	font-weight: 600;
	color: var(--text-secondary);
}

.mkt-app-chip-row {
	justify-content: center;
	margin-top: 24px;
}

.mkt-app-journey-title {
	white-space: nowrap;
	font-size: clamp(0.9375rem, 1.7vw + 0.55rem, 1.75rem);
	letter-spacing: -0.02em;
	line-height: 1.25;
	max-width: 100%;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
}
.mkt-app-journey-title::-webkit-scrollbar {
	display: none;
}

.mkt-home-shot-row figcaption {
	margin-top: 12px;
	text-align: center;
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--text-secondary);
}

.mkt-home-shot-row:has(> :nth-child(2):last-child) {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	max-width: 560px;
	margin-left: auto;
	margin-right: auto;
}

.mkt-app-category-tabs {
	margin: 14px 0 0 !important;
	font-size: 0.8125rem !important;
	font-weight: 600;
	letter-spacing: 0.01em;
	color: var(--brand) !important;
}

.mkt-app-download__actions {
	margin-top: 28px;
}
.mkt-app-download__status {
	margin: 16px 0 0;
	font-size: 0.9375rem;
	line-height: 1.5;
	color: var(--text-muted);
}

.mkt-app-enterprise {
	padding-top: 48px;
	padding-bottom: 56px;
}
.mkt-app-enterprise .mkt-h2 {
	font-size: clamp(1.35rem, 2.4vw, 1.75rem);
}
.mkt-app-enterprise .mkt-lede {
	max-width: 36rem;
	margin-left: auto;
	margin-right: auto;
}
.mkt-app-enterprise__ctas {
	margin-top: 24px;
	flex-wrap: wrap;
	gap: 12px;
}

@media (max-width: 900px) {
	.mkt-hero--app .mkt-hero__grid {
		grid-template-columns: 1fr;
		gap: 28px;
	}
	.mkt-hero--app .mkt-hero__media {
		max-width: 220px;
	}
	.mkt-hero--app .mkt-btn-row {
		flex-wrap: wrap;
	}
}

@media (max-width: 1100px) {
	.mkt-app-room-index {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 768px) {
	.mkt-hero--app {
		padding: 36px 0 48px;
	}
	.mkt-hero--app .mkt-btn-row {
		flex-direction: column;
		align-items: stretch;
	}
	.mkt-hero--app .mkt-btn-row .mkt-btn {
		width: 100%;
		justify-content: center;
	}
	.mkt-app-room-index {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 12px;
	}
	.mkt-app-room-index__item {
		max-width: 140px;
	}
	.mkt-app-enterprise__ctas {
		flex-direction: column;
		align-items: stretch;
	}
	.mkt-app-enterprise__ctas .mkt-btn {
		width: 100%;
		justify-content: center;
	}
	.mkt-app-room-flow {
		gap: 6px 8px;
		font-size: 0.8125rem;
	}
}

@media (max-width: 430px) {
	.mkt-app-room-index {
		grid-template-columns: 1fr 1fr;
	}
}

