/* ===========================
   PRICING — Narrative + Motion
   =========================== */

:root
{
	/* page surfaces */
	--pricing-bg: #2f3032;
	/* your current vibe */
	--pricing-surface: rgba(10, 18, 28, 0.72);
	--pricing-surface-2: rgba(10, 18, 28, 0.58);
	--pricing-border: rgba(255, 255, 255, 0.14);
	--pricing-border-strong: rgba(255, 255, 255, 0.22);

	/* text */
	--pricing-text: rgba(255, 255, 255, 0.92);
	--pricing-muted: rgba(255, 255, 255, 0.72);

	/* effects */
	--soft-shadow: 0 18px 60px rgba(0, 0, 0, 0.45);
	--soft-shadow-2: 0 26px 80px rgba(0, 0, 0, 0.55);
	--radius-lg: 22px;
	--radius-md: 16px;

	/* spacing rhythm */
	--tier-pad-y: clamp(3rem, 5vw, 5.5rem);
	--content-max: 1100px;
}

/* Page background + rhythm */
#packaging-body
{
	background:
		radial-gradient(900px 600px at 20% 10%, rgba(255, 255, 255, 0.08), transparent 60%),
		radial-gradient(900px 600px at 80% 30%, rgba(120, 180, 255, 0.08), transparent 60%),
		radial-gradient(800px 600px at 30% 90%, rgba(255, 170, 120, 0.06), transparent 60%),
		var(--pricing-bg);
	color: var(--pricing-text);
}

/* Centered content wrapper feel */
.pricing-hero,
.pricing-includes,
.tier-section,
.pricing-compare
{
	width: min(var(--content-max), calc(100% - 2.2rem));
	margin: 0 auto;
}

/* HERO */
.pricing-hero
{
	padding-top: clamp(5.5rem, 8vw, 7.5rem);
	/* clears fixed topbar */
	padding-bottom: 2.2rem;
	text-align: center;
}

#packageh1
{
	font-family: var(--header-font);
	font-size: clamp(2.2rem, 4vw, 3.2rem);
	line-height: 1.15;
	margin: 0 0 0.9rem 0;
	letter-spacing: 0.3px;
}

.pricing-subtitle
{
	max-width: 70ch;
	margin: 0 auto;
	font-size: 1.6rem;
	line-height: 1.55;
	color: var(--pricing-muted);
}

/* CTA chips (make them feel premium + readable) */
.pricing-hero-cta
{
	margin-top: 1.6rem;
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem;
	justify-content: center;
}

.cta-chip
{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.55rem 0.95rem;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.22);
	background: rgba(0, 0, 0, 0.22);
	color: rgba(255, 255, 255, 0.88);
	text-decoration: none;
	font-size: 1.35rem;
	-webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
	transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.cta-chip:hover
{
	transform: translateY(-2px);
	background: rgba(255, 255, 255, 0.10);
	border-color: rgba(255, 255, 255, 0.32);
}

/* INCLUDED section as a “calm block” */
.pricing-includes
{
	margin-top: 1.4rem;
	padding: 1.25rem 1.3rem;
	border-radius: var(--radius-md);
	border: 1px solid var(--pricing-border);
	background: rgba(0, 0, 0, 0.18);
	-webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
}

.includes-title
{
	margin: 0 0 0.75rem 0;
	font-family: var(--header-font);
	font-size: 1.8rem;
	text-align: left;
}

.includes-list
{
	margin: 0;
	padding-left: 1.2rem;
	color: rgba(255, 255, 255, 0.80);
	line-height: 1.6;
	font-size: 1.4rem;
}

/* Tier sections = narrative “chapters” */
.tier-section
{
	padding: var(--tier-pad-y) 0;
	position: relative;
}

.tier-header
{
	text-align: left;
	padding: 0 0 1.2rem 0;
}

.tier-pill
{
	display: inline-block;
	padding: 0.35rem 0.65rem;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.22);
	background: rgba(255, 255, 255, 0.08);
	font-size: 1.35rem;
	color: rgba(255, 255, 255, 0.86);
}

.tier-title
{
	margin: 0.65rem 0 0.35rem 0;
	font-family: var(--header-font);
	font-size: 2.1rem;
	text-align: left;
}

.tier-desc
{
	margin: 0;
	color: var(--pricing-muted);
	max-width: 70ch;
	line-height: 1.55;
	font-size: 1.6rem;
}

/* Divider that breaks up the “static feel” */
.tier-divider
{
	margin-top: 1.35rem;
	height: 1px;
	background: linear-gradient(90deg,
			transparent,
			rgba(255, 255, 255, 0.18),
			transparent);
}

/* Grid: reduce the “giant empty middle” */
.pricing-grid
{
	margin-top: 1.8rem;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.4rem;
	align-items: stretch;
}

/* On smaller screens: stacked cards */
@media (max-width: 900px)
{
	.pricing-grid
	{
		grid-template-columns: 1fr;
	}
}

/* Card design: consistent height without forcing huge emptiness */
.pricing-card
{
	border-radius: var(--radius-lg);
	border: 1px solid var(--pricing-border);
	background:
		radial-gradient(900px 450px at 20% 20%, rgba(255, 255, 255, 0.10), transparent 55%),
		var(--pricing-surface);
	box-shadow: var(--soft-shadow);
	padding: 1.6rem 1.6rem 1.4rem 1.6rem;

	display: flex;
	flex-direction: column;
	gap: 0.85rem;

	min-height: 340px;
	/* keeps it “card-like” without skyscrapers */
	transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.pricing-card:hover
{
	transform: translateY(-6px);
	box-shadow: var(--soft-shadow-2);
	border-color: var(--pricing-border-strong);
}

/* Featured card per tier */
.pricing-card.featured
{
	border-color: rgba(255, 255, 255, 0.28);
	background:
		radial-gradient(900px 450px at 15% 15%, rgba(255, 255, 255, 0.14), transparent 58%),
		var(--pricing-surface);
}

/* Typography inside */
.pricing-title
{
	margin: 0;
	font-family: var(--header-font);
	font-size: 1.8rem;
	text-align: left;
	letter-spacing: 0.2px;
}

.pricing-tagline
{
	margin: 0;
	color: rgba(255, 255, 255, 0.76);
	line-height: 1.5;
	font-size: 1.4rem;
}

.pricing-price
{
	margin: 0.25rem 0 0 0;
	font-weight: 700;
	letter-spacing: 0.2px;
	font-size: 1.4rem;
}

/* Lists */
.pricing-list
{
	margin: 0.35rem 0 0 0;
	padding-left: 1.1rem;
	color: rgba(255, 255, 255, 0.78);
	line-height: 1.6;
	font-size: 1.4rem;
}

/* Ideal line sits at the bottom, but not miles away */
.pricing-ideal
{
	margin-top: auto;
	padding-top: 0.85rem;
	color: rgba(255, 255, 255, 0.72);
	border-top: 1px solid rgba(255, 255, 255, 0.10);
	font-size: 1.4rem;
}

/* Optional: tint variants stay subtle (no neon carnival) */
.card-blue
{}

.card-green
{}

.card-cyan
{}

.card-purple
{}

.card-orange
{}

.card-gold
{}

.card-magenta
{}

.card-ice
{}


.reveal
{
	opacity: 0;
	transform: translateY(14px);
	filter: blur(6px);
	transition: opacity .55s ease, transform .55s ease, filter .55s ease;
}

.reveal.is-visible
{
	opacity: 1;
	transform: translateY(0);
	filter: blur(0);
}

/* Compare panel: keep it, but style it like the rest */
.pricing-compare
{
	padding-bottom: 4rem;
}

.compare-toggle
{
	margin: 0 auto;
	display: block;
	padding: 0.8rem 1.1rem;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.22);
	background: rgba(0, 0, 0, 0.22);
	color: rgba(255, 255, 255, 0.9);
	cursor: pointer;
	-webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
	font-size: 1.35rem;
}

.compare-panel
{
	margin-top: 1.2rem;
	border-radius: var(--radius-md);
	border: 1px solid var(--pricing-border);
	background: rgba(0, 0, 0, 0.18);
	-webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
	padding: 1.2rem;
}

/* ===========================
   Compare table formatting
   =========================== */

.compare-title
{
	margin: 0 0 0.4rem 0;
	font-family: var(--header-font);
	font-size: 1.8rem;
}

.compare-intro
{
	margin: 0 0 1.1rem 0;
	color: var(--pricing-muted);
	font-size: 1.4rem;
	line-height: 1.55;
}

/* grid wrapper */
.compare-grid
{
	display: grid;
	gap: 0.8rem;
	font-size: 1.4rem;
	line-height: 1.55;
}

/* EACH ROW = 3 columns */
.compare-row
{
	display: grid;
	grid-template-columns: 190px 260px 1fr;
	gap: 1.25rem;
	align-items: start;
}

/* header row */
.compare-header
{
	padding-bottom: 0.8rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.10);
	font-weight: 700;
	color: rgba(255, 255, 255, 0.92);
}

/* body rows */
.compare-row:not(.compare-header)
{
	padding: 0.35rem 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.compare-row span:nth-child(1)
{
	font-weight: 700;
}

.compare-row span:nth-child(2),
.compare-row span:nth-child(3)
{
	color: rgba(255, 255, 255, 0.78);
}

/* mobile: stack */
@media (max-width: 760px)
{
	.compare-row
	{
		grid-template-columns: 1fr;
		gap: 0.25rem;
	}

	.compare-header
	{
		display: none;
	}
}