/* AEO Pro — pricing/landing page.
   Loaded after tools/aeo-checker/aeo-checker.css (dependency) — reuses its .aeo-page custom
   properties (--ink, --cream, --fire, --radius-lg…) and shared components (.aeo-btn, .aeo-cta,
   .aeo-faq__*, .aeo-container, .aeo-process__*, .aeo-feature-cards). Only page-specific pricing
   grid / comparison classes live here. */

.aeo-pro-lp__hero {
	padding-bottom: 56px;
}

/* Single-column hero (no visual/orbit column) — override the checker's 2-column grid. */
.aeo-pro-lp__hero-layout {
	grid-template-columns: 1fr;
	max-width: 760px;
}

.aeo-pro-lp__hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 8px;
}

.aeo-pro-lp__hero-note {
	margin-top: 16px;
	font-family: var(--mono);
	font-size: 12px;
	letter-spacing: 0.04em;
	color: rgba(245, 240, 232, 0.68);
}

/* Secondary hero CTA on the dark hero background — .aeo-btn--ghost is tuned for the light
   content area, so this page needs its own light-on-dark outline variant. */
.aeo-pro-lp__hero-secondary {
	background: transparent;
	color: var(--cream);
	border: 1px solid rgba(245, 240, 232, 0.32);
}

.aeo-pro-lp__hero-secondary:hover {
	border-color: rgba(245, 240, 232, 0.6);
	background: rgba(245, 240, 232, 0.06);
}

/* ── Free vs Pro comparison ───────────────────────────────────────────────── */
.aeo-pro-lp__compare-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px;
	margin-top: 20px;
}

.aeo-pro-lp__compare-col {
	background: #fff;
	border: 1px solid rgba(26, 23, 20, 0.08);
	border-radius: var(--radius-lg);
	padding: 24px 22px 26px;
}

.aeo-pro-lp__compare-col--pro {
	border-color: rgba(232, 82, 26, 0.4);
	background: rgba(232, 82, 26, 0.04);
	box-shadow: 0 2px 20px rgba(232, 82, 26, 0.08);
}

.aeo-pro-lp__compare-col-title {
	font-family: var(--display);
	font-size: 20px;
	letter-spacing: 0.06em;
	color: var(--ink);
	margin: 0 0 14px;
}

.aeo-pro-lp__compare-list {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin: 0 0 18px;
	padding: 0;
	list-style: none;
	font-size: 14.5px;
	line-height: 1.5;
	color: var(--ink-mid);
}

.aeo-pro-lp__compare-list li {
	padding-left: 22px;
	position: relative;
}

.aeo-pro-lp__compare-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 7px;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: rgba(26, 23, 20, 0.15);
}

.aeo-pro-lp__compare-col--pro .aeo-pro-lp__compare-list li::before {
	background: var(--fire);
}

.aeo-pro-lp__compare-cta {
	display: inline-block;
	font-family: var(--mono);
	font-size: 13px;
	letter-spacing: 0.04em;
	color: var(--ink-mid);
	text-decoration: none;
	border-bottom: 1px solid currentColor;
}

.aeo-pro-lp__compare-cta--pro {
	color: var(--fire);
}

/* ── Pricing grid ──────────────────────────────────────────────────────────── */
.aeo-pro-lp__pricing {
	margin: 56px 0;
}

.aeo-pro-lp__plans {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 20px;
	margin-top: 32px;
}

.aeo-pro-lp__plan {
	position: relative;
	display: flex;
	flex-direction: column;
	background: #fff;
	border: 1px solid rgba(26, 23, 20, 0.1);
	border-radius: var(--radius-lg);
	padding: 26px 22px 24px;
	box-shadow: 0 1px 0 rgba(26, 23, 20, 0.04);
}

.aeo-pro-lp__plan--highlight {
	border-color: var(--fire);
	box-shadow: 0 6px 28px rgba(232, 82, 26, 0.14);
	transform: translateY(-4px);
}

.aeo-pro-lp__plan--pass {
	background: var(--ink);
	border-color: var(--ink);
	color: var(--cream);
}

.aeo-pro-lp__plan--pass .aeo-pro-lp__plan-label,
.aeo-pro-lp__plan--pass .aeo-pro-lp__plan-price {
	color: var(--cream);
}

.aeo-pro-lp__plan--pass .aeo-pro-lp__plan-desc {
	color: rgba(245, 240, 232, 0.78);
}

.aeo-pro-lp__plan-badge {
	position: absolute;
	top: -12px;
	left: 22px;
	background: var(--fire);
	color: #fff;
	font-family: var(--mono);
	font-size: 10px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	padding: 4px 10px;
	border-radius: 999px;
}

.aeo-pro-lp__plan-badge--pass {
	background: var(--cream);
	color: var(--ink);
}

.aeo-pro-lp__plan-label {
	font-family: var(--display);
	font-size: 21px;
	letter-spacing: 0.04em;
	color: var(--ink);
	margin: 10px 0 6px;
}

.aeo-pro-lp__plan-price {
	font-family: var(--display);
	font-size: 36px;
	color: var(--fire);
	line-height: 1;
	margin: 0 0 4px;
}

.aeo-pro-lp__plan-period {
	font-family: var(--mono);
	font-size: 11.5px;
	letter-spacing: 0.02em;
	color: var(--ink-soft);
	margin: 0 0 16px;
}

.aeo-pro-lp__plan-desc {
	font-size: 14px;
	line-height: 1.55;
	color: var(--ink-mid);
	margin: 0 0 20px;
}

.aeo-pro-lp__plan-features {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin: 0 0 22px;
	padding: 0;
	list-style: none;
	font-size: 13.5px;
	line-height: 1.5;
	color: var(--ink-mid);
	flex: 1;
}

.aeo-pro-lp__plan-features li {
	padding-left: 18px;
	position: relative;
}

.aeo-pro-lp__plan-features li::before {
	content: "✓";
	position: absolute;
	left: 0;
	color: var(--fire);
	font-weight: 700;
}

.aeo-pro-lp__plan--pass .aeo-pro-lp__plan-features li::before {
	color: var(--cream);
}

.aeo-pro-lp__plan-buy {
	width: 100%;
	justify-content: center;
	margin-top: auto;
}

.aeo-pro-lp__pricing-footnote {
	margin-top: 28px;
	font-size: 13.5px;
	color: var(--ink-soft);
	text-align: center;
}

.aeo-pro-lp__pricing-footnote a {
	color: var(--fire);
}

/* ── How it works reuse: no extra rules needed (shares .aeo-process). ──────── */
.aeo-pro-lp__howitworks {
	margin-bottom: 56px;
}

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

	.aeo-pro-lp__plan--highlight {
		transform: none;
	}
}
