/* ==========================================================================
   HOME PAGE — section styles
   ========================================================================== */

/* ────────────────────────────────────────
   HOME SECTION SPACING
──────────────────────────────────────── */
.home-section { padding: 110px 0; }

/* ────────────────────────────────────────
   HERO
──────────────────────────────────────── */
.home-hero {
	background: var(--arl-moon-sand);
	padding: 140px 0 120px;
	position: relative;
	overflow: hidden;
}

.home-hero::before {
	content: '';
	position: absolute;
	right: -150px;
	top: 50%;
	transform: translateY(-50%);
	width: 700px;
	height: 700px;
	border: 2px solid var(--arl-deep-teal);
	border-radius: 50%;
	opacity: 0.05;
	pointer-events: none;
}

.home-hero::after {
	content: '';
	position: absolute;
	right: 100px;
	top: 18%;
	width: 28px;
	height: 28px;
	background: var(--arl-luna-accent);
	border-radius: 50%;
	opacity: 0.4;
	pointer-events: none;
}

.home-hero__inner {
	position: relative;
	z-index: 1;
	max-width: 900px;
}

.home-hero__kicker {
	font-family: var(--font-display);
	font-size: 14px;
	font-weight: 600;
	color: var(--arl-luna-accent);
	text-transform: uppercase;
	letter-spacing: 0.15em;
	margin-bottom: 24px;
	display: flex;
	align-items: center;
	gap: 12px;
}

.home-hero__kicker::before {
	content: '';
	width: 32px;
	height: 2px;
	background: var(--arl-luna-accent);
	display: inline-block;
}

.home-hero h1 { margin-bottom: 32px; }

.home-hero h1 em {
	color: var(--arl-luna-accent);
	font-style: normal;
	font-weight: 700;
}

.home-hero__lead {
	font-size: clamp(1.15rem, 1.75vw, 1.4rem);
	color: var(--arl-slate-ink);
	margin-bottom: 44px;
	max-width: 720px;
	line-height: 1.55;
	font-weight: 400;
}

.home-hero__ctas {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
}

/* Hero animations */
@keyframes home-fade-up {
	from { opacity: 0; transform: translateY(24px); }
	to   { opacity: 1; transform: translateY(0); }
}

.home-hero__kicker { animation: home-fade-up .8s ease-out backwards; animation-delay: 0.05s; }
.home-hero h1      { animation: home-fade-up .8s ease-out backwards; animation-delay: 0.15s; }
.home-hero__lead   { animation: home-fade-up .8s ease-out backwards; animation-delay: 0.3s; }
.home-hero__ctas   { animation: home-fade-up .8s ease-out backwards; animation-delay: 0.45s; }

@media (max-width: 640px) {
	.home-hero { padding: 90px 0 80px; }
}

/* ────────────────────────────────────────
   STACK STRIP
──────────────────────────────────────── */
.home-stack {
	background: var(--arl-white);
	padding: 50px 0;
	border-bottom: 1px solid var(--arl-border);
}

.home-stack__inner {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 48px;
	flex-wrap: wrap;
}

.home-stack__label {
	font-size: 13px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--arl-slate-ink);
	opacity: 0.6;
}

.home-stack__item {
	font-family: var(--font-display);
	font-weight: 600;
	font-size: 17px;
	color: var(--arl-slate-ink);
	letter-spacing: -0.01em;
	opacity: 0.7;
}

.home-stack__dot {
	width: 5px;
	height: 5px;
	background: var(--arl-luna-accent);
	border-radius: 50%;
	opacity: 0.5;
	flex-shrink: 0;
}

/* ────────────────────────────────────────
   WHO IS IT FOR
──────────────────────────────────────── */
.home-who { background: var(--arl-white); }

.who-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 40px;
	max-width: 1000px;
	margin: 0 auto;
}

.who-card {
	text-align: center;
	padding: 16px;
}

.who-card__icon {
	width: 56px;
	height: 56px;
	margin: 0 auto 20px;
	background: var(--arl-moon-sand);
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--arl-bright-cyan);
}

.who-card h4 { margin-bottom: 12px; }

.who-card p {
	font-size: 15.5px;
	color: var(--arl-slate-ink);
	line-height: 1.65;
	margin-bottom: 0;
}

/* ────────────────────────────────────────
   PLUGINS / PRODUCTS
──────────────────────────────────────── */
.home-plugins { background: var(--arl-moon-sand); }

.plugin-card {
	background: var(--arl-white);
	border-radius: var(--radius-lg);
	overflow: hidden;
	margin-bottom: 32px;
	display: grid;
	grid-template-columns: 1.4fr 1fr;
	box-shadow: var(--shadow-md);
	border: 1px solid var(--arl-border);
	transition: all .3s var(--ease-out);
}

.plugin-card:hover {
	box-shadow: var(--shadow-lg);
	transform: translateY(-4px);
}

.plugin-card:last-child { margin-bottom: 0; }

@media (max-width: 768px) {
	.plugin-card { grid-template-columns: 1fr; }
}

.plugin-card__info { padding: 48px; }

@media (max-width: 640px) {
	.plugin-card__info { padding: 32px 24px; }
}

.plugin-card__tag {
	display: inline-block;
	font-size: 12px;
	font-weight: 600;
	color: var(--arl-deep-teal);
	background: var(--arl-deep-teal-soft);
	padding: 5px 12px;
	border-radius: var(--radius-pill);
	margin-bottom: 20px;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.plugin-card__info h3 {
	font-size: 1.75rem;
	margin-bottom: 16px;
}

.plugin-card__info p {
	color: var(--arl-slate-ink);
	font-size: 16px;
	margin-bottom: 28px;
	line-height: 1.7;
}

.plugin-card__features {
	list-style: none;
	padding: 0;
	margin-bottom: 0;
}

.plugin-card__features li {
	padding: 8px 0 8px 28px;
	position: relative;
	font-size: 15px;
	color: var(--arl-slate-ink);
}

.plugin-card__features li::before {
	content: '→';
	position: absolute;
	left: 0;
	top: 8px;
	color: var(--arl-bright-cyan);
	font-weight: 700;
}

.plugin-card__aside {
	background: var(--arl-moon-sand-light);
	border-left: 1px solid var(--arl-border);
	padding: 36px 30px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	gap: 22px;
}

@media (max-width: 768px) {
	.plugin-card__aside {
		border-left: none;
		border-top: 1px solid var(--arl-border);
	}
}

.plugin-card__icon {
	width: 78px;
	height: 78px;
	border-radius: 18px;
	display: block;
	box-shadow: var(--shadow-md);
}

.plugin-card__lockup {
	display: flex;
	align-items: center;
	gap: 10px;
	font-family: var(--font-display);
	font-weight: 800;
	font-size: 1.6rem;
	color: var(--arl-deep-teal);
	letter-spacing: -0.02em;
	background: var(--arl-white);
	border: 1px solid var(--arl-border);
	border-radius: 16px;
	padding: 18px 24px;
	box-shadow: var(--shadow-sm);
}

.plugin-card__lockup-x {
	color: var(--arl-luna-accent);
	font-weight: 700;
}

.plugin-card__aside-ctas {
	display: flex;
	flex-direction: column;
	gap: 10px;
	width: 100%;
	max-width: 230px;
}

.plugin-card__aside-ctas .btn { width: 100%; justify-content: center; }

.plugin-card__price-hint {
	display: inline-block;
	font-size: 13px;
	color: var(--arl-slate-ink);
	opacity: 0.75;
}

.plugin-card__price-hint strong {
	color: var(--arl-deep-teal);
	font-family: var(--font-display);
	font-weight: 700;
}

/* ────────────────────────────────────────
   MANIFEST
──────────────────────────────────────── */
.home-manifest {
	background: var(--arl-deep-teal);
	color: var(--arl-white);
	position: relative;
	overflow: hidden;
}

.home-manifest::before {
	content: '';
	position: absolute;
	left: -200px;
	bottom: -200px;
	width: 500px;
	height: 500px;
	border: 1.5px solid var(--arl-bright-cyan);
	border-radius: 50%;
	opacity: 0.12;
	pointer-events: none;
}

.home-manifest::after {
	content: '';
	position: absolute;
	right: 180px;
	top: 80px;
	width: 14px;
	height: 14px;
	background: var(--arl-luna-accent);
	border-radius: 50%;
	opacity: 0.7;
	pointer-events: none;
}

.home-manifest__inner {
	max-width: 820px;
	margin: 0 auto;
	text-align: center;
	position: relative;
	z-index: 1;
}

.home-manifest h2 {
	color: var(--arl-white);
	font-size: clamp(2rem, 4vw, 3rem);
	margin-bottom: 40px;
}

.home-manifest__lead {
	color: rgba(255, 255, 255, 0.85);
	font-size: 1.15rem;
	line-height: 1.7;
	max-width: 680px;
	margin: 0 auto 0;
}

.manifest-points {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 32px;
	margin-top: 48px;
	text-align: left;
}

.manifest-point {
	padding: 24px;
	border-left: 2px solid var(--arl-luna-accent);
}

.manifest-point h4 {
	color: var(--arl-white);
	font-size: 1.1rem;
	margin-bottom: 10px;
}

.manifest-point p {
	color: rgba(255, 255, 255, 0.8);
	font-size: 15px;
	line-height: 1.6;
	margin-bottom: 0;
}

/* ────────────────────────────────────────
   ABOUT
──────────────────────────────────────── */
.home-about { background: var(--arl-white); }

.home-about__inner {
	max-width: 780px;
	margin: 0 auto;
	text-align: center;
}

.home-about__avatar {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	border: 2px solid var(--arl-luna-accent);
	margin: 0 auto 28px;
	overflow: hidden;
}

.home-about__avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
	display: block;
}

.home-about h2 { margin-top: 20px; }

.home-about p {
	font-size: 17px;
	line-height: 1.8;
	color: var(--arl-slate-ink);
	margin-bottom: 20px;
}

.home-about strong { color: var(--arl-deep-teal); }

/* ────────────────────────────────────────
   FINAL CTA
──────────────────────────────────────── */
.home-cta {
	background: var(--arl-moon-sand);
	text-align: center;
}

.home-cta__inner {
	max-width: 720px;
	margin: 0 auto;
}

.home-cta h2 { margin-bottom: 20px; }

.home-cta p {
	font-size: 1.1rem;
	color: var(--arl-slate-ink);
	margin-bottom: 36px;
}

@media (max-width: 640px) {
	.home-section { padding: 80px 0; }
}
