/* Chirpr consumer / discovery pages (categories, events, download, etc.) */

body.mkt--consumer-app {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

body.mkt--consumer-app .mkt-footer {
	margin-top: auto;
}

.mkt-app-main {
	padding: 32px 24px 56px;
	flex: 1;
}

.mkt-app-title {
	font-size: clamp(1.5rem, 3vw, 1.9rem);
	font-weight: 700;
	line-height: 1.2;
	margin: 0 0 16px;
	color: var(--text);
}

.mkt-app-lead {
	font-size: 1.0625rem;
	line-height: 1.6;
	color: var(--text-secondary);
	margin: 0 0 28px;
	max-width: 720px;
}

.mkt-app-tabbox {
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 18px 16px;
	margin-bottom: 16px;
	background: var(--bg);
}

.mkt-app-tabbar {
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem;
	margin: 0;
}

.mkt-app-tabbar a {
	padding: 8px 14px;
	border-radius: var(--radius-sm);
	font-size: 0.92rem;
	font-weight: 600;
	color: var(--text);
	text-decoration: none;
	background: var(--brand-soft);
	transition: background 0.15s var(--ease);
}

.mkt-app-tabbar a.active,
.mkt-app-tabbar a:hover {
	background: var(--brand);
	color: #fff;
}

.mkt-app-tabbar .pill {
	opacity: 0.85;
	margin-left: 0.35rem;
}

.mkt-app-search {
	margin: 12px 0 0;
}

.mkt-app-search input {
	width: 100%;
	box-sizing: border-box;
	border: 1px solid var(--border);
	border-radius: var(--radius-sm);
	padding: 10px 12px;
	font-size: 0.95rem;
	font-family: inherit;
}

.mkt-app-search input:focus {
	outline: none;
	border-color: var(--brand);
	box-shadow: 0 0 0 3px var(--brand-muted);
}

.mkt-app-list {
	border: 1px solid var(--border);
	border-radius: var(--radius);
	overflow: hidden;
	background: var(--bg);
}

.mkt-app-list .row {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 0 16px;
	min-height: 62px;
	text-decoration: none;
	color: var(--text);
	border-bottom: 1px solid var(--border);
	transition: background 0.15s;
}

.mkt-app-list .row:hover,
.mkt-app-list .row:focus-visible {
	background: var(--bg-elevated);
}

.mkt-app-list .row:last-child {
	border-bottom: none;
}

.mkt-app-list .row .icon {
	flex: 0 0 42px;
	width: 42px;
	height: 42px;
}

.mkt-app-list .title {
	font-size: 0.97rem;
	font-weight: 600;
	line-height: 1.35;
}

.mkt-app-list .meta {
	font-size: 0.78rem;
	color: var(--text-secondary);
}

.mkt-app-list .badge {
	margin-left: auto;
	background: var(--brand);
	color: #fff;
	padding: 2px 7px;
	border-radius: 4px;
	font-size: 0.72rem;
	font-weight: 700;
	flex-shrink: 0;
}

.mkt-app-list .timebox {
	margin-left: auto;
	text-align: right;
	font-size: 0.78rem;
	line-height: 1.25;
	flex-shrink: 0;
}

.mkt-app-list .timebox span {
	display: block;
}

.mkt-app-empty {
	padding: 80px 0;
	text-align: center;
	color: var(--text-secondary);
}

.mkt-app-filterbar {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem 1.25rem;
	align-items: flex-end;
	margin-top: 4px;
}

.mkt-app-filterbar label {
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--text-secondary);
}

.mkt-app-filterpill {
	display: inline-flex;
	align-items: center;
	padding: 6px 10px;
	border-radius: 999px;
	background: var(--brand-soft);
	border: 1px solid transparent;
}

.mkt-app-filterpill select {
	border: none;
	background: transparent;
	font-size: 0.85rem;
	font-weight: 500;
	color: var(--text);
	padding: 0;
	appearance: none;
	cursor: pointer;
}

.mkt-app-filterbar button[type="submit"] {
	padding: 8px 16px;
	border: none;
	border-radius: var(--radius-sm);
	background: var(--brand);
	color: #fff;
	font-weight: 600;
	font-size: 0.875rem;
	cursor: pointer;
}

.mkt-app-filterbar button[type="submit"]:hover {
	background: var(--brand-hover);
}

.mkt-app-preview-tag {
	font-size: 0.72rem;
	color: var(--text-muted);
}

.mkt-app-loader {
	padding: 28px 0;
	text-align: center;
	color: var(--text-secondary);
}

/* Download */
.mkt-download-cards {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
	margin-top: 8px;
}

.mkt-download-card {
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 24px;
	background: var(--bg-subtle);
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.mkt-download-card h3 {
	font-size: 1.1rem;
	margin: 0 0 8px;
}

.mkt-download-card p {
	font-size: 0.95rem;
	margin: 0 0 16px;
	color: var(--text-secondary);
	line-height: 1.5;
}

.mkt-download-card .platform-badge {
	width: 56px;
	height: 56px;
	margin-bottom: 16px;
	border-radius: var(--radius);
	object-fit: contain;
}

.mkt-download-card .store-badge--apple {
	width: 135px;
	height: 44px;
	display: block;
}

.mkt-download-card .store-badge--google {
	width: 155px;
	height: 60px;
	display: block;
}

.mkt-form .mkt-btn {
	margin-top: 18px;
	width: 100%;
	box-sizing: border-box;
}

/* Contact / demo form pages (consumer shell) */
.mkt-form-page__intro {
	margin-bottom: 20px;
}

.mkt-form-page__note {
	margin-top: 1.5rem;
	font-size: 0.9375rem;
	color: var(--text-secondary);
}

.mkt-static-main .mkt-form {
	max-width: 560px;
}

.mkt-msg {
	font-weight: 600;
	margin-bottom: 12px;
}

.mkt-msg--error {
	color: #c41e3a;
}

.mkt-msg--ok {
	color: var(--brand);
}

.mkt-hp {
	display: none !important;
}

/* Static content pages */
.mkt-static-content {
	max-width: 720px;
	line-height: 1.65;
	color: var(--text-secondary);
}

.mkt-static-content h1 {
	color: var(--text);
	font-size: clamp(1.5rem, 3vw, 1.9rem);
	font-weight: 700;
	line-height: 1.2;
	margin: 0 0 1rem;
}

.mkt-static-content h2,
.mkt-static-content h3 {
	color: var(--text);
	margin: 1.5rem 0 0.5rem;
}

.mkt-static-content a {
	color: var(--brand);
	font-weight: 600;
	text-decoration: none;
}

.mkt-static-content a:hover {
	text-decoration: underline;
}

.mkt-static-content ul {
	padding-left: 1.25rem;
}

.mkt-static-content .video-container {
	max-width: 720px;
	margin: 1.5rem auto 2rem;
	border-radius: var(--radius-lg, 12px);
	overflow: hidden;
	border: 1px solid var(--border);
	box-shadow: var(--shadow, 0 4px 18px rgba(0, 0, 0, 0.06));
}

.mkt-static-content video {
	width: 100%;
	height: auto;
	display: block;
}

.mkt-static-content .about-audience-toggle {
	display: inline-flex;
	flex-wrap: wrap;
	gap: 4px;
	margin: 0 0 1.35rem;
	padding: 4px;
	background: var(--brand-soft);
	border: 1px solid var(--border);
	border-radius: 10px;
}

.mkt-static-content .about-audience-toggle button {
	font: 600 0.9rem/1 Inter, system-ui, sans-serif;
	padding: 10px 18px;
	border: none;
	border-radius: 8px;
	background: transparent;
	color: var(--text);
	cursor: pointer;
	transition: background 0.15s ease, color 0.15s ease;
}

.mkt-static-content .about-audience-toggle button[aria-selected="true"] {
	background: var(--brand);
	color: #fff;
}

.mkt-static-content .about-audience-toggle button[aria-selected="false"]:hover {
	background: var(--brand-muted);
}

.mkt-static-content .about-audience-toggle button:focus-visible {
	outline: 2px solid var(--brand);
	outline-offset: 2px;
}

.mkt-static-content .about-audience-panel h3 {
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--text);
	margin: 2rem 0 0.5rem;
	line-height: 1.3;
}

.mkt-static-content .about-audience-panel h3:first-child {
	margin-top: 0;
}

/* Team page */
.mkt-team-grid {
	display: grid;
	gap: 2rem;
	margin: 2.25rem 0 0;
}

.mkt-team-member {
	display: grid;
	grid-template-columns: 160px minmax(0, 1fr);
	gap: 1.5rem 1.75rem;
	align-items: start;
	padding: 1.5rem;
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	background: var(--bg);
}

.mkt-team-member__photo {
	display: block;
	width: 160px;
	height: 160px;
	object-fit: cover;
	border: 3px solid var(--brand);
	border-radius: var(--radius);
	background: var(--bg-subtle);
}

.mkt-team-member__body p {
	margin: 0;
}

.mkt-team-member__name {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--text);
	margin: 0 0 0.25rem;
	line-height: 1.3;
}

.mkt-team-member__title {
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--brand);
	margin: 0 0 0.75rem;
}

.mkt-team-note {
	margin-top: 2rem;
	color: var(--text-secondary);
}

@media (max-width: 640px) {
	.mkt-team-member {
		grid-template-columns: 1fr;
	}

	.mkt-team-member__photo {
		width: 120px;
		height: 120px;
	}
}

/* About page — sidebar + two-column layout */
.mkt-static-layout {
	display: grid;
	grid-template-columns: minmax(0, 720px) minmax(280px, 340px);
	gap: 40px 48px;
	align-items: start;
}

.mkt-static-main {
	min-width: 0;
}

.mkt-static-sidebar__inner {
	position: sticky;
	top: 88px;
}

.mkt-static-sidebar--mobile {
	display: none;
}

.mkt-path-cards {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.mkt-path-card {
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 18px 18px 16px;
	background: var(--bg);
	box-shadow: var(--shadow);
	transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.mkt-path-card.is-emphasized {
	border-color: var(--brand);
	box-shadow: 0 8px 28px var(--brand-muted);
}

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

.mkt-path-card__lede {
	font-size: 0.9rem;
	line-height: 1.55;
	color: var(--text-secondary);
	margin: 0 0 14px;
}

.mkt-path-card__links {
	list-style: none;
	margin: 12px 0 0;
	padding: 0;
	font-size: 0.875rem;
}

.mkt-path-card__links li + li {
	margin-top: 6px;
}

.mkt-path-card__links a {
	color: var(--brand);
	font-weight: 600;
	text-decoration: none;
}

.mkt-path-card__links a:hover {
	text-decoration: underline;
}

.mkt-path-card__stores {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 12px;
	align-items: center;
}

.mkt-path-card__stores .store-badge--apple {
	width: 120px;
	height: auto;
}

.mkt-path-card__stores .store-badge--google {
	width: 135px;
	height: auto;
	margin: -4px 0;
}

.mkt-path-card__footnote {
	margin: 12px 0 0;
	font-size: 0.875rem;
	color: var(--text-secondary);
}

.mkt-path-card__footnote a {
	color: var(--brand);
	font-weight: 600;
	text-decoration: none;
}

.mkt-path-card__footnote a:hover {
	text-decoration: underline;
}

.mkt-btn--block {
	display: block;
	width: 100%;
	text-align: center;
	box-sizing: border-box;
}

@media (max-width: 960px) {
	.mkt-static-layout {
		display: block;
	}

	.mkt-static-sidebar--desktop {
		display: none;
	}

	.mkt-static-sidebar--mobile {
		display: block;
		margin: 0 0 1.5rem;
	}

	.mkt-static-sidebar--mobile .mkt-static-sidebar__inner {
		position: static;
	}
}

/* Event detail */
.mkt-event-hdr {
	margin-bottom: 24px;
}

.mkt-event-sub {
	font-size: 1rem;
	color: var(--text-secondary);
	margin: 0 0 8px;
}

.mkt-event-when {
	font-size: 0.9rem;
	color: var(--text-muted);
	margin: 0;
}

.mkt-event-preview {
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 24px;
	margin-bottom: 24px;
	background: var(--bg-subtle);
}

.mkt-event-preview__body {
	font-size: 0.95rem;
	line-height: 1.65;
	color: var(--text-secondary);
}

.mkt-event-preview__body a {
	color: var(--brand);
}

.mkt-event-chat-note {
	padding: 20px;
	border: 1px dashed var(--border);
	border-radius: var(--radius);
	text-align: center;
	color: var(--text-secondary);
	margin-bottom: 24px;
}

.mkt-event-cta {
	padding: 28px;
	border-radius: var(--radius-lg);
	background: linear-gradient(135deg, rgba(124, 64, 214, 0.1) 0%, var(--bg-subtle) 60%);
	text-align: center;
}

.mkt-event-cta p {
	color: var(--text-secondary);
	margin: 0 0 16px;
	max-width: 480px;
	margin-left: auto;
	margin-right: auto;
}

@media (max-width: 700px) {
	.mkt-app-main {
		padding: 24px 20px 48px;
	}
	.mkt-download-cards {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 480px) {
	.mkt-download-card .store-badge--apple {
		width: 120px;
		height: auto;
		max-height: 40px;
	}
	.mkt-download-card .store-badge--google {
		width: 140px;
		height: auto;
		max-height: 54px;
	}
}

/* Inline store badges (match / matches CTAs) */
.mkt-download-cards--inline {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 16px;
	margin-top: 8px;
}

.mkt-app-main--product .mkt-app-cta {
	margin-top: 56px;
}

.mkt-app-cta {
	margin-top: 32px;
	padding: 28px;
	border-radius: var(--radius-lg);
	background: linear-gradient(135deg, rgba(124, 64, 214, 0.1) 0%, var(--bg-subtle) 60%);
	text-align: center;
}

.mkt-app-cta p {
	color: var(--text-secondary);
	margin: 0 0 16px;
	max-width: 520px;
	margin-left: auto;
	margin-right: auto;
	line-height: 1.55;
}

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

.mkt-link:hover {
	text-decoration: underline;
}

/* Compare page */
.mkt-compare-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0 0 16px;
}

.mkt-compare-pills a {
	text-decoration: none;
	padding: 8px 12px;
	border: 1px solid var(--border);
	border-radius: 999px;
	color: var(--text);
	font-weight: 600;
	font-size: 0.875rem;
	background: var(--bg);
	transition: background 0.15s;
}

.mkt-compare-pills a.active,
.mkt-compare-pills a:hover {
	background: var(--brand);
	border-color: var(--brand);
	color: #fff;
}

.mkt-compare-intro {
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 16px;
	margin-bottom: 16px;
	background: var(--bg-subtle);
	line-height: 1.55;
}

.mkt-compare-table-wrap {
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	overflow: hidden;
	background: var(--bg);
	margin-bottom: 16px;
}

.mkt-compare-table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	table-layout: fixed;
}

.mkt-compare-table col.col-feature { width: 28%; }
.mkt-compare-table col.col-chirpr { width: 36%; }
.mkt-compare-table col.col-other { width: 36%; }

.mkt-compare-table thead th {
	text-align: left;
	font-weight: 700;
	background: var(--brand-soft);
	border-bottom: 1px solid var(--border);
	padding: 12px 14px;
}

.mkt-compare-table tbody td,
.mkt-compare-table tbody th {
	border-bottom: 1px solid var(--border);
	padding: 12px 14px;
	vertical-align: top;
	word-wrap: break-word;
	overflow-wrap: anywhere;
}

.mkt-compare-table tbody th {
	color: var(--text-secondary);
	font-weight: 600;
}

.mkt-compare-table tbody tr:last-child td,
.mkt-compare-table tbody tr:last-child th {
	border-bottom: none;
}

.mkt-compare-table .subline {
	color: var(--text-secondary);
	font-size: 0.92rem;
}

.mkt-compare-wins {
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	overflow: hidden;
	background: var(--bg);
}

.mkt-compare-wins__hdr {
	background: var(--brand-soft);
	border-bottom: 1px solid var(--border);
	padding: 14px 16px;
}

.mkt-compare-wins__hdr h2 {
	margin: 0;
	text-align: center;
	font-size: 1.25rem;
}

.mkt-compare-wins__list {
	list-style: none;
	margin: 0;
	padding: 16px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px 18px;
}

.mkt-compare-wins__list li {
	display: flex;
	gap: 10px;
	align-items: flex-start;
	line-height: 1.5;
	font-size: 0.95rem;
}

.mkt-compare-wins__list .icon {
	flex: 0 0 22px;
	width: 22px;
	height: 22px;
	border-radius: 999px;
	background: var(--brand-soft);
	color: var(--brand);
	font-weight: 800;
	line-height: 22px;
	text-align: center;
	font-size: 0.75rem;
}

.mkt-compare-takeaway {
	margin: 8px 16px 16px;
	padding: 14px 16px;
	border-radius: var(--radius);
	background: var(--brand);
	color: #fff;
	font-weight: 600;
	line-height: 1.45;
	font-size: 0.95rem;
}

/* Match list cards */
.mkt-match-list {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin-bottom: 8px;
}

.mkt-match-card {
	display: block;
	padding: 20px 22px;
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	text-decoration: none;
	color: var(--text);
	transition: transform 0.18s, border-color 0.18s, box-shadow 0.18s;
	background: var(--bg);
}

.mkt-match-card:hover,
.mkt-match-card:focus-visible {
	transform: translateY(-2px);
	border-color: var(--brand);
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

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

.mkt-match-card__meta {
	font-size: 0.87rem;
	color: var(--text-secondary);
	display: flex;
	flex-wrap: wrap;
	gap: 4px;
}

.mkt-match-card__badges {
	margin-top: 10px;
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.mkt-match-card__badges .badge {
	background: var(--brand);
	color: #fff;
	font-size: 0.75rem;
	border-radius: 4px;
	padding: 3px 8px;
	font-weight: 600;
}

/* Chirp feed (match page) */
.mkt-chirp-card {
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 24px 22px;
	background: var(--bg);
	margin-bottom: 8px;
}

.mkt-chirp-loading,
.mkt-chirp-card .mkt-app-empty {
	text-align: center;
	color: var(--text-secondary);
	padding: 40px 0;
}

.mkt-chirp {
	border-bottom: 1px solid var(--border);
	padding: 14px 0;
}

.mkt-chirp:last-child {
	border-bottom: none;
}

.mkt-chirp__meta {
	font-size: 0.8rem;
	color: var(--text-secondary);
	margin-bottom: 4px;
}

.mkt-chirp__body {
	font-size: 1rem;
	line-height: 1.45;
	white-space: pre-line;
	color: var(--text);
}

/* News */
.mkt-news-list {
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	overflow: hidden;
	background: var(--bg);
}

.mkt-news-row {
	display: flex;
	gap: 16px;
	padding: 16px;
	text-decoration: none;
	color: var(--text);
	border-bottom: 1px solid var(--border);
	transition: background 0.15s;
}

.mkt-news-row:last-child {
	border-bottom: none;
}

.mkt-news-row:hover {
	background: var(--bg-elevated);
}

.mkt-news-thumb-wrap {
	flex: 0 0 72px;
	width: 72px;
	height: 72px;
	min-width: 72px;
	max-width: 72px;
	border-radius: var(--radius-sm);
	background-color: var(--brand);
	background-size: 62%;
	background-position: center;
	background-repeat: no-repeat;
	flex-shrink: 0;
}

.mkt-news-row .title {
	font-weight: 600;
	font-size: 1rem;
	line-height: 1.35;
	margin-bottom: 4px;
}

.mkt-news-row .meta {
	font-size: 0.85rem;
	color: var(--text-secondary);
	line-height: 1.4;
}

.mkt-news-pager {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 20px;
}

.mkt-news-pager a,
.mkt-news-pager .current {
	display: inline-block;
	padding: 6px 12px;
	border-radius: var(--radius-sm);
	font-size: 0.875rem;
	font-weight: 600;
	text-decoration: none;
}

.mkt-news-pager a {
	border: 1px solid var(--border);
	color: var(--text);
}

.mkt-news-pager a:hover {
	background: var(--brand-soft);
}

.mkt-news-pager .current {
	background: var(--brand);
	color: #fff;
}

.mkt-news-article .mkt-news-headline {
	font-size: clamp(1.5rem, 3vw, 2rem);
	margin: 0 0 12px;
	line-height: 1.2;
}

.mkt-news-hero {
	margin: 0 0 20px;
}

.mkt-news-byline {
	font-size: 0.9rem;
	color: var(--text-secondary);
	margin-bottom: 20px;
}

.mkt-news-banner {
	display: block;
	width: 100%;
	max-width: 100%;
	height: auto;
	max-height: 420px;
	object-fit: cover;
	border-radius: var(--radius-lg);
	border: 1px solid var(--border);
	background: var(--bg-subtle);
}

/* Colleges */
.mkt-colleges-callout {
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	background: var(--bg-subtle);
	padding: 16px;
	margin-bottom: 24px;
}

.mkt-colleges-deadline {
	display: inline-block;
	background: var(--brand);
	color: #fff;
	padding: 6px 10px;
	border-radius: 999px;
	font-weight: 700;
	font-size: 0.86rem;
}

.mkt-colleges-small {
	font-size: 0.9rem;
	color: var(--text-secondary);
	line-height: 1.5;
	margin: 10px 0 0;
}

.mkt-colleges-grid {
	display: grid;
	gap: 18px;
	grid-template-columns: 1fr;
	margin-top: 8px;
}

@media (min-width: 900px) {
	.mkt-colleges-grid {
		grid-template-columns: 1.1fr 0.9fr;
	}
}

.mkt-colleges-panel {
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	background: var(--bg);
	padding: 20px;
}

.mkt-colleges-panel h2 {
	margin: 0 0 16px;
	font-size: 1.1rem;
	color: var(--text);
}

.mkt-colleges-points {
	margin: 0;
	padding-left: 1.25rem;
	line-height: 1.55;
	color: var(--text-secondary);
}

.mkt-colleges-points li {
	margin: 8px 0;
}

.mkt-colleges-form__row {
	margin: 12px 0;
}

.mkt-colleges-form label {
	display: block;
	font-weight: 600;
	margin-bottom: 6px;
	font-size: 0.9rem;
}

.mkt-colleges-form label .req {
	color: var(--brand);
	font-weight: 800;
}

.mkt-colleges-form input,
.mkt-colleges-form textarea {
	width: 100%;
	box-sizing: border-box;
	border: 1px solid var(--border);
	border-radius: var(--radius-sm);
	padding: 10px 12px;
	font-size: 0.95rem;
	font-family: inherit;
}

.mkt-colleges-form textarea {
	min-height: 130px;
	resize: vertical;
}

.mkt-colleges-form .help {
	color: var(--text-muted);
	font-size: 0.82rem;
	margin-top: 6px;
}

.mkt-msg ul {
	margin: 8px 0 0;
	padding-left: 1.25rem;
}

/* App product page (consumer shell) */
.mkt-app-section {
	margin-top: 56px;
}

.mkt-app-main--product .mkt-app-lead {
	margin-bottom: 40px;
}

.mkt-app-section--screenshots {
	margin-top: 32px;
}

.mkt-app-screenshots {
	display: flex;
	gap: 16px;
	overflow-x: auto;
	padding: 4px 4px 20px;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: thin;
	scrollbar-color: var(--border-strong) transparent;
}

.mkt-app-screenshots::-webkit-scrollbar {
	height: 6px;
}

.mkt-app-screenshots::-webkit-scrollbar-thumb {
	background: var(--border-strong);
	border-radius: 999px;
}

.mkt-app-screenshot {
	flex: 0 0 auto;
	scroll-snap-align: start;
	margin: 0;
	width: min(240px, 44vw);
	border-radius: var(--radius-lg);
	overflow: hidden;
	border: 1px solid var(--border);
	box-shadow: var(--shadow);
	background: var(--bg-subtle);
}

.mkt-app-screenshot img {
	display: block;
	width: 100%;
	height: auto;
}

.mkt-app-main--product .mkt-app-section:first-of-type {
	margin-top: 48px;
}

.mkt-app-main--product .mkt-download-cards {
	margin-top: 4px;
}

.mkt-app-section__title {
	font-size: 1.25rem;
	font-weight: 700;
	margin: 0 0 12px;
	color: var(--text);
}

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

.mkt-app-section__lede {
	font-size: 1rem;
	line-height: 1.6;
	color: var(--text-secondary);
	margin: 0 0 24px;
	max-width: 720px;
}

.mkt-app-section__lede--center {
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}

.mkt-app-section__note {
	font-size: 0.9rem;
	color: var(--text-secondary);
	margin: 16px 0 0;
}

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

.mkt-app-feature-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 14px;
}

.mkt-app-feature-grid--4 {
	grid-template-columns: repeat(2, 1fr);
}

.mkt-app-feature-card {
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 18px 20px;
	background: var(--bg);
}

.mkt-app-feature-card h3 {
	margin: 0 0 8px;
	font-size: 1rem;
	font-weight: 700;
	color: var(--text);
}

.mkt-app-feature-card p {
	margin: 0;
	font-size: 0.92rem;
	line-height: 1.55;
	color: var(--text-secondary);
}

.mkt-app-steps {
	list-style: none;
	margin: 0;
	padding: 0;
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	overflow: hidden;
	background: var(--bg);
}

.mkt-app-step {
	display: grid;
	grid-template-columns: 48px 1fr;
	gap: 16px;
	padding: 20px 22px;
	border-bottom: 1px solid var(--border);
	align-items: start;
}

.mkt-app-step:last-child {
	border-bottom: none;
}

.mkt-app-step__num {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: var(--brand);
	color: #fff;
	font-weight: 800;
	font-size: 1.1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.mkt-app-step strong {
	display: block;
	font-size: 1rem;
	color: var(--text);
	margin-bottom: 4px;
}

.mkt-app-step p {
	margin: 0;
	font-size: 0.92rem;
	line-height: 1.55;
	color: var(--text-secondary);
}

.mkt-app-compare-teaser {
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	overflow: hidden;
	background: var(--bg);
	margin-bottom: 28px;
}

.mkt-app-compare-teaser .mkt-compare-wins__list {
	padding: 18px;
}

.mkt-app-platform-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 10px;
	margin-bottom: 8px;
}

.mkt-app-platform-grid a {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 12px 10px;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	text-decoration: none;
	color: var(--text);
	font-weight: 600;
	font-size: 0.875rem;
	background: var(--bg);
	transition: border-color 0.15s, box-shadow 0.15s;
	text-align: center;
	line-height: 1.3;
}

.mkt-app-platform-grid a:hover,
.mkt-app-platform-grid a:focus-visible {
	border-color: var(--brand);
	box-shadow: 0 4px 14px rgba(124, 64, 214, 0.12);
}

.mkt-app-cta .mkt-btn {
	margin-top: 4px;
}

@media (max-width: 768px) {
	.mkt-app-feature-grid,
	.mkt-app-feature-grid--4 {
		grid-template-columns: 1fr;
	}
	.mkt-app-platform-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 800px) {
	.mkt-compare-table thead {
		display: none;
	}
	.mkt-compare-table,
	.mkt-compare-table tbody,
	.mkt-compare-table tr,
	.mkt-compare-table td,
	.mkt-compare-table th {
		display: block;
		width: 100%;
	}
	.mkt-compare-table tbody tr {
		border-bottom: 1px solid var(--border);
	}
	.mkt-compare-table tbody th {
		background: var(--brand-soft);
		color: var(--text);
		font-weight: 700;
	}
	.mkt-compare-table tbody tr.meta th {
		background: transparent;
		border: 0;
		padding: 0;
		height: 0;
	}
	.mkt-compare-table tbody td {
		padding-top: 8px;
	}
	.mkt-compare-table tbody td[data-col]::before {
		content: attr(data-col);
		display: block;
		font-weight: 700;
		margin-bottom: 6px;
	}
	.mkt-compare-wins__list {
		grid-template-columns: 1fr;
	}
	.mkt-news-row {
		align-items: flex-start;
	}
}
