/* ─── Audit SEO Landing ───────────────────────────────────── */

.aseo-page {
	padding-top: 4rem;
}

.aseo-inner {
	max-width: 900px;
	margin: 0 auto;
	padding: 0 2rem;
}

/* ─── Hero ────────────────────────────────────────────────── */
.aseo-hero {
	padding: 5rem 0 5rem;
	border-bottom: 1px solid rgba(17, 24, 39, .07);
	position: relative;
	overflow: hidden;
}

.aseo-hero-watermark {
	position: absolute;
	right: -1rem;
	top: 50%;
	transform: translateY(-50%);
	font-family: 'JetBrains Mono', monospace;
	font-size: clamp(5rem, 14vw, 11rem);
	font-weight: 700;
	color: rgba(91, 44, 44, .04);
	white-space: nowrap;
	pointer-events: none;
	user-select: none;
	letter-spacing: -.04em;
}

.aseo-hero-label {
	font-family: 'JetBrains Mono', monospace;
	font-size: .68rem;
	font-weight: 600;
	letter-spacing: .2em;
	text-transform: uppercase;
	color: rgba(91, 44, 44, .5);
	margin-bottom: 1.2rem;
}

.aseo-hero-title {
	font-family: 'Manrope', sans-serif;
	font-size: clamp(2.2rem, 5vw, 3.4rem);
	font-weight: 700;
	color: var(--text);
	line-height: 1.1;
	letter-spacing: -.04em;
	margin-bottom: 1.1rem;
}

.aseo-hero-title em {
	color: var(--accent);
	font-style: normal;
}

.aseo-hero-sub {
	font-family: 'Manrope', sans-serif;
	font-size: 1rem;
	color: var(--muted);
	line-height: 1.75;
	max-width: 520px;
	margin-bottom: 2.2rem;
}

.aseo-hero-actions {
	display: flex;
	align-items: center;
	gap: 1.2rem;
	flex-wrap: wrap;
}

.aseo-btn-primary {
	display: inline-flex;
	align-items: center;
	gap: .45rem;
	font-family: 'JetBrains Mono', monospace;
	font-size: .72rem;
	font-weight: 600;
	letter-spacing: .1em;
	text-transform: uppercase;
	text-decoration: none;
	color: var(--bg);
	background: var(--accent);
	padding: .75rem 1.6rem;
	border: 2px solid var(--accent);
	cursor: pointer;
	transition: background .25s, color .25s;
}

.aseo-btn-primary:hover {
	background: transparent;
	color: var(--accent);
}

.aseo-btn-ghost {
	font-family: 'JetBrains Mono', monospace;
	font-size: .65rem;
	font-weight: 600;
	letter-spacing: .08em;
	text-transform: uppercase;
	text-decoration: none;
	color: rgba(91, 44, 44, .45);
	transition: color .2s;
}

.aseo-btn-ghost:hover { color: var(--accent); }

/* ─── Features ────────────────────────────────────────────── */
.aseo-features {
	padding: 5rem 0;
	border-bottom: 1px solid rgba(17, 24, 39, .07);
}

.aseo-features .section-header {
	margin-bottom: 2.5rem;
}

.aseo-feat-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1px;
	background: rgba(17, 24, 39, .08);
	border: 1px solid rgba(17, 24, 39, .08);
}

.aseo-feat {
	background: var(--bg);
	padding: 1.6rem 1.8rem;
	transition: background .2s;
}

.aseo-feat:hover { background: rgba(255, 255, 255, .5); }

.aseo-feat-icon {
	font-family: 'JetBrains Mono', monospace;
	font-size: .6rem;
	font-weight: 600;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: rgba(91, 44, 44, .4);
	margin-bottom: .7rem;
}

.aseo-feat-title {
	font-family: 'Manrope', sans-serif;
	font-size: .95rem;
	font-weight: 700;
	color: var(--text);
	margin-bottom: .45rem;
	letter-spacing: -.01em;
}

.aseo-feat-desc {
	font-family: 'Manrope', sans-serif;
	font-size: .78rem;
	color: var(--muted);
	line-height: 1.65;
}

@media (max-width: 680px) {
	.aseo-feat-grid { grid-template-columns: 1fr; }
}

/* ─── Pricing ─────────────────────────────────────────────── */
.aseo-pricing {
	padding: 5rem 0 6rem;
}

.aseo-pricing .section-header {
	margin-bottom: 2.8rem;
}

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

.aseo-plan {
	display: flex;
	flex-direction: column;
	background: rgba(255, 255, 255, .45);
	border: 1px solid rgba(17, 24, 39, .1);
	padding: 2rem 1.8rem 1.8rem;
	position: relative;
}

.aseo-plan--featured {
	background: var(--bg);
	border: var(--border);
}

.aseo-plan-badge {
	position: absolute;
	top: -1px;
	left: 1.8rem;
	font-family: 'JetBrains Mono', monospace;
	font-size: .52rem;
	font-weight: 600;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--bg);
	background: var(--accent);
	padding: .2rem .55rem;
}

.aseo-plan-name {
	font-family: 'JetBrains Mono', monospace;
	font-size: .62rem;
	font-weight: 600;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: rgba(91, 44, 44, .45);
	margin-bottom: .9rem;
}

.aseo-plan-price {
	font-family: 'Manrope', sans-serif;
	font-size: 2.4rem;
	font-weight: 700;
	color: var(--text);
	letter-spacing: -.04em;
	line-height: 1;
	margin-bottom: .3rem;
}

.aseo-plan-price span {
	font-size: 1rem;
	font-weight: 500;
	color: var(--muted);
	letter-spacing: 0;
}

.aseo-plan-note {
	font-family: 'JetBrains Mono', monospace;
	font-size: .6rem;
	color: rgba(91, 44, 44, .4);
	margin-bottom: 1.5rem;
}

.aseo-plan-list {
	list-style: none;
	padding: 0;
	margin: 0 0 1.8rem;
	flex: 1;
}

.aseo-plan-list li {
	font-family: 'Manrope', sans-serif;
	font-size: .82rem;
	color: var(--muted);
	padding: .35rem 0 .35rem 1.1rem;
	border-bottom: 1px solid rgba(17, 24, 39, .05);
	position: relative;
}

.aseo-plan-list li::before {
	content: '—';
	position: absolute;
	left: 0;
	font-family: 'JetBrains Mono', monospace;
	font-size: .65rem;
	color: rgba(91, 44, 44, .3);
}

.aseo-plan-list li:last-child { border-bottom: none; }

.aseo-plan-cta {
	display: inline-flex;
	justify-content: center;
	font-family: 'JetBrains Mono', monospace;
	font-size: .65rem;
	font-weight: 600;
	letter-spacing: .1em;
	text-transform: uppercase;
	text-decoration: none;
	padding: .65rem 1.2rem;
	transition: background .2s, color .2s, border-color .2s;
}

.aseo-plan:not(.aseo-plan--featured) .aseo-plan-cta {
	color: var(--accent);
	border: 2px solid rgba(91, 44, 44, .2);
}

.aseo-plan:not(.aseo-plan--featured) .aseo-plan-cta:hover {
	border-color: var(--accent);
	background: rgba(91, 44, 44, .04);
}

.aseo-plan--featured .aseo-plan-cta {
	color: var(--bg);
	background: var(--accent);
	border: 2px solid var(--accent);
}

.aseo-plan--featured .aseo-plan-cta:hover {
	background: transparent;
	color: var(--accent);
}

/* WIP (in-development) plan card */
.aseo-plan--wip {
	opacity: .65;
	filter: grayscale(.4);
}

.aseo-plan-price--wip {
	font-family: 'JetBrains Mono', monospace;
	font-size: .8rem;
	font-weight: 600;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: rgba(91, 44, 44, .45);
	margin-bottom: .3rem;
}

.aseo-plan-cta--ghost {
	color: rgba(91, 44, 44, .45) !important;
	border-color: rgba(91, 44, 44, .12) !important;
	background: transparent !important;
}

.aseo-plan-cta--ghost:hover {
	color: var(--accent) !important;
	border-color: rgba(91, 44, 44, .3) !important;
}

@media (max-width: 720px) {
	.aseo-plans { grid-template-columns: 1fr; gap: 1rem; }
}

/* ─── Partners page ───────────────────────────────────────── */
.aseo-partners {
	padding: 5rem 0 7rem;
}

.aseo-partners-hero {
	margin-bottom: 3.5rem;
}

.aseo-partners-title {
	font-family: 'Manrope', sans-serif;
	font-size: clamp(2rem, 4.5vw, 3rem);
	font-weight: 700;
	color: var(--text);
	letter-spacing: -.04em;
	line-height: 1.1;
	margin-bottom: .9rem;
}

.aseo-partners-title em { color: var(--accent); font-style: normal; }

.aseo-partners-sub {
	font-family: 'Manrope', sans-serif;
	font-size: .95rem;
	color: var(--muted);
	line-height: 1.75;
	max-width: 560px;
}

.aseo-partners-card {
	border: var(--border);
	padding: 2.4rem;
	background: var(--bg);
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 2rem;
	align-items: start;
	margin-bottom: 3rem;
}

.aseo-partners-price-big {
	font-family: 'Manrope', sans-serif;
	font-size: 3.2rem;
	font-weight: 700;
	color: var(--text);
	letter-spacing: -.05em;
	line-height: 1;
	margin-bottom: .3rem;
}

.aseo-partners-per {
	font-family: 'JetBrains Mono', monospace;
	font-size: .62rem;
	color: var(--accent);
	letter-spacing: .1em;
	margin-bottom: .2rem;
}

.aseo-partners-save {
	font-family: 'JetBrains Mono', monospace;
	font-size: .58rem;
	color: rgba(91, 44, 44, .4);
	letter-spacing: .06em;
}

.aseo-partners-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.aseo-partners-list li {
	font-family: 'Manrope', sans-serif;
	font-size: .88rem;
	color: var(--muted);
	padding: .5rem 0 .5rem 1.2rem;
	border-bottom: 1px solid rgba(17, 24, 39, .06);
	position: relative;
}

.aseo-partners-list li::before {
	content: '✦';
	position: absolute;
	left: 0;
	font-size: .5rem;
	color: rgba(91, 44, 44, .35);
	top: .65rem;
}

.aseo-partners-list li:last-child { border-bottom: none; }

@media (max-width: 640px) {
	.aseo-partners-card { grid-template-columns: 1fr; }
}

/* ─── Reveal ──────────────────────────────────────────────── */
[data-reveal] {
	opacity: 0;
	transform: translateY(14px);
	transition: opacity .5s cubic-bezier(.22, 1, .36, 1),
	            transform .5s cubic-bezier(.22, 1, .36, 1);
}

[data-reveal].visible {
	opacity: 1;
	transform: translateY(0);
}

.aseo-feat:nth-child(2)[data-reveal] { transition-delay: .07s; }
.aseo-feat:nth-child(3)[data-reveal] { transition-delay: .14s; }
.aseo-feat:nth-child(4)[data-reveal] { transition-delay: .21s; }
.aseo-feat:nth-child(5)[data-reveal] { transition-delay: .28s; }
.aseo-feat:nth-child(6)[data-reveal] { transition-delay: .35s; }

.aseo-plan:nth-child(2)[data-reveal] { transition-delay: .1s; }
.aseo-plan:nth-child(3)[data-reveal] { transition-delay: .2s; }

/* ─── Example report link ──────────────────────────────────── */
.aseo-hero-meta {
	margin-top: .85rem;
}

.aseo-example-link {
	font-family: 'JetBrains Mono', monospace;
	font-size: .6rem;
	font-weight: 600;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: rgba(91, 44, 44, .4);
	text-decoration: none;
	transition: color .2s;
	border-bottom: 1px solid rgba(91, 44, 44, .15);
	padding-bottom: 1px;
}

.aseo-example-link:hover { color: var(--accent); border-color: var(--accent); }

/* ─── Purchase Wizard ──────────────────────────────────────── */
.aseo-wizard {
	position: fixed;
	inset: 0;
	z-index: 400;
	display: flex;
	align-items: center;
	justify-content: center;
	pointer-events: none;
	opacity: 0;
	transition: opacity .2s;
}

.aseo-wizard[aria-hidden="false"] {
	pointer-events: all;
	opacity: 1;
}

.aseo-wizard-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(17, 24, 39, .4);
	backdrop-filter: blur(3px);
}

.aseo-wizard-box {
	position: relative;
	background: var(--bg);
	border: var(--border);
	width: min(480px, calc(100vw - 2rem));
	padding: 2.4rem 2.2rem 2rem;
	box-shadow: 0 20px 60px rgba(17, 24, 39, .15);
}

.aseo-wizard-close {
	position: absolute;
	top: 1rem;
	right: 1rem;
	background: none;
	border: none;
	font-family: 'JetBrains Mono', monospace;
	font-size: .75rem;
	color: var(--muted);
	cursor: pointer;
	padding: .2rem .4rem;
	transition: color .15s;
	line-height: 1;
}

.aseo-wizard-close:hover { color: var(--accent); }

.aseo-wz-label {
	font-family: 'JetBrains Mono', monospace;
	font-size: .58rem;
	font-weight: 600;
	letter-spacing: .2em;
	text-transform: uppercase;
	color: rgba(91, 44, 44, .45);
	margin-bottom: .6rem;
}

.aseo-wz-title {
	font-family: 'Manrope', sans-serif;
	font-size: 1.4rem;
	font-weight: 700;
	color: var(--text);
	letter-spacing: -.03em;
	line-height: 1.15;
	margin-bottom: 1.6rem;
}

.aseo-wz-form {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.aseo-wz-field {
	display: flex;
	flex-direction: column;
	gap: .3rem;
}

.aseo-wz-lbl {
	font-family: 'JetBrains Mono', monospace;
	font-size: .58rem;
	font-weight: 600;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: rgba(91, 44, 44, .5);
}

.aseo-wz-input,
.aseo-wz-select {
	font-family: 'JetBrains Mono', monospace;
	font-size: .78rem;
	color: var(--text);
	background: rgba(255, 255, 255, .6);
	border: 1px solid rgba(17, 24, 39, .14);
	padding: .6rem .75rem;
	outline: none;
	width: 100%;
	transition: border-color .15s;
	-webkit-appearance: none;
	appearance: none;
}

.aseo-wz-input:focus,
.aseo-wz-select:focus {
	border-color: rgba(91, 44, 44, .4);
}

.aseo-wz-input.aseo-wz-input--err {
	border-color: #B54242;
}

.aseo-wz-select {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%235b2c2c' stroke-opacity='.4' stroke-width='1.4' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right .75rem center;
	padding-right: 2rem;
}

.aseo-wz-btn {
	font-family: 'JetBrains Mono', monospace;
	font-size: .7rem;
	font-weight: 600;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--bg);
	background: var(--accent);
	border: 2px solid var(--accent);
	padding: .7rem 1.4rem;
	cursor: pointer;
	transition: background .2s, color .2s;
	margin-top: .4rem;
	align-self: flex-start;
}

.aseo-wz-btn:hover {
	background: transparent;
	color: var(--accent);
}

.aseo-wz-btn:disabled {
	opacity: .5;
	cursor: not-allowed;
}

.aseo-wz-consent {
	margin-top: .8rem;
}

.aseo-wz-consent-lbl {
	display: flex;
	align-items: flex-start;
	gap: .55rem;
	font-family: 'Manrope', sans-serif;
	font-size: .76rem;
	color: var(--muted);
	cursor: pointer;
	line-height: 1.4;
}

.aseo-wz-consent-chk {
	flex-shrink: 0;
	margin-top: .15rem;
	accent-color: var(--accent);
}

.aseo-wz-sub {
	font-family: 'Manrope', sans-serif;
	font-size: .88rem;
	color: var(--muted);
	line-height: 1.65;
	margin-bottom: 1.2rem;
}

.aseo-wz-ok-site {
	font-family: 'JetBrains Mono', monospace;
	font-size: .72rem;
	color: var(--accent);
	background: var(--accent-pale);
	padding: .4rem .8rem;
	margin-bottom: 1.2rem;
	border-left: var(--border);
	word-break: break-all;
}

.aseo-wz-contacts {
	display: flex;
	gap: .6rem;
	margin-bottom: 1.4rem;
}

.aseo-wz-contact {
	font-family: 'JetBrains Mono', monospace;
	font-size: .68rem;
	font-weight: 600;
	letter-spacing: .06em;
	color: var(--accent);
	text-decoration: none;
	border: 1px solid rgba(91, 44, 44, .25);
	padding: .35rem .8rem;
	transition: background .15s;
}

.aseo-wz-contact:hover {
	background: var(--accent-pale);
}

.aseo-wz-back {
	font-family: 'JetBrains Mono', monospace;
	font-size: .65rem;
	color: var(--muted);
	background: none;
	border: none;
	cursor: pointer;
	padding: 0;
	text-decoration: underline;
	text-underline-offset: 3px;
	transition: color .15s;
}

.aseo-wz-back:hover { color: var(--accent); }

@media (max-width: 480px) {
	.aseo-wizard-box { padding: 2rem 1.4rem 1.6rem; }
}
