/* 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-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;
}

/* 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);
}

/* B2B home — full-bleed fans photo, purple stage glow, light text */
.mkt-hero--home {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	display: flex;
	align-items: center;
	min-height: min(72vh, 640px);
	padding: clamp(56px, 9vw, 96px) 0 clamp(72px, 10vw, 104px);
	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;
	filter: brightness(1.12) saturate(1.12) contrast(1.04);
	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.9) 0%, rgba(7, 10, 18, 0.52) 38%, rgba(7, 10, 18, 0.22) 72%, rgba(7, 10, 18, 0.45) 100%),
		linear-gradient(180deg, rgba(7, 10, 18, 0.2) 0%, transparent 42%, rgba(7, 10, 18, 0.72) 100%),
		radial-gradient(ellipse 110% 85% at 45% 32%, rgba(124, 64, 214, 0.58), transparent 55%),
		radial-gradient(ellipse 70% 55% at 12% 55%, rgba(158, 124, 255, 0.32), transparent 50%),
		radial-gradient(ellipse 50% 40% at 92% 70%, rgba(180, 150, 255, 0.12), transparent 45%);
}
.mkt-hero--home .mkt-wrap {
	position: relative;
	z-index: 2;
	width: 100%;
}
.mkt-hero--home .mkt-hero__content {
	max-width: min(720px, 100%);
}
.mkt-hero--home .mkt-eyebrow {
	color: #d4b8ff;
}
.mkt-hero--home .mkt-h1 {
	color: #fff;
	font-size: clamp(2rem, 4vw, 2.85rem);
	line-height: 1.1;
}
.mkt-hero--home .mkt-lede {
	color: rgba(255, 255, 255, 0.88);
	max-width: 42ch;
}
.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);
}

/* 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__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-section--case-follow {
	padding-bottom: clamp(24px, 3vw, 40px);
}
.mkt-section--case-follow + .mkt-section {
	padding-top: clamp(32px, 4vw, 48px);
}
.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-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 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:nth-child(3),
.mkt-pricing-table tbody td:nth-child(3) {
	background: var(--brand-muted);
}

.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__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; }
}

@media (max-width: 768px) {
	.mkt-hero--home {
		min-height: min(68vh, 560px);
		padding: 48px 0 56px;
	}
	.mkt-hero--home::after {
		background:
			linear-gradient(180deg, rgba(7, 10, 18, 0.9) 0%, rgba(7, 10, 18, 0.55) 42%, rgba(7, 10, 18, 0.78) 100%),
			radial-gradient(ellipse 120% 80% at 50% 18%, rgba(124, 64, 214, 0.5), 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-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-launch {
		padding: 24px 20px;
	}
	.mkt-case-feature {
		grid-template-columns: 1fr;
		padding: 24px;
	}
	.mkt-case-feature__media {
		order: -1;
	}
	.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; }
}
