body {
	display: flex;
	flex-direction: column;
}

a {
	color: #2563eb;
}

html.dark a {
	color: #60a5fa;
}

.page {
	max-width: 780px;
	margin: 0 auto;
	padding: 60px 20px 80px;
	flex: 1;
}

/* Hero */
.hero {
	margin-bottom: 48px;
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	background: rgba(37, 99, 235, 0.08);
	border: 0.5px solid rgba(37, 99, 235, 0.25);
	border-radius: 99px;
	padding: 4px 12px;
	font-size: 12px;
	color: #2563eb;
	margin-bottom: 18px;
}

html.dark .hero-badge {
	background: rgba(96, 165, 250, 0.1);
	border-color: rgba(96, 165, 250, 0.25);
	color: #60a5fa;
}

.hero h1 {
	font-size: 32px;
	font-weight: 600;
	line-height: 1.2;
	margin-bottom: 14px;
	letter-spacing: -0.5px;
}

.hero p {
	font-size: 15px;
	color: #555;
	line-height: 1.7;
	max-width: 560px;
}

html.dark .hero p {
	color: #aaa;
}

/* Warning banner */
.version-banner {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	background: rgba(245, 158, 11, 0.07);
	border: 0.5px solid rgba(245, 158, 11, 0.35);
	border-radius: 10px;
	padding: 12px 16px;
	margin-bottom: 36px;
	font-size: 13px;
	line-height: 1.6;
	color: #78350f;
}

html.dark .version-banner {
	background: rgba(251, 191, 36, 0.07);
	border-color: rgba(251, 191, 36, 0.25);
	color: #fbbf24;
}

.version-banner strong {
	font-weight: 500;
}

/* Cards */
.cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 16px;
	margin-bottom: 48px;
}

.card {
	background: #fff;
	border: 0.5px solid rgba(0, 0, 0, 0.1);
	border-radius: 14px;
	padding: 24px;
	text-decoration: none;
	color: inherit;
	display: flex;
	flex-direction: column;
	gap: 10px;
	transition:
		box-shadow 0.15s,
		border-color 0.15s,
		transform 0.1s;
	border-top: 3px solid transparent;
}

html.dark .card {
	background: #252522;
	border-color: rgba(255, 255, 255, 0.1);
}

.card:hover {
	border-color: rgba(0, 0, 0, 0.18);
	transform: translateY(-2px);
}

html.dark .card:hover {
	border-color: rgba(255, 255, 255, 0.2);
}

.card.blue {
	border-top-color: #60a5fa;
}

.card.purple {
	border-top-color: #a78bfa;
}

.card-icon {
	font-size: 28px;
	line-height: 1;
}

.card-title {
	font-size: 17px;
	font-weight: 500;
}

.card-desc {
	font-size: 13px;
	color: #666;
	line-height: 1.6;
}

html.dark .card-desc {
	color: #999;
}

.card-meta {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	margin-top: 4px;
}

.tag {
	font-size: 11px;
	padding: 3px 9px;
	border-radius: 99px;
	font-weight: 500;
	background: rgba(0, 0, 0, 0.06);
	color: #555;
}

html.dark .tag {
	background: rgba(255, 255, 255, 0.08);
	color: #aaa;
}

.card-cta {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-top: 6px;
	font-size: 13px;
	font-weight: 500;
	color: #2563eb;
}

html.dark .card-cta {
	color: #60a5fa;
}

/* Features */
.features {
	margin-bottom: 48px;
}

.features h2 {
	font-size: 11px;
	font-weight: 500;
	margin-bottom: 14px;
	color: #888;
	text-transform: uppercase;
	letter-spacing: 0.6px;
}

.feature-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 12px;
}

.feature {
	background: #fff;
	border: 0.5px solid rgba(0, 0, 0, 0.08);
	border-radius: 10px;
	padding: 14px 16px;
	font-size: 13px;
	color: #444;
	line-height: 1.5;
	display: flex;
	gap: 10px;
	align-items: flex-start;
}

html.dark .feature {
	background: #252522;
	border-color: rgba(255, 255, 255, 0.08);
	color: #aaa;
}

.feature-icon {
	font-size: 16px;
	flex-shrink: 0;
	margin-top: 1px;
}

.feature-link {
	text-decoration: none;
	color: inherit;
	transition:
		border-color 0.15s,
		transform 0.1s;
}

.feature-link:hover {
	border-color: rgba(37, 99, 235, 0.3);
	transform: translateY(-1px);
}

html.dark .feature-link:hover {
	border-color: rgba(96, 165, 250, 0.3);
}

.feature strong {
	color: #1a1a18;
	font-weight: 500;
	display: block;
	margin-bottom: 3px;
}

html.dark .feature strong {
	color: #e8e6df;
}

/* Sections list */
.sections {
	margin-bottom: 48px;
}

.sections h2 {
	font-size: 11px;
	font-weight: 500;
	margin-bottom: 14px;
	color: #888;
	text-transform: uppercase;
	letter-spacing: 0.6px;
}

.section-list {
	display: flex;
	flex-direction: column;
	gap: 0;
	border: 0.5px solid rgba(0, 0, 0, 0.1);
	border-radius: 12px;
	overflow: hidden;
}

html.dark .section-list {
	border-color: rgba(255, 255, 255, 0.1);
}

.section-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 11px 16px;
	font-size: 13px;
	border-bottom: 0.5px solid rgba(0, 0, 0, 0.07);
	background: #fff;
}

html.dark .section-item {
	background: #252522;
	border-color: rgba(255, 255, 255, 0.07);
}

.section-item:last-child {
	border-bottom: none;
}

.sec-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	flex-shrink: 0;
}

.sec-name {
	flex: 1;
	font-weight: 500;
	color: #1a1a18;
}

html.dark .sec-name {
	color: #e8e6df;
}

.sec-schedule {
	font-size: 11px;
	color: #888;
}

/* Footer styles are in shared.css */
