:root {
	--brand-green: #236151;
	--brand-green-dark: #1a4a3d;
	--brand-mint: #cadfde;
	--text-primary: #3c3939;
	--text-secondary: rgba(0, 0, 0, 0.7);
	--bg-page: #f7f7f7;
	--bg-card: #ffffff;
	--border: rgba(0, 0, 0, 0.1);
	--border-card: rgba(0, 0, 0, 0.06);
	--radius-md: 8px;
	--container: 1200px;
	--content: 904px;
}

body {
	font-family: Inter, system-ui, -apple-system, sans-serif;
}

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

.page {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

.visually-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.skip-link {
	position: absolute;
	top: -3rem;
	left: 1rem;
	padding: 0.5rem 1rem;
	background: var(--brand-green);
	color: #fff;
	z-index: 100;
	border-radius: var(--radius-md);
	text-decoration: none;
	font-weight: 600;
	transition: top 0.2s;
}

.skip-link:focus {
	top: 1rem;
	outline: 3px solid rgba(35, 97, 81, 0.35);
	outline-offset: 2px;
}

.start-header {
	background: var(--bg-card);
	border-bottom: 1px solid var(--border);
}

.start-header__inner {
	max-width: var(--container);
	margin: 0 auto;
	padding: 16px 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
}

.start-header__logo {
	display: block;
	line-height: 0;
}

.start-header__logo img {
	display: block;
	height: 46px;
	width: auto;
	max-width: 196px;
}

.start-header__nav {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
}

.start-header__link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 14px;
	font-size: 14px;
	font-weight: 600;
	color: #666d70;
	text-decoration: none;
	border: 1px solid rgba(0, 0, 0, 0.12);
	border-radius: 4px;
	background: var(--bg-card);
	transition: color 0.15s, border-color 0.15s;
}

.start-header__link .material-symbols-rounded { font-size: 18px; }
.start-header__link:hover { color: #277cea; border-color: #277cea; }
.start-header__link:focus-visible {
	outline: 3px solid rgba(35, 97, 81, 0.35);
	outline-offset: 2px;
}

.start-footer {
	background: #195747;
	color: #fff;
	padding: 24px;
	text-align: center;
	margin-top: auto;
}

.start-footer p {
	margin: 0;
	font-size: 14px;
	color: #fff;
}

.ak-main {
	flex: 1;
	max-width: var(--container);
	width: 100%;
	margin: 0 auto;
	padding: 40px 24px 64px;
}

.ak-main--narrow { max-width: var(--content); }

.intro { max-width: var(--content); margin-bottom: 40px; }

.intro h1,
.ak-main h1.wp-block-heading {
	font-size: 38px;
	font-weight: 700;
	line-height: 1.2;
	color: var(--text-primary);
	margin: 0 0 12px;
}

.intro .lead,
.ak-lead,
.is-style-lead {
	font-size: 18px;
	font-weight: 500;
	line-height: 1.5;
	color: var(--text-secondary);
	margin: 0;
}

.section-heading,
.ak-section-heading,
.is-style-section-heading {
	font-size: 24px;
	font-weight: 700;
	line-height: 1.625;
	color: var(--text-primary);
	margin: 0 0 20px;
	padding-bottom: 8px;
	border-bottom: 1px solid var(--border);
}

.is-style-info-box {
	margin: 0 0 40px;
	padding: 16px 20px;
	background: var(--brand-mint);
	border-radius: var(--radius-md);
	border: 1px solid rgba(35, 97, 81, 0.15);
	max-width: var(--content);
}

.is-style-info-box p { margin: 0; font-size: 16px; color: var(--text-primary); }
.is-style-info-box p + p { margin-top: 8px; }

.is-style-badge-mint {
	display: inline-block;
	padding: 4px 12px;
	font-size: 13.28px;
	font-weight: 500;
	background: var(--brand-mint);
	color: var(--brand-green);
	border-radius: var(--radius-md);
	margin-bottom: 16px;
}

.choice-grid {
	display: grid;
	gap: 16px;
	max-width: var(--content);
}

@media (min-width: 640px) {
	.choice-grid { grid-template-columns: repeat(2, 1fr); }
}

.choice-card {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 8px;
	padding: 24px;
	background: var(--bg-card);
	border: 1px solid var(--border-card);
	border-radius: var(--radius-md);
	text-decoration: none;
	color: inherit;
	transition: border-color 0.15s, box-shadow 0.15s;
	min-height: 100%;
}

.choice-card:hover {
	border-color: var(--brand-green);
	box-shadow: 0 2px 8px rgba(35, 97, 81, 0.08);
}

.choice-card:focus-visible {
	outline: 3px solid rgba(35, 97, 81, 0.35);
	outline-offset: 2px;
}

.choice-card__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: var(--radius-md);
	background: var(--brand-mint);
	color: var(--brand-green);
}

.choice-card__icon .material-symbols-rounded { font-size: 28px; }

.choice-card__title {
	margin: 0;
	font-size: 18.72px;
	font-weight: 700;
	line-height: 1.625;
	color: var(--text-primary);
}

.choice-card__desc {
	margin: 0;
	font-size: 16px;
	color: var(--text-secondary);
	flex: 1;
}

.choice-card__action {
	margin-top: 4px;
	font-size: 15px;
	font-weight: 500;
	color: var(--brand-green);
	text-decoration: underline;
	text-underline-offset: 2px;
}

.choice-card:hover .choice-card__action { text-decoration-thickness: 2px; }

.choice-card--editor {
	cursor: default;
	pointer-events: auto;
}

.ak-block-placeholder {
	margin: 0;
	padding: 24px;
	text-align: center;
	color: var(--text-secondary);
	font-style: italic;
	background: var(--bg-card);
	border: 1px dashed var(--border);
	border-radius: var(--radius-md);
	list-style: none;
}

.guide-steps li .rich-text {
	display: block;
}

.guide-steps li span.rich-text {
	font-size: 16px;
	color: var(--text-secondary);
}

.guide-login-cta .btn.btn--cta {
	cursor: text;
}

.guide-steps {
	margin: 0;
	padding: 0;
	list-style: none;
	counter-reset: step;
	max-width: var(--content);
}

.guide-steps li {
	position: relative;
	padding-left: 48px;
	margin-bottom: 24px;
	counter-increment: step;
}

.guide-steps li::before {
	content: counter(step);
	position: absolute;
	left: 0;
	top: 0;
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	font-weight: 700;
	color: #fff;
	background: var(--brand-green);
	border-radius: 50%;
}

.guide-steps li strong {
	display: block;
	margin-bottom: 4px;
	font-size: 18.72px;
	font-weight: 700;
	color: var(--text-primary);
}

.guide-steps li span { font-size: 16px; color: var(--text-secondary); }

.guide-steps__alert {
	padding: 16px 20px !important;
	padding-left: 20px !important;
	counter-increment: none !important;
	background: rgba(239, 187, 33, 0.2);
	border-radius: var(--radius-md);
	border: 1px solid rgba(239, 187, 33, 0.45);
	font-size: 16px;
	color: var(--text-primary);
	list-style: none;
}

.guide-steps__alert::before { content: none !important; }
.guide-steps__alert strong { color: #5c4a0a; }

.guide-step-link {
	margin-top: 12px;
	text-decoration: none;
	display: inline-flex;
}

.guide-login-cta {
	margin: 0 0 32px;
	padding: 24px 20px;
	background: var(--brand-mint);
	border-radius: var(--radius-md);
	border: 1px solid rgba(35, 97, 81, 0.15);
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 12px;
	max-width: var(--content);
}

.guide-login-cta__heading {
	margin: 0;
	font-size: 18.72px;
	font-weight: 700;
	color: var(--text-primary);
}

.guide-login-cta__hint {
	margin: 0;
	max-width: 36rem;
	font-size: 16px;
	color: var(--text-secondary);
}

.is-style-help-box {
	margin-top: 32px;
	padding: 16px 20px;
	background: var(--bg-page);
	border-radius: var(--radius-md);
	border: 1px solid var(--border);
	max-width: var(--content);
}

.is-style-help-box h2 {
	margin: 0 0 8px;
	font-size: 18.72px;
	font-weight: 700;
	color: var(--text-primary);
}

.is-style-help-box p { margin: 0; font-size: 16px; color: var(--text-secondary); }
.is-style-help-box a { color: var(--brand-green); font-weight: 500; }

.is-style-page-actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
	margin-top: 32px;
	max-width: var(--content);
}

.is-style-page-actions .wp-block-button:first-child { margin-right: auto; }
.is-style-page-actions .wp-block-button:last-child { margin-left: auto; }

.btn {
	font-family: inherit;
	font-size: 15px;
	font-weight: 500;
	padding: 10px 20px;
	border-radius: var(--radius-md);
	border: 2px solid transparent;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	text-decoration: none;
	transition: opacity 0.15s, background 0.15s;
}

.btn--primary { background: var(--brand-green); color: #fff; }
.btn--primary:hover { background: var(--brand-green-dark); }
.btn--secondary { background: var(--brand-mint); color: var(--text-primary); }
.btn--pill { border-radius: 100px; padding: 8px 16px; }
.btn--cta { width: 100%; max-width: 20rem; justify-content: center; font-size: 17px; font-weight: 700; padding: 14px 24px; }

.is-style-primary .wp-block-button__link {
	background: var(--brand-green);
	color: #fff;
	border-radius: var(--radius-md);
	font-weight: 500;
	padding: 10px 20px;
}

.is-style-primary .wp-block-button__link:hover { background: var(--brand-green-dark); }

.is-style-secondary .wp-block-button__link {
	background: var(--brand-mint);
	color: var(--text-primary);
	border-radius: var(--radius-md);
	font-weight: 500;
	padding: 10px 20px;
}

.error-state {
	text-align: center;
	padding: 32px 16px;
	max-width: var(--content);
}

@media (max-width: 640px) {
	.start-header__inner {
		flex-direction: column;
		align-items: stretch;
		padding: 12px 16px;
	}
	.start-header__logo { text-align: center; }
	.start-header__logo img { margin-inline: auto; }
	.start-header__nav { justify-content: center; }
	.start-header__link {
		flex: 1 1 auto;
		justify-content: center;
		min-width: calc(50% - 4px);
	}
	.intro h1, .ak-main h1.wp-block-heading { font-size: 28px; }
}
