@charset "UTF-8";

/* ── LAYOUT UTILITIES ── */
.status-container {
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 2rem;
}

/* ── NAV: status-specific btn-nav colour ── */
.btn-nav {
	background: var(--accent-2);
}

/* ── PAGE HEADER ── */
.page-header {
	padding: 5rem 2rem 2rem; /* Increased top padding to match index.html hero section feel */
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 1.5rem;
}

.page-header-left {
	min-width: min(560px, 100%);
}

.page-header-left h1 {
	font-size: clamp(1.6rem, 3vw, 2.1rem);
	font-weight: 800;
	letter-spacing: -0.025em;
	margin-bottom: 0.4rem;
}

.page-header-left p {
	color: var(--muted);
	font-size: 0.9rem;
}

.last-updated {
	font-size: 0.78rem;
	color: var(--muted);
	display: flex;
	align-items: center;
	gap: 0.4rem;
	margin-top: 0.5rem;
}

.how-it-works {
	margin-top: 0.9rem;
	width: 100%;
	max-width: 560px;
}

.how-it-works summary {
	font-size: 0.82rem;
	color: var(--text);
	cursor: pointer;
	user-select: none;
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0.5rem 0.75rem;
	border: 1px solid var(--border);
	border-radius: 6px;
	background: var(--surface);
	transition: border-color 0.15s, background 0.15s;
}

.how-it-works summary:hover {
	border-color: var(--muted);
	background: var(--surface-2);
}

.how-it-works summary::after {
	content: "";
	display: inline-block;
	width: 0;
	height: 0;
	border-left: 4px solid transparent;
	border-right: 4px solid transparent;
	border-top: 5px solid var(--muted);
	transition: transform 0.2s ease;
	flex-shrink: 0;
	margin-left: 0.5rem;
}

.how-it-works[open] summary {
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
	border-bottom-color: transparent;
}

.how-it-works[open] summary::after {
	transform: rotate(180deg);
}

.how-it-works p {
	margin-top: 0;
	font-size: 0.72rem;
	color: var(--muted);
	line-height: 1.4;
	border: 1px solid var(--border);
	border-top: none;
	border-radius: 0 0 6px 6px;
	padding: 0.5rem 0.75rem;
	background: var(--surface);
}

.live-dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--success);
	animation: pulse 2s infinite;
	flex-shrink: 0;
}

.page-header-left p.header-sub {
	color: var(--muted);
	font-size: 0.9rem;
}

/* ── SUMMARY STATS ── */
.stats-row {
	padding-bottom: 2.5rem;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 1rem;
}

/* ── SECTION WRAPPER ── */
.section {
	padding-bottom: 3.5rem;
}

#status,
#latency,
#premium,
#pricing-card {
	scroll-margin-top: 72px;
}

.section-header {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	margin-bottom: 1.25rem;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.section-title {
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: -0.01em;
}

.section-meta {
	font-size: 0.78rem;
	color: var(--muted);
}

/* ── MODEL STATUS TABLE ── */
.model-table {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: 12px;
	overflow: hidden;
}

.model-row {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr 1fr;
	align-items: center;
	padding: 0.85rem 1.5rem;
	border-bottom: 1px solid var(--border);
	gap: 0.5rem;
	transition: background 0.15s;
}

.status-col {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0.25rem;
	text-align: center;
}

.model-row:last-child {
	border-bottom: none;
}
.model-row:hover {
	background: var(--surface-2);
}

/* ── MODEL GROUP & COLLAPSIBLE DETAILS ── */
.model-group {
	border-bottom: 1px solid var(--border);
}
.model-group:last-child {
	border-bottom: none;
}
.model-group .model-row {
	cursor: pointer;
	border-bottom: none;
	user-select: none;
}
.model-group .model-row:hover {
	background: var(--surface-2);
}

.expand-icon {
	display: inline-block;
	font-size: 0.625rem;
	margin-right: 0.5rem;
	color: var(--muted);
	transition: transform 0.2s ease;
}
.expanded .expand-icon {
	transform: rotate(90deg);
}

.regions-detail {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.25s ease-out;
	background: rgba(255, 255, 255, 0.015);
	border-bottom: 1px solid transparent;
}
.regions-detail.expanded {
	border-bottom: 1px solid var(--border);
}
.regions-detail-inner {
	padding: 0.85rem 1.5rem;
}

/* ── COMPONENT: METRIC BADGES ── */
.metric-badge {
	display: inline-flex;
	align-items: center;
	font-size: 0.8rem;
	font-weight: 600;
	padding: 0.25rem 0.65rem;
	border-radius: 4px;
	font-variant-numeric: tabular-nums;
}
.metric-badge.good { background: rgba(34, 197, 94, 0.15); color: var(--success); }
.metric-badge.warn { background: rgba(245, 158, 11, 0.15); color: var(--warn); }
.metric-badge.danger { background: rgba(239, 68, 68, 0.15); color: var(--danger); }

.model-row.header {
	background: var(--surface-2);
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--muted);
}

.model-row.header:hover {
	background: var(--surface-2);
}

.model-row.provider-header {
	background: rgba(79, 142, 247, 0.04);
	border-bottom: 1px solid var(--border);
	padding: 0.4rem 1rem;
	margin-top: 0.25rem;
	cursor: default;
}
.model-row.provider-header:hover {
	background: rgba(79, 142, 247, 0.04);
}
.model-row.provider-header:first-child {
	margin-top: 0;
}

.model-info {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.model-logo {
	width: 28px;
	height: 28px;
	border-radius: 6px;
	background: var(--border);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.6rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	color: var(--muted);
	flex-shrink: 0;
}

.model-name {
	font-weight: 600;
	font-size: 0.9rem;
}
.model-org {
	font-size: 0.75rem;
	color: var(--muted);
}

.status-dot {
	display: inline-block;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	vertical-align: middle;
	margin-bottom: 1px;
}
.status-dot.op {
	background: var(--success);
}
.status-dot.deg {
	background: var(--warn);
}
.status-dot.down {
	background: var(--danger);
}

.status-pill {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	font-size: 0.75rem;
	font-weight: 600;
	padding: 0.25rem 0.65rem;
	border-radius: 999px;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
	border: 1px solid transparent;
}

.status-pill.op {
	background: rgba(34, 197, 94, 0.1);
	color: var(--success);
	border-color: rgba(34, 197, 94, 0.2);
}
.status-pill.deg {
	background: rgba(245, 158, 11, 0.1);
	color: var(--warn);
	border-color: rgba(245, 158, 11, 0.2);
}
.status-pill.down {
	background: rgba(239, 68, 68, 0.1);
	color: var(--danger);
	border-color: rgba(239, 68, 68, 0.2);
}

.status-pill::before {
	content: "";
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: currentColor;
}

.latency-val {
	font-size: 0.875rem;
	font-weight: 600;
	font-variant-numeric: tabular-nums;
}

.latency-val.fast {
	color: var(--success);
}
.latency-val.medium {
	color: var(--warn);
}
.latency-val.slow {
	color: var(--danger);
}

.model-regions {
	display: flex;
	gap: 6px;
	flex-wrap: wrap;
	align-items: center;
}

.region-pills-container {
	display: flex;
	gap: 0.5rem;
	flex-wrap: wrap;
	align-items: center;
}

.region-pill {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	height: 32px;
	padding: 0 0.75rem;
	border-radius: 999px;
	background: rgba(17, 20, 24, 0.7);
	border: 1px solid rgba(255, 255, 255, 0.08);
	color: var(--muted);
	font-size: 0.7rem;
	font-weight: 600;
	font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
	white-space: nowrap;
	box-sizing: border-box;
	transition: all 0.2s ease-in-out;
	text-decoration: none;
}

.region-pill:hover {
	transform: translateY(-1px);
	border-color: rgba(255, 255, 255, 0.15);
	background: rgba(255, 255, 255, 0.03);
}

.region-dot {
	display: inline-block;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	flex-shrink: 0;
}

.region-dot.good { background-color: var(--success); box-shadow: 0 0 5px var(--success); }
.region-dot.warn { background-color: var(--warn); box-shadow: 0 0 5px var(--warn); }
.region-dot.danger { background-color: var(--danger); box-shadow: 0 0 5px var(--danger); }
.region-dot.neutral { background-color: var(--muted); opacity: 0.5; }

.region-dot.locked-dot {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 0.65rem;
	width: auto;
	height: auto;
	background: none;
	box-shadow: none;
}

.region-name {
	color: var(--text);
}

.region-metrics {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	padding-left: 0.5rem;
	border-left: 1px solid rgba(255, 255, 255, 0.1);
	align-self: stretch;
}

.region-latency.good,
.region-error.good {
	color: var(--success);
}

.region-latency.warn,
.region-error.warn {
	color: var(--warn);
}

.region-latency.danger,
.region-error.danger {
	color: var(--danger);
}

.region-latency.neutral,
.region-error.neutral {
	color: var(--muted);
}

.region-premium {
	color: #a78bfa;
	font-size: 0.68rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.02em;
}

.region-pill.locked-link {
	cursor: pointer;
	text-decoration: none;
}

.region-pill.locked-link:hover {
	background: rgba(124, 58, 237, 0.08);
	border-color: rgba(124, 58, 237, 0.25);
	color: #a78bfa;
}

.region-pill.locked {
	background: rgba(255, 255, 255, 0.02) !important;
	border-color: rgba(255, 255, 255, 0.06) !important;
	color: rgba(255, 255, 255, 0.4) !important;
	cursor: pointer !important;
	font-weight: 500;
}

.region-pill.locked:hover {
	background: rgba(124, 58, 237, 0.08) !important;
	border-color: rgba(124, 58, 237, 0.25) !important;
	color: #a78bfa !important;
}

.status-error-rate {
	font-size: 0.72rem;
	color: var(--muted);
	margin-top: 0.25rem;
	text-align: center;
	line-height: 1.2;
}

/* ── RESPONSIVE ── */
@media (max-width: 840px) {
	.model-row {
		grid-template-columns: 1.5fr 1fr 1fr 1fr;
	}
}
@media (max-width: 640px) {
	.model-row {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 0.75rem;
		padding: 1.1rem;
	}
	.model-row.header {
		display: none !important;
	}
	.model-info {
		grid-column: 1 / -1;
		border-bottom: 1px solid rgba(255, 255, 255, 0.04);
		padding-bottom: 0.4rem;
	}
	/* Latency & Error badges on mobile */
	.model-row > *:nth-child(2) {
		grid-column: 1;
		text-align: left;
	}
	.model-row > *:nth-child(3) {
		grid-column: 2;
		text-align: right;
	}
	/* Move "Updated" info beautifully to bottom full width */
	.model-row > *:nth-child(4) {
		grid-column: 1 / -1;
		font-size: 0.74rem;
		color: var(--muted);
		border-top: 1px solid rgba(255, 255, 255, 0.04);
		padding-top: 0.5rem;
		margin-top: 0.15rem;
		text-align: left;
	}
	.model-logo {
		width: 22px;
		height: 22px;
	}
	/* Collapsible details vertical stack for mobile (320px / <= 640px) */
	.regions-detail .regions-detail-inner {
		padding: 0.85rem 1.1rem;
	}
	.regions-detail .region-pills-container {
		flex-direction: column;
		align-items: stretch;
	}
	.regions-detail .region-pill {
		width: 100%;
	}
}

/* ── SMALL MOBILE (≤ 400px) ── */
@media (max-width: 400px) {
	body {
		overflow-x: hidden;
	}
	.section {
		padding: 0 1rem 2.5rem;
	}
	canvas {
		max-width: 100%;
	}
}

/* ── INLINE STYLES FROM HTML ── */
/* Status legend paragraph */
.status-legend {
	display: flex;
	flex-wrap: wrap;
	gap: 1.25rem;
	align-items: center;
	font-size: 0.75rem;
	color: var(--muted);
	margin-bottom: 1rem;
}

.legend-group {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
}

.legend-label {
	font-weight: 500;
	color: var(--muted);
}

.legend-item {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	color: var(--text);
}

.legend-dot {
	display: inline-block;
	width: 7px;
	height: 7px;
	border-radius: 50%;
}

.legend-dot.good { background-color: var(--success); box-shadow: 0 0 6px var(--success); }
.legend-dot.warn { background-color: var(--warn); box-shadow: 0 0 6px var(--warn); }
.legend-dot.danger { background-color: var(--danger); box-shadow: 0 0 6px var(--danger); }

/* Model table loading state */
.model-row.loading {
	justify-content: center;
	color: var(--muted);
	font-size: 0.85rem;
}

/* Missing model request paragraph */
.model-request {
	font-size: 0.75rem;
	color: var(--muted);
	margin-top: 0.75rem;
}

.model-request a {
	color: var(--accent);
	text-decoration: none;
}

/* Contextual CTA link under status table */
.table-cta-link {
	color: var(--accent-2) !important;
	font-weight: 600;
	transition: opacity 0.2s;
}

.table-cta-link:hover {
	opacity: 0.8;
	text-decoration: underline;
	text-underline-offset: 2px;
}

/* Enterprise section */
.enterprise-section {
	max-width: 520px;
	margin: 2rem auto 0;
	padding-top: 1.5rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.enterprise-section p.section-heading {
	font-size: 0.95rem;
	color: var(--text);
	margin-bottom: 1rem;
	font-weight: 500;
}

.enterprise-section p.enterprise-info {
	font-size: 0.85rem;
	color: var(--muted);
	margin-bottom: 0.75rem;
}

.enterprise-section p.enterprise-info strong {
	color: var(--text);
}

.enterprise-section p.enterprise-info a {
	color: var(--accent);
	text-decoration: none;
}

.enterprise-section p.integration-info {
	font-size: 0.85rem;
	color: var(--muted);
	margin-bottom: 0;
}

.enterprise-section p.integration-info strong {
	color: var(--text);
}

.enterprise-section p.integration-info a {
	color: var(--accent);
	text-decoration: none;
}

/* Matching decorative / style overrides for enterprise and trial badges */
.enterprise-trial-wrap {
	border-left: 2px solid rgba(79, 142, 247, 0.4);
	padding-left: 0.75rem;
	margin: 1.25rem 0 1.5rem;
	text-align: left;
}

.enterprise-trial-wrap .seats-note {
	display: flex;
	flex-direction: column;
	gap: 0.15rem;
}
/* ── CHART SECTION ── */
.chart-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.5rem;
}

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

.chart-card {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: 12px;
	padding: 1.5rem;
}

.chart-title {
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--muted);
	margin-bottom: 1.25rem;
}

.chart-filter-tabs {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 1.25rem;
	flex-wrap: wrap;
	border-bottom: 1px solid var(--border);
	padding-bottom: 0.75rem;
}

.provider-tabs {
	display: flex;
	gap: 0.5rem;
	flex-wrap: wrap;
}

.timezone-selector {
	display: flex;
	background: var(--surface-2);
	border: 1px solid var(--border);
	border-radius: 8px;
	padding: 2px;
}

.timezone-tab {
	background: none;
	border: none;
	color: var(--muted);
	font-size: 0.75rem;
	font-weight: 600;
	padding: 0.3rem 0.65rem;
	border-radius: 6px;
	cursor: pointer;
	transition: all 0.15s ease-in-out;
}

.timezone-tab:hover {
	color: var(--text);
}

.timezone-tab.active {
	color: #fff;
	background: rgba(255, 255, 255, 0.15);
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.chart-tab {
	background: none;
	border: 1px solid transparent;
	color: var(--muted);
	font-size: 0.8rem;
	font-weight: 600;
	padding: 0.35rem 0.75rem;
	border-radius: 6px;
	cursor: pointer;
	transition: all 0.15s ease-in-out;
}

.chart-tab:hover {
	color: var(--text);
	border-color: var(--border);
	background: var(--surface-2);
}

.chart-tab.active {
	color: #fff;
	background: var(--accent);
	border-color: var(--accent);
}

.chart-canvas-wrap {
	position: relative;
	height: 220px;
}

/* ── REGIONAL LATENCY HEATMAP ── */
.heatmap-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.8rem;
}

.heatmap-table th {
	text-align: left;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--muted);
	padding: 0.5rem 0.75rem;
	border-bottom: 1px solid var(--border);
}

.heatmap-table td {
	padding: 0.6rem 0.75rem;
	border-bottom: 1px solid var(--border);
	font-variant-numeric: tabular-nums;
}

.heatmap-table tr:last-child td {
	border-bottom: none;
}

.heatmap-table tr:hover td {
	background: rgba(255, 255, 255, 0.02);
}

.heatmap-provider-header td {
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	background: rgba(79, 142, 247, 0.04);
	color: var(--muted);
}

.heatmap-table tr.heatmap-provider-header:hover td {
	background: rgba(79, 142, 247, 0.04);
}

.heatmap-model-name {
	padding-left: 1.5rem !important;
}

.heat-cell {
	display: inline-block;
	padding: 0.2rem 0.5rem;
	border-radius: 4px;
	font-weight: 600;
	font-size: 0.78rem;
}

.heat-0 {
	background: rgba(34, 197, 94, 0.15);
	color: var(--success);
}
.heat-1 {
	background: rgba(34, 197, 94, 0.1);
	color: #7de0a0;
}
.heat-2 {
	background: rgba(245, 158, 11, 0.12);
	color: var(--warn);
}
.heat-3 {
	background: rgba(239, 68, 68, 0.12);
	color: var(--danger);
}
.heat-na {
	background: rgba(255, 255, 255, 0.05);
	color: var(--muted);
}
.heat-cell.locked {
	background: rgba(17, 20, 24, 0.7) !important;
	border: 1px solid rgba(255, 255, 255, 0.08) !important;
	color: #a78bfa !important;
	cursor: pointer !important;
}
.heat-cell.locked:hover {
	background: rgba(124, 58, 237, 0.08) !important;
	border-color: rgba(124, 58, 237, 0.25) !important;
	color: #a78bfa !important;
}

/* Chart canvas wrapper height */
.chart-canvas-wrap.chart-all {
	height: 280px;
}

/* Heatmap wrapper styles */
.heatmap-wrap {
	padding: 0;
	overflow-y: hidden;
	overflow-x: auto;
}

/* Heatmap loading state */
.heatmap-loading {
	color: var(--muted);
	font-size: 0.85rem;
	padding: 1rem;
}

/* Color scale legend */
.color-scale-legend {
	font-size: 0.75rem;
	color: var(--muted);
	margin-bottom: 0.75rem;
	margin-top: 0;
}

.color-scale-legend .heat-cell {
	margin: 0 4px;
}

@media (max-width: 400px) {
	/* Heatmap: hide us-west-2 (col 3) to keep exactly 3 columns (Model, us-east-1, and premium) visible on mobile */
	.heatmap-table th:nth-child(3),
	.heatmap-table td:nth-child(3) {
		display: none;
	}
}
/* ── FAQ ACCORDION ── */
.faq-section {
	max-width: 520px;
	margin: 0 auto 2.5rem;
}

.faq-heading {
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.09em;
	text-transform: uppercase;
	color: var(--muted);
	margin-bottom: 1rem;
	text-align: center;
}

.faq-item {
	border: 1px solid var(--border);
	border-radius: 8px;
	margin-bottom: 0.5rem;
	background: var(--surface);
	overflow: hidden;
	transition: border-color 0.15s;
	text-align: left;
}

.faq-item:hover {
	border-color: rgba(79, 142, 247, 0.35);
}

.faq-item summary {
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--text);
	cursor: pointer;
	user-select: none;
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0.85rem 1rem;
	transition: background 0.15s;
}

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

.faq-item summary::after {
	content: "";
	display: inline-block;
	width: 0;
	height: 0;
	border-left: 4px solid transparent;
	border-right: 4px solid transparent;
	border-top: 5px solid var(--muted);
	transition: transform 0.2s ease;
	flex-shrink: 0;
	margin-left: 0.75rem;
}

.faq-item[open] summary {
	background: var(--surface-2);
}

.faq-item[open] summary::after {
	transform: rotate(180deg);
}

.faq-item p {
	font-size: 0.72rem;
	color: var(--muted);
	line-height: 1.4;
	padding: 0.4rem 1rem 0.5rem;
	border-top: 1px solid var(--border);
	margin: 0;
}
/* ── REGIONAL LATENCY HEATMAP ── */
#regional {
	scroll-margin-top: 72px;
}

.color-scale-legend {
	font-size: 0.75rem;
	color: var(--muted);
	margin-bottom: 1.25rem;
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	align-items: center;
}

.heatmap-wrap {
	overflow-x: auto;
	border-radius: 12px;
	border: 1px solid var(--border);
	background: var(--surface);
}

.heatmap-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.85rem;
	table-layout: fixed;
}

.heatmap-table th,
.heatmap-table td {
	padding: 0.85rem 1rem;
	text-align: center;
	border-bottom: 1px solid var(--border);
}

.heatmap-table th {
	background: var(--surface-2);
	font-size: 0.7rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--muted);
}

.heatmap-model-name {
	text-align: left !important;
	width: 180px;
	font-weight: 600;
	background: var(--surface);
	position: sticky;
	left: 0;
	z-index: 2;
}

.heatmap-provider-header {
	background: rgba(79, 142, 247, 0.04);
}

.heatmap-provider-header td {
	text-align: left;
	font-size: 0.72rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--muted);
	padding: 0.5rem 1rem;
}

.heat-cell {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 0.8rem;
	font-weight: 600;
	padding: 0.25rem 0.65rem;
	border-radius: 4px;
	font-variant-numeric: tabular-nums;
	min-width: 60px;
}

.heat-cell.heat-0 { background: rgba(34, 197, 94, 0.15); color: var(--success); }
.heat-cell.heat-1 { background: rgba(34, 197, 94, 0.08); color: var(--success); opacity: 0.8; }
.heat-cell.heat-2 { background: rgba(245, 158, 11, 0.15); color: var(--warn); }
.heat-cell.heat-3 { background: rgba(239, 68, 68, 0.15); color: var(--danger); }
.heat-cell.heat-na { background: var(--surface-2); color: var(--muted); opacity: 0.4; }
.heat-cell.locked { background: rgba(255, 255, 255, 0.03); color: var(--muted); font-size: 0.7rem; font-weight: 500; }
/* ── ALERT MOCKUP (Slack-style notification preview) ── */

/* Container: centers the mockup below the feature grid */
.alert-mockup-container {
	display: none;
	justify-content: center;
	margin-top: 1.5rem;
	opacity: 0;
}

.alert-mockup-container.visible {
	display: flex;
	animation: fadeInUp 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

.alert-mockup-toggle-wrap {
	margin-top: 0.85rem;
	display: flex;
	justify-content: flex-start;
}

.btn-preview-toggle {
	font-family: inherit;
	background: rgba(79, 142, 247, 0.1);
	color: var(--accent);
	border: 1px solid rgba(79, 142, 247, 0.25);
	border-radius: 6px;
	padding: 0.45rem 0.9rem;
	font-size: 0.78rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s ease-in-out;
	outline: none;
}

.btn-preview-toggle:hover {
	background: var(--accent);
	color: #ffffff;
	border-color: var(--accent);
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(79, 142, 247, 0.2);
}

.btn-preview-toggle:active {
	transform: translateY(0);
}

/* Wrapper: stacks the label above the mockup card */
.alert-mockup-wrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
	width: 100%;
	max-width: 360px;
}

/* Label: "💬 Example Slack Notification" */
.alert-mockup-wrapper .alert-mockup-label {
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--muted);
	margin: 0;
	opacity: 0.75;
}

.alert-mockup {
	width: 100%;
	background: #1a1d23;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 8px;
	padding: 0.75rem 1rem;
	text-align: left;
	font-size: 0.78rem;
}

.alert-mockup-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 0.55rem;
}

.alert-mockup-app-row {
	display: flex;
	align-items: center;
	gap: 0.4rem;
}

.alert-mockup-app {
	font-weight: 700;
	font-size: 0.8rem;
	color: var(--text);
	letter-spacing: 0;
}

.alert-mockup-app-badge {
	font-size: 0.58rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	background: rgba(79, 142, 247, 0.18);
	color: var(--accent);
	border-radius: 3px;
	padding: 0.1rem 0.35rem;
	line-height: 1.4;
}

.alert-mockup-time {
	font-size: 0.68rem;
	color: var(--muted);
}

/* Attachment block: left warning bar + content */
.alert-mockup-attachment {
	display: flex;
	align-items: stretch;
	gap: 0.65rem;
	background: rgba(255, 255, 255, 0.03);
	border-radius: 4px;
	overflow: hidden;
}

.alert-mockup-attachment-bar {
	width: 3px;
	flex-shrink: 0;
	background: var(--warn);
	border-radius: 3px 0 0 3px;
}

.alert-mockup-attachment-content {
	padding: 0.5rem 0.5rem 0.5rem 0;
}

.alert-mockup-title {
	font-size: 0.8rem;
	font-weight: 600;
	color: var(--text);
	line-height: 1.4;
}

.alert-mockup-sub {
	font-size: 0.72rem;
	color: var(--muted);
	margin-top: 0.2rem;
	font-variant-numeric: tabular-nums;
}

/* Legacy dot classes kept for backward compat */
.alert-mockup-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	flex-shrink: 0;
	margin-top: 3px;
}

.alert-mockup-dot--warn {
	background: var(--warn);
	animation: pulse 2s infinite;
}

.alert-mockup-dot--down {
	background: var(--danger);
	animation: pulse 2s infinite;
}

.alert-mockup-dot--ok {
	background: var(--success);
}

/* Push alert mockup to bottom of card so all cards align at top */
.why-grid-item .alert-mockup {
	margin-top: auto;
}
/* ── PREMIUM CTA & PRICING ── */
.premium-band {
	width: 100%;
	background: linear-gradient(
		180deg,
		var(--bg) 0%,
		rgba(79, 142, 247, 0.05) 30%,
		rgba(124, 58, 237, 0.07) 100%
	);
	border-top: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
	margin-top: 3rem;
}

.premium-section {
	max-width: 820px;
	margin: 0 auto;
	padding: 5rem 2rem 6rem;
	text-align: center;
}

.badge {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	background: rgba(124, 58, 237, 0.12);
	border: 1px solid rgba(124, 58, 237, 0.3);
	color: #a78bfa;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.07em;
	text-transform: uppercase;
	padding: 0.3rem 0.85rem;
	border-radius: 999px;
	margin-bottom: 1.75rem;
}

.premium-section h2 {
	font-size: clamp(1.8rem, 4vw, 2.6rem);
	font-weight: 800;
	letter-spacing: -0.025em;
	margin-bottom: 2.5rem;
}

.premium-section h2 em {
	font-style: normal;
	background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.premium-section p {
	color: var(--muted);
	font-size: 1.05rem;
	margin-bottom: 2.5rem;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.pricing-card {
	background: var(--surface);
	border: 1px solid rgba(124, 58, 237, 0.35);
	border-radius: 16px;
	padding: 2.5rem 2rem 2.5rem;
	max-width: 420px;
	margin: 0 auto 2.5rem;
	position: relative;
	overflow: hidden;
}

.pricing-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

.pricing-price {
	font-size: 2.75rem;
	font-weight: 800;
	letter-spacing: -0.04em;
	line-height: 1;
	margin-bottom: 0.25rem;
}

.pricing-price sup {
	font-size: 1.1rem;
	font-weight: 700;
	vertical-align: super;
	letter-spacing: 0;
}

.pricing-cadence {
	font-size: 0.8rem;
	color: var(--muted);
	margin-bottom: 1.25rem;
}

.pricing-features {
	list-style: none;
	text-align: left;
	margin-top: 0;
	margin-bottom: 1.25rem;
	display: flex;
	flex-direction: column;
	gap: 0.65rem;
}

.pricing-features--roadmap li {
	opacity: 0.55;
}

.pricing-features--roadmap li::before {
	content: "◦";
	color: var(--muted);
}

.why-grid-section {
	max-width: 900px;
	margin: 0 auto 2.5rem;
	text-align: center;
}

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

.why-grid-item {
	background: var(--surface);
	border: 1px solid rgba(255, 255, 255, 0.07);
	border-radius: 12px;
	padding: 1.75rem 1.5rem;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.why-grid-icon {
	font-size: 1.4rem;
	margin-bottom: 0.25rem;
}

.why-grid-title {
	font-size: 0.85rem;
	font-weight: 700;
	color: var(--text);
}

.why-grid-body {
	font-size: 0.78rem;
	color: var(--muted);
	line-height: 1.55;
	text-align: left;
}

.why-grid-body p {
	font-size: 0.78rem;
	color: var(--muted);
	line-height: 1.55;
	margin: 0;
}

.why-details {
	width: 100%;
	text-align: center;
	margin-top: 0.25rem;
}

.why-details summary {
	font-family: inherit;
	font-size: 0.78rem;
	font-weight: 600;
	color: var(--accent);
	cursor: pointer;
	list-style: none;
	display: inline-flex;
	align-items: center;
	gap: 0.25rem;
	user-select: none;
	outline: none;
	transition: all 0.15s ease-in-out;
	background: var(--surface-2);
	border: 1px solid var(--border);
	padding: 0.3rem 0.65rem;
	border-radius: 6px;
}

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

.why-details summary:hover {
	border-color: var(--muted);
	background: var(--surface);
	color: var(--accent-2);
}

.why-details summary::after {
	content: "+";
	display: inline-block;
	transition: transform 0.2s ease;
}

.why-details[open] summary::after {
	content: "−";
	transform: none;
}

.why-details .why-grid-body {
	margin-top: 0.75rem;
	padding-top: 0.5rem;
	border-top: 1px solid rgba(255, 255, 255, 0.03);
	animation: fadeInDetails 0.2s ease-out;
}

@keyframes fadeInDetails {
	from {
		opacity: 0;
		transform: translateY(-4px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

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

.roadmap-teaser {
	font-size: 0.8rem;
	color: var(--muted);
	max-width: 420px;
	margin: -1rem auto 1.5rem;
	text-align: center;
}

.pricing-features li {
	font-size: 0.875rem;
	display: flex;
	align-items: flex-start;
	gap: 0.65rem;
	color: var(--text);
	line-height: 1.35;
}

.pricing-features li::before {
	content: "✓";
	color: var(--success);
	font-weight: 700;
	flex-shrink: 0;
	margin-top: 1px;
}

.pricing-features--roadmap li {
	opacity: 0.55;
}

.pricing-features--roadmap li::before {
	content: "◦";
	color: var(--muted);
	font-weight: 400;
}

.pricing-roadmap {
	margin-top: 0.75rem;
}

.pricing-roadmap summary {
	font-size: 0.78rem;
	color: var(--text);
	cursor: pointer;
	user-select: none;
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0.45rem 0.7rem;
	border: 1px solid var(--border);
	border-radius: 6px;
	background: var(--surface);
	transition: border-color 0.15s, background 0.15s;
}

.pricing-roadmap summary:hover {
	border-color: var(--muted);
	background: var(--surface-2);
}

.pricing-roadmap summary::-webkit-details-marker {
	display: none;
}

.pricing-roadmap summary::after {
	content: "";
	display: inline-block;
	width: 0;
	height: 0;
	border-left: 4px solid transparent;
	border-right: 4px solid transparent;
	border-top: 5px solid var(--muted);
	transition: transform 0.2s ease;
	flex-shrink: 0;
	margin-left: 0.5rem;
}

.pricing-roadmap[open] summary {
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
	border-bottom-color: transparent;
}

.pricing-roadmap[open] summary::after {
	transform: rotate(180deg);
}

.pricing-roadmap .pricing-features--roadmap {
	margin-top: 0;
	margin-bottom: 0;
	padding: 0.6rem 0.7rem 0.5rem;
	border: 1px solid var(--border);
	border-top: none;
	border-radius: 0 0 6px 6px;
	background: var(--surface);
}

.btn-primary {
	display: inline-block;
	background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
	color: #fff;
	text-decoration: none;
	padding: 0.85rem 2rem;
	border-radius: 8px;
	font-weight: 700;
	font-size: 1rem;
	width: 100%;
	transition: opacity 0.2s, transform 0.2s;
	text-align: center;
}

.btn-primary:hover {
	opacity: 0.88;
	transform: translateY(-1px);
}

.trust-note {
	font-size: 0.78rem;
	color: var(--muted);
	margin-top: 0.75rem;
	margin-bottom: 0;
	line-height: 1.6;
}

/* /mo period inline with price */
.pricing-period {
	font-size: 1.2rem;
	font-weight: 600;
	letter-spacing: 0;
	vertical-align: baseline;
	color: var(--muted);
	margin-left: 0.1rem;
}

/* Trust note link */
.trust-note-link {
	color: var(--accent);
	text-decoration: underline;
	text-underline-offset: 2px;
	text-decoration-color: rgba(79, 142, 247, 0.4);
	transition: opacity 0.2s;
}

.trust-note-link:hover {
	opacity: 0.8;
}

/* FAQ link */
.faq-item p a {
	color: var(--accent);
	text-decoration: underline;
	text-underline-offset: 2px;
	text-decoration-color: rgba(79, 142, 247, 0.4);
}

.faq-item p a:hover {
	opacity: 0.8;
}

.pricing-original {
	font-size: 1rem;
	color: var(--muted);
	text-decoration: line-through;
	margin-left: 0.5rem;
	font-weight: 500;
	vertical-align: middle;
}

.pricing-savings {
	display: inline-block;
	background: rgba(34, 197, 94, 0.12);
	color: var(--success);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	padding: 0.2rem 0.6rem;
	border-radius: 999px;
	margin-left: 0.5rem;
	vertical-align: middle;
}

.seats-wrap {
	margin: 1.25rem 0 0.75rem;
	text-align: left;
}

.seats-track {
	width: 100%;
	height: 6px;
	background: var(--border);
	border-radius: 99px;
	overflow: hidden;
	margin-bottom: 0.5rem;
}

.seats-fill {
	height: 100%;
	border-radius: 99px;
	background: linear-gradient(90deg, var(--accent), var(--accent-2));
	width: 30%;
}

.seats-note {
	font-size: 0.8rem;
	font-weight: 400;
	color: var(--muted);
	margin: 0;
	line-height: 1.45;
	display: flex;
	flex-direction: column;
	gap: 0.15rem;
}

.seats-remaining-bold {
	font-weight: 700;
	font-size: 0.82rem;
	color: var(--text);
}

.seats-price-rise {
	font-size: 0.72rem;
	font-weight: 400;
	color: var(--muted);
}

.pre-order-count {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: rgba(79, 142, 247, 0.08);
	border: 1px solid rgba(79, 142, 247, 0.2);
	border-radius: 999px;
	padding: 0.35rem 1rem;
	font-size: 0.8rem;
	color: var(--accent);
	font-weight: 600;
	margin-bottom: 2rem;
	align-self: center; /* Ensure badge itself is centered if container is flex-column */
}

.badge-icon {
	width: 1.2rem;
	height: 1.2rem;
	flex-shrink: 0;
}

/* ── RESPONSIVE TWO-COLUMN PRICING CONTAINER ── */

.pricing-container {
	display: flex;
	gap: 2rem;
	justify-content: center;
	align-items: stretch; /* Forces equal height for both cards */
	max-width: 1000px;
	margin: 0 auto 2.5rem;
	padding: 0 1rem;
}

.pricing-container .pricing-card {
	margin: 0;
	flex: 1;
	max-width: 420px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.pricing-card-top {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.pricing-card-bottom {
	margin-top: auto;
}

/* Matching decorative / style overrides for enterprise and trial badges */
.enterprise-trial-wrap {
	border-left: 2px solid rgba(79, 142, 247, 0.4);
	padding-left: 0.75rem;
	margin: 1.25rem 0 1.5rem;
	text-align: left;
}

.enterprise-trial-wrap .seats-note {
	display: flex;
	flex-direction: column;
	gap: 0.15rem;
}

/* Volume Pricing Anchor link */
.pricing-volume-anchor {
	text-align: center;
	font-size: 0.9rem;
	color: var(--muted);
	margin: 0 auto 3rem;
	max-width: 600px;
}

.pricing-volume-anchor a {
	color: var(--accent);
	text-decoration: none;
	font-weight: 600;
	transition: opacity 0.2s;
}

.pricing-volume-anchor a:hover {
	opacity: 0.85;
	text-decoration: underline;
}

/* ── RESPONSIVE MEDIA QUERIES FOR PRICING TABLE ── */
@media (max-width: 850px) {
	.pricing-container {
		flex-direction: column;
		align-items: center;
		gap: 1.5rem;
	}
	.pricing-container .pricing-card {
		width: 100%;
		max-width: 420px;
	}
}

.pricing-guarantee-row {
    text-align: center;
    margin-top: 1.5rem;
    margin-bottom: 2rem;
    padding: 0 1rem;
}

.pricing-guarantee-badges {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.75rem;
	max-width: 900px;
	margin: 0 auto;
}

.trust-badge {
	display: inline-flex;
	align-items: center;
	font-size: 0.8rem;
	font-weight: 500;
	color: var(--muted);
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.08);
	padding: 0.4rem 0.85rem;
	border-radius: 99px;
	white-space: nowrap;
	transition: all 0.2s ease-in-out;
}

.trust-badge-link {
	text-decoration: none;
	transition: transform 0.2s ease-in-out;
}

.trust-badge-link:hover {
	transform: translateY(-1px);
}

.trust-badge-link .trust-badge,
a.trust-badge.trust-badge-link {
	color: var(--accent);
	border-color: rgba(79, 142, 247, 0.2);
	background: rgba(79, 142, 247, 0.04);
}

.trust-badge-link:hover .trust-badge,
a.trust-badge.trust-badge-link:hover {
	color: #fff;
	background: rgba(79, 142, 247, 0.12);
	border-color: rgba(79, 142, 247, 0.45);
	box-shadow: 0 4px 12px rgba(79, 142, 247, 0.15);
}

/* Pricing card inline styles */
.pricing-card p.launch-date {
	font-size: 0.8rem;
	color: var(--accent);
	font-weight: 600;
	margin-top: 0.5rem;
	margin-bottom: 1rem;
}

/* Launch date as first feature list item */
.pricing-features li.launch-date-item {
	font-size: 0.8rem;
	font-weight: 600;
	color: var(--accent);
	padding-bottom: 0.5rem;
	margin-bottom: 0.15rem;
	border-bottom: 1px solid var(--border);
}

.pricing-features li.launch-date-item::before {
	content: none;
}

.pricing-card p.trial-included {
	font-size: 0.95rem;
	color: var(--text);
	font-weight: 600;
	margin: 1rem 0 0.25rem;
	text-align: center;
}
