/**
 * AbstractRealmss — Homepage enhancements
 * White cinematic palette · blue accent strips only
 */

/* ── Hero (cinematic) ──────────────────────────────────────────── */
.ar-home-hero {
	min-height: clamp(520px, 78vh, 720px);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 96px 24px 80px;
	background-image: url('../images/ar-banner-hero.jpeg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	color: #FAFAF8;
}

/* Title Gradient with light colors */
.ar-home-hero .ar-hero-title {
	background: linear-gradient(135deg, #FFFFFF 0%, #CBD5E1 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

@supports not (background-clip: text) {
	.ar-home-hero .ar-hero-title {
		color: #FAFAF8;
	}
}

/* Checklist items contrast */
.ar-home-hero .ar-pfy-checklist li {
	color: #E2E8F0;
}

.ar-home-hero .ar-pfy-check {
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(255, 255, 255, 0.25);
	color: #FAFAF8;
}

/* Actions contrast */
.ar-home-hero .ar-btn--ghost {
	color: #FAFAF8 !important;
	border-color: rgba(255, 255, 255, 0.45) !important;
	background: transparent !important;
}

.ar-home-hero .ar-btn--ghost:hover {
	color: #FFFFFF !important;
	border-color: #FFFFFF !important;
	background: rgba(255, 255, 255, 0.08) !important;
}

/* Note contrast */
.ar-home-hero .ar-pfy-hero-note {
	color: #94A3B8;
}

/* Trust row contrast */
.ar-home-hero .ar-pfy-trust-row {
	border-top-color: rgba(255, 255, 255, 0.15);
}

.ar-home-hero .ar-pfy-trust-text {
	color: #94A3B8;
}

.ar-hero-bg {
	position: absolute;
	inset: 0;
	overflow: hidden;
	pointer-events: none;
	clip-path: inset(0);
}

.ar-hero-orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(60px);
	opacity: 0.35;
	animation: arOrbDrift 18s ease-in-out infinite alternate;
}

.ar-hero-orb--azure {
	width: min(280px, 35vw);
	height: min(280px, 35vw);
	background: radial-gradient(circle, rgba(46, 90, 168, 0.12) 0%, transparent 70%);
	bottom: 5%;
	left: -5%;
	opacity: 0.25;
}

.ar-hero-orb--aqua {
	width: min(420px, 55vw);
	height: min(420px, 55vw);
	background: radial-gradient(circle, rgba(238, 237, 234, 0.85) 0%, transparent 70%);
	top: 8%;
	right: -8%;
	animation-delay: -6s;
	animation-duration: 22s;
}

.ar-hero-watermark {
	position: absolute;
	right: 8%;
	top: 50%;
	transform: translateY(-50%);
	font-family: var(--ar-font-display);
	font-size: clamp(8rem, 18vw, 14rem);
	font-weight: 500;
	color: rgba(184, 190, 200, 0.08);
	line-height: 1;
	user-select: none;
	animation: arWatermarkPulse 8s ease-in-out infinite;
}

/* L-shaped corner brackets (brand book) */
.ar-hero-brackets {
	position: absolute;
	inset: 28px;
	pointer-events: none;
}

.ar-bracket {
	position: absolute;
	width: 28px;
	height: 28px;
	border-color: rgba(184, 190, 200, 0.45);
	border-style: solid;
	opacity: 0;
	animation: arBracketIn 1s ease forwards;
}

.ar-bracket--tl { top: 0; left: 0; border-width: 1px 0 0 1px; animation-delay: 0.6s; }
.ar-bracket--tr { top: 0; right: 0; border-width: 1px 1px 0 0; animation-delay: 0.7s; }
.ar-bracket--bl { bottom: 0; left: 0; border-width: 0 0 1px 1px; animation-delay: 0.8s; }
.ar-bracket--br { bottom: 0; right: 0; border-width: 0 1px 1px 0; animation-delay: 0.9s; }

.ar-hero-frame {
	animation: arFrameIn 1.2s ease forwards;
	opacity: 0;
}

/* Hero entrance stagger */
.ar-hero-animate {
	opacity: 0;
	transform: translateY(20px);
	animation: arFadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
	animation-delay: var(--ar-delay, 0s);
}

.ar-hero-title {
	background: linear-gradient(135deg, var(--ar-midnight) 0%, var(--ar-threshold-grey) 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

@supports not (background-clip: text) {
	.ar-hero-title {
		color: var(--ar-midnight);
	}
}

.ar-hero-scroll {
	position: absolute;
	bottom: 24px;
	left: 50%;
	transform: translateX(-50%);
}

.ar-hero-scroll-line {
	display: block;
	width: 1px;
	height: 40px;
	background: linear-gradient(to bottom, var(--ar-silver), transparent);
	animation: arScrollPulse 2.2s ease-in-out infinite;
}

/* Manifesto strip — thin blue accent only */
.ar-home-strip {
	background: var(--ar-surface);
	border-top: 1px solid var(--ar-platinum-glow);
	border-bottom: 1px solid var(--ar-platinum-glow);
	padding: 18px 24px;
	text-align: center;
	position: relative;
}

.ar-home-strip::before {
	content: "";
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: min(120px, 30vw);
	height: 2px;
	background: var(--ar-accent-strip);
}

.ar-home-strip-text {
	margin: 0;
	font-family: var(--ar-font-body);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--ar-threshold-grey);
}

/* Silver line grow on reveal */
.ar-silver-line--grow {
	transform: scaleX(0);
	transform-origin: left center;
	transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.15s;
}

.ar-reveal.is-visible .ar-silver-line--grow {
	transform: scaleX(1);
}

/* ── Scroll reveal system ──────────────────────────────────────── */
.ar-reveal {
	opacity: 0;
	transform: translateY(28px);
	transition:
		opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
		transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.ar-reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.ar-reveal--delay-1 { transition-delay: 0.05s; }
.ar-reveal--delay-2 { transition-delay: 0.12s; }
.ar-reveal--delay-3 { transition-delay: 0.19s; }
.ar-reveal--delay-4 { transition-delay: 0.26s; }

/* ── Realm cards (enhanced) ──────────────────────────────────── */
.ar-realm-card {
	position: relative;
	overflow: hidden;
	padding-top: 36px;
}

.ar-realm-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: var(--ar-platinum-glow);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.ar-realm-card:hover::before {
	transform: scaleX(1);
}

.ar-realm-numeral {
	position: absolute;
	top: 16px;
	right: 20px;
	font-family: var(--ar-font-display);
	font-size: 1.75rem;
	font-weight: 500;
	color: var(--ar-silver);
	opacity: 0.7;
	line-height: 1;
}

/* Only Self realm gets blue accent strip; others use neutral tones */
.ar-realm-card--self::before { background: var(--ar-accent-strip); }
.ar-realm-card--tribe::before { background: linear-gradient(90deg, #2E8B85, var(--ar-silver)); }
.ar-realm-card--guild::before { background: linear-gradient(90deg, var(--ar-threshold-grey), var(--ar-silver)); }
.ar-realm-card--beloved::before { background: linear-gradient(90deg, var(--ar-silver), #C9923D); }

.ar-realm-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 16px 48px rgba(28, 32, 48, 0.08);
}

.ar-realm-link .ar-arrow {
	display: inline-block;
	transition: transform 0.25s ease;
}

.ar-realm-card:hover .ar-arrow {
	transform: translateX(4px);
}

/* ── Category cards (enhanced) ───────────────────────────────── */
.ar-cat-card {
	position: relative;
	overflow: hidden;
	min-height: 140px;
	transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}

.ar-cat-card::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(145deg, rgba(238, 237, 234, 0.5) 0%, transparent 55%);
	opacity: 0;
	transition: opacity 0.35s ease;
}

.ar-cat-card:hover {
	transform: translateY(-4px) scale(1.02);
	box-shadow: 0 12px 32px rgba(28, 32, 48, 0.08);
	border-color: var(--ar-silver);
}

.ar-cat-card:hover::after {
	opacity: 1;
}

.ar-cat-index {
	position: absolute;
	top: 16px;
	right: 16px;
	font-family: var(--ar-font-display);
	font-size: 1.25rem;
	color: rgba(184, 190, 200, 0.65);
	line-height: 1;
}

.ar-cat-shine {
	position: absolute;
	inset: 0;
	background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.35) 50%, transparent 60%);
	transform: translateX(-120%);
	transition: transform 0.6s ease;
	pointer-events: none;
}

.ar-cat-card:hover .ar-cat-shine {
	transform: translateX(120%);
}

.ar-cat-card:hover .ar-cat-cta {
	color: var(--ar-midnight);
}

.ar-cat-empty {
	grid-column: 1 / -1;
	margin: 0;
	padding: 2rem;
	text-align: center;
	color: var(--ar-threshold-grey);
	font-size: 0.95rem;
}

/* ── Featured products wrapper ───────────────────────────────── */
.ar-featured-wrap {
	position: relative;
}

.ar-featured-wrap::before {
	content: "";
	position: absolute;
	inset: -24px -12px;
	background: radial-gradient(ellipse at center, rgba(238, 237, 234, 0.5), transparent 70%);
	pointer-events: none;
	z-index: 0;
}

.ar-featured-wrap .woocommerce {
	position: relative;
	z-index: 1;
}

.ar-featured .products li.product {
	animation: arFadeUp 0.6s ease backwards;
}

.ar-featured.is-visible .products li.product:nth-child(1) { animation-delay: 0.1s; }
.ar-featured.is-visible .products li.product:nth-child(2) { animation-delay: 0.18s; }
.ar-featured.is-visible .products li.product:nth-child(3) { animation-delay: 0.26s; }
.ar-featured.is-visible .products li.product:nth-child(4) { animation-delay: 0.34s; }

/* ── Quote (enhanced) ────────────────────────────────────────── */
.ar-quote blockquote p {
	opacity: 0;
	transform: translateY(12px);
	transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
}

.ar-quote.is-visible blockquote p {
	opacity: 1;
	transform: translateY(0);
}

.ar-quote-frame {
	transition: opacity 1s ease 0.3s;
	opacity: 0;
	border-color: rgba(184, 190, 200, 0.35);
}

.ar-quote.is-visible .ar-quote-frame {
	opacity: 1;
}

/* ── CTA band (subtle neutral glow) ──────────────────────────── */
.ar-cta-band {
	position: relative;
	overflow: hidden;
}

.ar-cta-band-bg {
	position: absolute;
	inset: 0;
	background-image: linear-gradient(to bottom, rgba(18, 21, 28, 0.4) 0%, rgba(18, 21, 28, 0.7) 100%), url('../images/banner-new.jpeg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	pointer-events: none;
}

.ar-cta-band-inner {
	position: relative;
	z-index: 1;
}

.ar-btn--glow {
	position: relative;
	overflow: hidden;
}

.ar-btn--glow::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.2), transparent);
	transform: translateX(-100%);
	transition: transform 0.5s ease;
}

.ar-btn--glow:hover::after {
	transform: translateX(100%);
}

/* ── Button polish ───────────────────────────────────────────── */
.ar-btn {
	transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.ar-btn--primary:hover {
	box-shadow: 0 8px 24px rgba(28, 32, 48, 0.12);
	transform: translateY(-1px);
}

.ar-btn--ghost:hover {
	transform: translateY(-1px);
}

/* ── Keyframes ───────────────────────────────────────────────── */
@keyframes arFadeUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes arOrbDrift {
	from { transform: translate(0, 0) scale(1); }
	to { transform: translate(24px, -16px) scale(1.08); }
}

@keyframes arWatermarkPulse {
	0%, 100% { opacity: 0.06; }
	50% { opacity: 0.1; }
}

@keyframes arBracketIn {
	from { opacity: 0; transform: scale(0.92); }
	to { opacity: 1; transform: scale(1); }
}

@keyframes arFrameIn {
	from { opacity: 0; }
	to { opacity: 1; }
}

@keyframes arScrollPulse {
	0%, 100% { opacity: 0.35; transform: scaleY(0.85); }
	50% { opacity: 1; transform: scaleY(1); }
}

@keyframes arCtaShift {
	from { transform: scale(1) translateX(0); }
	to { transform: scale(1.04) translateX(2%); }
}

/* ════════════════════════════════════════════════════════════════
   Printify-style layout — AbstractRealmss white cinematic skin
   ════════════════════════════════════════════════════════════════ */

.ar-pfy-hero {
	min-height: clamp(480px, 72vh, 680px);
	padding-bottom: 64px;
}

.ar-pfy-hero-inner {
	max-width: 760px;
}

.ar-pfy-checklist {
	list-style: none;
	margin: 0 0 2rem;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px 28px;
}

.ar-pfy-checklist li {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 15px;
	font-weight: 500;
	color: var(--ar-twilight);
}

.ar-pfy-check {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: var(--ar-surface);
	border: 1px solid var(--ar-platinum-glow);
	color: var(--ar-azure);
	font-size: 11px;
	font-weight: 700;
	flex-shrink: 0;
}

.ar-pfy-hero-note {
	margin: 1rem 0 0;
	font-size: 13px;
	color: var(--ar-mist);
}

.ar-pfy-trust-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 10px 14px;
	margin-top: 2rem;
	padding-top: 1.5rem;
	border-top: 1px solid var(--ar-platinum-glow);
}

.ar-pfy-stars {
	color: var(--ar-alert);
	font-size: 14px;
	letter-spacing: 2px;
}

.ar-pfy-trust-text {
	font-size: 13px;
	font-weight: 600;
	color: var(--ar-threshold-grey);
}

/* Category carousel strip */
.ar-pfy-strip {
	background: var(--ar-surface);
	border-top: 1px solid var(--ar-platinum-glow);
	border-bottom: 1px solid var(--ar-platinum-glow);
	padding: 20px 0;
	position: relative;
}

.ar-pfy-strip::before {
	content: "";
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: min(80px, 20vw);
	height: 2px;
	background: var(--ar-accent-strip);
}

.ar-pfy-strip-inner {
	max-width: var(--ar-max-width);
	margin: 0 auto;
	padding: 0 16px;
	width: 100%;
	box-sizing: border-box;
}

.ar-pfy-carousel-wrap {
	display: flex;
	align-items: center;
	gap: 8px;
	width: 100%;
	max-width: 100%;
	min-width: 0;
	height: 42px; /* Restrict height so container remains slim */
}

.ar-pfy-carousel {
	display: flex;
	gap: 10px;
	overflow-x: auto;
	scroll-behavior: smooth;
	scrollbar-width: none;
	padding: 56px 4px;
	margin: -56px 0;
	flex: 1;
	min-width: 0;
	max-width: 100%;
	-webkit-overflow-scrolling: touch;
	box-sizing: content-box !important;
	height: 40px; /* Content height matches pill height */
}

.ar-pfy-carousel::-webkit-scrollbar {
	display: none;
}

.ar-pfy-cat-pill {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	padding: 12px 22px;
	border-radius: 999px;
	background: var(--ar-ether);
	border: 1px solid var(--ar-platinum-glow);
	font-size: 14px;
	font-weight: 600;
	color: var(--ar-midnight);
	transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.ar-pfy-cat-pill:hover {
	border-color: var(--ar-silver);
	box-shadow: var(--ar-shadow);
	transform: translateY(-1px);
	color: var(--ar-midnight);
}

.ar-pfy-cat-pill--occasion {
	border-left: 2.5px solid var(--ar-azure);
}

.ar-pfy-cat-pill--diwali {
	border-left-color: #d97706; /* Saffron gold */
	background-color: rgba(217, 119, 6, 0.04);
}
.ar-pfy-cat-pill--diwali:hover {
	background-color: rgba(217, 119, 6, 0.08);
}

.ar-pfy-cat-pill--birthday {
	border-left-color: #10b981; /* Celebration green */
	background-color: rgba(16, 185, 129, 0.04);
}
.ar-pfy-cat-pill--birthday:hover {
	background-color: rgba(16, 185, 129, 0.08);
}

.ar-pfy-cat-pill--anniversary {
	border-left-color: #d946ef; /* Romantic magenta */
	background-color: rgba(217, 70, 239, 0.04);
}
.ar-pfy-cat-pill--anniversary:hover {
	background-color: rgba(217, 70, 239, 0.08);
}

.ar-pfy-cat-pill--valentines-day {
	border-left-color: #ef4444; /* Love red */
	background-color: rgba(239, 68, 68, 0.04);
}
.ar-pfy-cat-pill--valentines-day:hover {
	background-color: rgba(239, 68, 68, 0.08);
}

.ar-pfy-cat-pill--customizable {
	border-left-color: #2563eb; /* Creative royal blue */
	background-color: rgba(37, 99, 235, 0.04);
}
.ar-pfy-cat-pill--customizable:hover {
	background-color: rgba(37, 99, 235, 0.08);
}

.ar-pfy-cat-pill--best-dad {
	border-left-color: #4f46e5; /* Indigo */
	background-color: rgba(79, 70, 229, 0.04);
}
.ar-pfy-cat-pill--best-dad:hover {
	background-color: rgba(79, 70, 229, 0.08);
}

.ar-pfy-cat-pill--best-mom {
	border-left-color: #ec4899; /* Soft pink */
	background-color: rgba(236, 72, 153, 0.04);
}
.ar-pfy-cat-pill--best-mom:hover {
	background-color: rgba(236, 72, 153, 0.08);
}

/* Floating category icons on hover */
.ar-pfy-cat-pill--occasion {
	position: relative;
}

.ar-floating-icon {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(0.5);
	font-size: 13px;
	pointer-events: none;
	opacity: 0;
	z-index: 10;
	transition: opacity 0.2s ease;
}

.ar-pfy-cat-pill:hover .ar-floating-icon--1 {
	animation: ar-float-icon-1 1.4s cubic-bezier(0.25, 1, 0.5, 1) infinite;
}

.ar-pfy-cat-pill:hover .ar-floating-icon--2 {
	animation: ar-float-icon-2 1.4s cubic-bezier(0.25, 1, 0.5, 1) infinite;
	animation-delay: 0.25s;
}

.ar-pfy-cat-pill:hover .ar-floating-icon--3 {
	animation: ar-float-icon-3 1.4s cubic-bezier(0.25, 1, 0.5, 1) infinite;
	animation-delay: 0.5s;
}

@keyframes ar-float-icon-1 {
	0% {
		opacity: 0;
		transform: translate(-50%, -50%) scale(0.5) rotate(0deg);
	}
	20% {
		opacity: 1;
	}
	80% {
		opacity: 0.85;
	}
	100% {
		opacity: 0;
		transform: translate(-42px, -46px) scale(1.15) rotate(-25deg);
	}
}

@keyframes ar-float-icon-2 {
	0% {
		opacity: 0;
		transform: translate(-50%, -50%) scale(0.5) rotate(0deg);
	}
	20% {
		opacity: 1;
	}
	80% {
		opacity: 0.85;
	}
	100% {
		opacity: 0;
		transform: translate(32px, -40px) scale(1.15) rotate(25deg);
	}
}

@keyframes ar-float-icon-3 {
	0% {
		opacity: 0;
		transform: translate(-50%, -50%) scale(0.5) rotate(0deg);
	}
	20% {
		opacity: 1;
	}
	80% {
		opacity: 0.85;
	}
	100% {
		opacity: 0;
		transform: translate(-6px, -52px) scale(1.15) rotate(-5deg);
	}
}

.ar-pfy-carousel-btn {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 1px solid var(--ar-platinum-glow);
	background: var(--ar-surface);
	color: var(--ar-threshold-grey);
	cursor: pointer;
	transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.ar-pfy-carousel-btn:hover {
	border-color: var(--ar-silver);
	color: var(--ar-midnight);
	background: var(--ar-ether);
}

/* Centered section headers */
.ar-section-header--center {
	text-align: center;
	max-width: 640px;
	margin-left: auto;
	margin-right: auto;
}

.ar-silver-line--center {
	margin-left: auto;
	margin-right: auto;
}

.ar-pfy-section-lead {
	margin: 0.75rem 0 0;
	font-size: 16px;
	line-height: 1.65;
	color: var(--ar-threshold-grey);
}

/* Showcase / product tabs */
.ar-pfy-showcase {
	padding-top: 64px;
}

.ar-pfy-tabs {
	display: flex;
	flex-wrap: nowrap;
	gap: 8px;
	overflow-x: auto;
	scrollbar-width: none;
	margin-bottom: 2rem;
	padding-bottom: 4px;
	justify-content: flex-start;
	width: 100%;
	max-width: 100%;
	min-width: 0;
}

@media (min-width: 768px) {
	.ar-pfy-tabs {
		justify-content: center;
		flex-wrap: wrap;
		overflow-x: visible;
	}
}

.ar-pfy-tabs::-webkit-scrollbar {
	display: none;
}

.ar-pfy-tab {
	flex-shrink: 0;
	padding: 10px 18px;
	border-radius: 999px;
	font-size: 13px;
	font-weight: 600;
	color: var(--ar-threshold-grey);
	border: 1px solid transparent;
	background: transparent;
	transition: color 0.2s, background 0.2s, border-color 0.2s;
}

.ar-pfy-tab:hover,
.ar-pfy-tab.is-active {
	color: var(--ar-midnight);
	background: var(--ar-surface);
	border-color: var(--ar-platinum-glow);
}

.ar-pfy-tab.is-active {
	border-left: 2px solid var(--ar-azure);
}

.ar-pfy-product-grid .products {
	margin-top: 0;
}

.ar-pfy-showcase-cta {
	text-align: center;
	margin-top: 2.5rem;
}

/* Inspiration cards */
.ar-pfy-inspire-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 20px;
}

.ar-pfy-inspire-card {
	display: flex;
	flex-direction: column;
	background: var(--ar-surface);
	border: 1px solid var(--ar-platinum-glow);
	border-radius: var(--ar-radius);
	overflow: hidden;
	color: inherit;
	transition: transform 0.3s, box-shadow 0.3s;
}

.ar-pfy-inspire-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--ar-shadow);
	color: inherit;
}

.ar-pfy-inspire-visual {
	position: relative;
	height: 140px;
	background: linear-gradient(145deg, var(--ar-ether), var(--ar-platinum-glow));
	display: flex;
	align-items: flex-end;
	justify-content: flex-end;
	padding: 16px;
}

.ar-pfy-inspire-card--self .ar-pfy-inspire-visual::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: var(--ar-accent-strip);
}

.ar-pfy-inspire-numeral {
	font-family: var(--ar-font-display);
	font-size: 3rem;
	font-weight: 500;
	color: rgba(184, 190, 200, 0.55);
	line-height: 1;
}

.ar-pfy-inspire-body {
	padding: 22px 24px 26px;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.ar-pfy-inspire-title {
	font-family: var(--ar-font-display);
	font-size: 1.35rem;
	font-weight: 500;
	color: var(--ar-midnight);
	margin: 0 0 0.5rem;
}

.ar-pfy-inspire-desc {
	font-size: 14px;
	line-height: 1.6;
	color: var(--ar-threshold-grey);
	margin: 0 0 1rem;
	flex: 1;
}

.ar-pfy-inspire-link {
	font-size: 13px;
	font-weight: 600;
	color: var(--ar-azure);
}

/* Gift builder */
.ar-pfy-builder {
	background: var(--ar-ether);
	max-width: none;
	border-top: 1px solid var(--ar-platinum-glow);
	border-bottom: 1px solid var(--ar-platinum-glow);
}

.ar-pfy-builder-grid {
	max-width: var(--ar-max-width);
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
}

@media (min-width: 900px) {
	.ar-pfy-builder-grid {
		grid-template-columns: 1.1fr 0.9fr;
		align-items: stretch;
	}
}

.ar-pfy-builder-panel {
	background: var(--ar-surface);
	border: 1px solid var(--ar-platinum-glow);
	border-radius: var(--ar-radius);
	padding: 28px 24px;
}

.ar-pfy-builder-panel--result {
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.ar-pfy-builder-panel--result::before {
	content: "";
	position: absolute;
	top: 0;
	left: 24px;
	right: 24px;
	height: 2px;
	background: var(--ar-accent-strip);
}

.ar-pfy-builder-field {
	margin-bottom: 1.5rem;
	border: none;
	padding: 0;
}

.ar-pfy-builder-field legend {
	font-family: var(--ar-font-body);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--ar-threshold-grey);
	margin-bottom: 12px;
}

.ar-pfy-builder-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.ar-pfy-builder-pill {
	cursor: pointer;
}

.ar-pfy-builder-pill input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.ar-pfy-builder-pill span {
	display: inline-block;
	padding: 10px 16px;
	border-radius: 999px;
	border: 1px solid var(--ar-platinum-glow);
	font-size: 13px;
	font-weight: 600;
	color: var(--ar-twilight);
	background: var(--ar-ether);
	transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.ar-pfy-builder-pill input:checked + span {
	border-color: var(--ar-midnight);
	background: var(--ar-midnight);
	color: var(--ar-ether);
}

.ar-pfy-builder-toggle {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin-bottom: 12px;
	font-size: 14px;
	color: var(--ar-twilight);
	cursor: pointer;
}

.ar-pfy-builder-toggle em {
	font-style: normal;
	color: var(--ar-mist);
	font-size: 12px;
}

.ar-pfy-builder-label {
	margin: 0 0 0.25rem;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--ar-threshold-grey);
}

.ar-pfy-builder-price {
	margin: 0 0 0.75rem;
	font-family: var(--ar-font-display);
	font-size: clamp(2.5rem, 5vw, 3.5rem);
	font-weight: 500;
	color: var(--ar-midnight);
	line-height: 1;
}

.ar-pfy-builder-note {
	margin: 0 0 1.5rem;
	font-size: 12px;
	line-height: 1.55;
	color: var(--ar-mist);
}

/* Testimonial */
.ar-pfy-testimonial {
	background: var(--ar-platinum-glow);
	padding: 72px 24px;
}

.ar-pfy-testimonial-inner {
	max-width: var(--ar-max-width);
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr;
	gap: 32px;
	align-items: center;
}

@media (min-width: 900px) {
	.ar-pfy-testimonial-inner {
		grid-template-columns: 1.4fr 0.8fr;
	}
}

.ar-pfy-testimonial-quote blockquote {
	margin: 0;
}

.ar-pfy-testimonial-quote p {
	font-family: var(--ar-font-display);
	font-size: clamp(1.35rem, 2.5vw, 1.85rem);
	font-style: italic;
	line-height: 1.4;
	color: var(--ar-midnight);
	margin: 0;
}

.ar-pfy-testimonial-quote cite {
	display: block;
	margin-top: 1rem;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--ar-threshold-grey);
}

.ar-pfy-quote-mark {
	font-family: var(--ar-font-display);
	font-size: 4rem;
	line-height: 0.5;
	color: var(--ar-azure);
	opacity: 0.35;
	display: block;
	margin-bottom: 0.5rem;
}

.ar-pfy-testimonial-highlight {
	font-size: 15px;
	line-height: 1.65;
	color: var(--ar-twilight);
	margin: 0.5rem 0 0;
}

/* Feature grid */
.ar-pfy-feature-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 20px;
}

.ar-pfy-feature-card {
	padding: 28px 24px;
	background: var(--ar-surface);
	border: 1px solid var(--ar-platinum-glow);
	border-radius: var(--ar-radius);
	transition: box-shadow 0.25s, transform 0.25s;
}

.ar-pfy-feature-card:hover {
	box-shadow: var(--ar-shadow);
	transform: translateY(-2px);
}

.ar-pfy-feature-icon {
	width: 44px;
	height: 44px;
	border-radius: var(--ar-radius-sm);
	background: var(--ar-ether);
	border: 1px solid var(--ar-platinum-glow);
	margin-bottom: 1rem;
	position: relative;
}

.ar-pfy-feature-icon::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: var(--ar-accent-strip);
	border-radius: 0 0 var(--ar-radius-sm) var(--ar-radius-sm);
}

.ar-pfy-feature-title {
	font-family: var(--ar-font-display);
	font-size: 1.2rem;
	font-weight: 500;
	color: var(--ar-midnight);
	margin: 0 0 0.5rem;
}

.ar-pfy-feature-desc {
	font-size: 14px;
	line-height: 1.6;
	color: var(--ar-threshold-grey);
	margin: 0;
}

/* Stats band */
.ar-pfy-stats {
	background: var(--ar-surface);
	border-top: 1px solid var(--ar-platinum-glow);
	border-bottom: 1px solid var(--ar-platinum-glow);
	padding: 48px 24px;
}

.ar-pfy-stats-inner {
	max-width: var(--ar-max-width);
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px 16px;
}

@media (min-width: 768px) {
	.ar-pfy-stats-inner {
		grid-template-columns: repeat(4, 1fr);
	}
}

.ar-pfy-stat {
	text-align: center;
	padding: 12px 8px;
}

.ar-pfy-stat-value {
	display: block;
	font-family: var(--ar-font-display);
	font-size: clamp(2rem, 4vw, 2.75rem);
	font-weight: 500;
	color: var(--ar-midnight);
	line-height: 1.1;
}

.ar-pfy-stat-label {
	display: block;
	margin-top: 0.35rem;
	font-size: 12px;
	font-weight: 600;
	color: var(--ar-threshold-grey);
	letter-spacing: 0.04em;
}

/* How-it-works steps */
.ar-pfy-steps-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 20px;
}

.ar-pfy-step-card {
	padding: 28px 24px;
	background: var(--ar-surface);
	border: 1px solid var(--ar-platinum-glow);
	border-radius: var(--ar-radius);
	position: relative;
}

.ar-pfy-step-num {
	font-family: var(--ar-font-display);
	font-size: 2rem;
	font-weight: 500;
	color: var(--ar-silver);
	line-height: 1;
	display: block;
	margin-bottom: 0.75rem;
}

.ar-pfy-step-title {
	font-family: var(--ar-font-display);
	font-size: 1.25rem;
	font-weight: 500;
	color: var(--ar-midnight);
	margin: 0 0 0.5rem;
}

.ar-pfy-step-desc {
	font-size: 14px;
	line-height: 1.6;
	color: var(--ar-threshold-grey);
	margin: 0;
}

/* Final CTA */
.ar-pfy-final-cta .ar-cta-band-inner {
	max-width: 640px;
}

.ar-pfy-final-cta .ar-cta-title {
	color: #FAFAF8;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.ar-pfy-final-cta .ar-cta-text {
	color: #E2E8F0;
	text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.ar-pfy-final-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: center;
}

.ar-pfy-final-actions .ar-btn--ghost {
	background: var(--ar-surface);
}

@media (max-width: 960px) {
	.ar-pfy-carousel-btn {
		display: none;
	}

	.ar-pfy-checklist {
		flex-direction: column;
		align-items: center;
		gap: 12px;
	}
}
