/*!
Theme Name: undressaiapp
Theme URI: https://undressaiapp.com
Author: undressaiapp
Author URI: https://undressaiapp.com
Description: SEO landing theme for undressaiapp.com — dark single-page conversion-focused landing.
Version: 1.0.0
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: undressaiapp
*/

/* ============================================================
   Tokens
   ============================================================ */
:root {
	--bg:           #0a0a0a;
	--bg-2:         #141414;
	--bg-3:         #1c1c1c;
	--border:       #2a2a2a;
	--text:         #ffffff;
	--text-muted:   #a0a0a0;
	--text-dim:     #6b6b6b;
	--accent:       #ec4899;
	--accent-2:     #a855f7;
	--accent-grad:  linear-gradient(135deg, #ec4899 0%, #a855f7 100%);
	--success:      #22c55e;
	--danger:       #ef4444;

	--radius-sm:    8px;
	--radius:       14px;
	--radius-lg:    20px;

	--container:    1200px;
	--container-narrow: 820px;

	--space-1:      4px;
	--space-2:      8px;
	--space-3:      12px;
	--space-4:      16px;
	--space-5:      24px;
	--space-6:      32px;
	--space-8:      48px;
	--space-10:     64px;
	--space-12:     96px;

	--font-sans:    'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

	--ease-out:     cubic-bezier(0.16, 1, 0.3, 1);
	--shadow-glow:  0 0 40px rgba(236, 72, 153, 0.25);
}

/* ============================================================
   Reset
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html {
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
	scroll-padding-top: 80px;
}

body {
	background: var(--bg);
	color: var(--text);
	font-family: var(--font-sans);
	font-size: 16px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
}

img, picture, video, svg { display: block; max-width: 100%; height: auto; }
input, button, textarea, select { font: inherit; color: inherit; }
button { background: none; border: none; cursor: pointer; padding: 0; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--accent); }

h1, h2, h3, h4, h5, h6 {
	font-weight: 900;
	line-height: 1.15;
	letter-spacing: -0.02em;
}

table { border-collapse: collapse; width: 100%; }

.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	-webkit-clip-path: inset(50%);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
}

.skip-link {
	position: absolute;
	top: -100px;
	left: 0;
	background: var(--accent);
	color: #fff;
	padding: 12px 20px;
	z-index: 999;
}
.skip-link:focus { top: 0; }

/* ============================================================
   Layout primitives
   ============================================================ */
.container {
	width: 100%;
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 var(--space-5);
}
.container--narrow {
	max-width: var(--container-narrow);
}

.section {
	padding: var(--space-12) 0;
	position: relative;
}
@media (max-width: 768px) {
	.section { padding: var(--space-10) 0; }
}

.section__h2 {
	font-size: clamp(2rem, 5vw, 3rem);
	font-weight: 900;
	margin-bottom: var(--space-6);
}
.section__h2--center { text-align: center; }
.section__h2--xl { font-size: clamp(2.5rem, 6vw, 3.75rem); }
.section__h2--accent {
	border-left: 4px solid var(--accent);
	padding-left: var(--space-4);
	margin-bottom: var(--space-8);
}

.section__lede {
	font-size: 1.125rem;
	color: var(--text-muted);
	margin-bottom: var(--space-5);
}
.section__lede--center { text-align: center; max-width: 700px; margin-left: auto; margin-right: auto; }
.section__body {
	font-size: 1.0625rem;
	color: var(--text-muted);
	margin-bottom: var(--space-4);
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 14px 28px;
	border-radius: 999px;
	font-weight: 800;
	font-size: 0.9375rem;
	letter-spacing: -0.01em;
	transition: transform 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out);
	border: 1px solid transparent;
	white-space: nowrap;
	cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary {
	background: var(--accent-grad);
	color: #fff;
	box-shadow: 0 8px 24px rgba(236, 72, 153, 0.35);
}
.btn--primary:hover {
	color: #fff;
	box-shadow: 0 12px 32px rgba(236, 72, 153, 0.5);
}
.btn--ghost {
	background: transparent;
	color: var(--text);
	border-color: var(--border);
}
.btn--ghost:hover {
	background: var(--bg-2);
	color: var(--text);
	border-color: var(--accent);
}
.btn--lg { padding: 18px 36px; font-size: 1rem; }
.btn--xl { padding: 22px 44px; font-size: 1.125rem; }
.btn--block { display: flex; width: 100%; }

/* ============================================================
   Header
   ============================================================ */
.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(10, 10, 10, 0.85);
	backdrop-filter: saturate(180%) blur(12px);
	-webkit-backdrop-filter: saturate(180%) blur(12px);
	border-bottom: 1px solid var(--border);
}
.site-header__inner {
	display: flex;
	align-items: center;
	gap: var(--space-6);
	min-height: 72px;
}

.site-logo {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-weight: 900;
	letter-spacing: -0.02em;
	font-size: 1.25rem;
	line-height: 1;
	color: var(--text);
}
.site-logo:hover { color: var(--text); }
.site-logo__word { color: var(--text); }
.site-logo__highlight {
	display: inline-flex;
	align-items: center;
	padding: 4px 10px;
	border-radius: 8px;
	background: linear-gradient(135deg, rgba(236, 72, 153, 0.18), rgba(168, 85, 247, 0.22));
	border: 1px solid rgba(236, 72, 153, 0.55);
	color: var(--accent);
	font-weight: 900;
	letter-spacing: -0.01em;
	line-height: 1;
}
.site-logo:hover .site-logo__highlight {
	background: linear-gradient(135deg, rgba(236, 72, 153, 0.3), rgba(168, 85, 247, 0.35));
	border-color: var(--accent);
}

/* Footer logo can be slightly bigger for brand presence */
.site-footer .site-logo { font-size: 1.375rem; }

.site-nav { margin-left: auto; }
.site-nav__list {
	display: flex;
	gap: var(--space-5);
	list-style: none;
	padding: 0;
	margin: 0;
}
.site-nav__list a {
	color: var(--text-muted);
	font-size: 0.9375rem;
	font-weight: 600;
	transition: color 0.15s;
}
.site-nav__list a:hover { color: var(--text); }

.site-header__cta { margin-left: var(--space-4); }

.nav-toggle {
	display: none;
	width: 40px;
	height: 40px;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	margin-left: auto;
}
.nav-toggle span {
	display: block;
	width: 22px;
	height: 2px;
	background: var(--text);
	transition: transform 0.2s, opacity 0.2s;
}

@media (max-width: 960px) {
	.site-nav { display: none; }
	.site-header__cta { margin-left: auto; }
	.nav-toggle { display: flex; }

	body.nav-open .site-nav {
		display: block;
		position: fixed;
		inset: 72px 0 0 0;
		background: var(--bg);
		padding: var(--space-6);
		z-index: 99;
	}
	body.nav-open .site-nav__list {
		flex-direction: column;
		gap: var(--space-4);
	}
	body.nav-open .site-nav__list a { font-size: 1.25rem; color: var(--text); }
}

/* ============================================================
   Hero
   ============================================================ */
.section--hero {
	padding-top: var(--space-12);
	padding-bottom: var(--space-12);
	background: radial-gradient(ellipse at top, rgba(168, 85, 247, 0.12), transparent 60%);
	text-align: center;
}
.hero__eyebrow {
	display: inline-block;
	padding: 6px 14px;
	border-radius: 999px;
	background: var(--bg-2);
	border: 1px solid var(--border);
	color: var(--text-muted);
	font-size: 0.8125rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	margin-bottom: var(--space-5);
}
.hero__h1 {
	font-size: clamp(2.25rem, 6vw, 4.25rem);
	font-weight: 900;
	letter-spacing: -0.03em;
	max-width: 900px;
	margin: 0 auto var(--space-5);
	background: linear-gradient(180deg, #fff 0%, #c0c0c0 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}
.hero__subhead {
	font-size: clamp(1rem, 1.5vw, 1.25rem);
	color: var(--text-muted);
	max-width: 720px;
	margin: 0 auto var(--space-8);
}
.hero__actions {
	display: flex;
	gap: var(--space-3);
	justify-content: center;
	flex-wrap: wrap;
	margin-bottom: var(--space-8);
}
.hero__trust {
	display: flex;
	gap: var(--space-6);
	justify-content: center;
	flex-wrap: wrap;
	list-style: none;
	padding: 0;
	margin: 0;
}
.hero__trust li {
	color: var(--text-muted);
	font-size: 0.875rem;
	font-weight: 600;
	position: relative;
	padding-left: 22px;
}
.hero__trust li::before {
	content: '';
	position: absolute;
	left: 0; top: 50%;
	transform: translateY(-50%);
	width: 14px; height: 14px;
	border-radius: 50%;
	background: var(--accent-grad);
}

.hero__stats {
	margin: var(--space-8) auto 0;
	max-width: 720px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--space-4);
	list-style: none;
	padding: 0;
}
@media (max-width: 540px) {
	.hero__stats { grid-template-columns: 1fr; max-width: 320px; }
}
.hero-stat {
	background: var(--bg-2);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: var(--space-4) var(--space-3);
	text-align: center;
}
.hero-stat__num {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 1.75rem;
	font-weight: 900;
	letter-spacing: -0.02em;
	background: var(--accent-grad);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	line-height: 1;
	margin-bottom: var(--space-2);
}
.hero-stat__star {
	width: 22px; height: 22px;
	color: var(--accent);
	-webkit-text-fill-color: var(--accent);
	fill: var(--accent);
	stroke: var(--accent);
}
.hero-stat__label {
	display: block;
	color: var(--text-muted);
	font-size: 0.8125rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

/* ============================================================
   What is — long-form
   ============================================================ */
.section--what-is { background: var(--bg-2); }

/* ============================================================
   How it works — steps
   ============================================================ */
.steps {
	list-style: none;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: var(--space-6);
	margin-top: var(--space-8);
}
.steps__item {
	background: var(--bg-2);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: var(--space-6);
	position: relative;
}
.steps__num {
	font-size: 2.5rem;
	font-weight: 900;
	background: var(--accent-grad);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	line-height: 1;
	margin-bottom: var(--space-4);
}
.steps__title { font-size: 1.25rem; margin-bottom: var(--space-3); }
.steps__body { color: var(--text-muted); font-size: 0.9375rem; }

/* ============================================================
   Features grid
   ============================================================ */
.feature-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: var(--space-5);
	margin-top: var(--space-8);
}
.feature-card {
	background: var(--bg-2);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: var(--space-6);
	transition: border-color 0.2s, transform 0.2s;
}
.feature-card:hover {
	border-color: var(--accent);
	transform: translateY(-3px);
}
.feature-card__icon {
	display: inline-grid;
	place-items: center;
	width: 48px;
	height: 48px;
	border-radius: 12px;
	background: linear-gradient(135deg, rgba(236, 72, 153, 0.15), rgba(168, 85, 247, 0.15));
	border: 1px solid rgba(236, 72, 153, 0.3);
	color: var(--accent);
	margin-bottom: var(--space-4);
}
.feature-card__icon .icon {
	width: 24px;
	height: 24px;
}
.feature-card__title {
	font-size: 1.125rem;
	margin-bottom: var(--space-3);
}
.feature-card__body { color: var(--text-muted); font-size: 0.9375rem; }

/* ============================================================
   Personas
   ============================================================ */
.section--personas { background: var(--bg-2); }
.persona-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: var(--space-5);
	margin-top: var(--space-6);
}
.persona-card {
	background: var(--bg);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: var(--space-5);
}
.persona-card__title { font-size: 1.0625rem; margin-bottom: var(--space-2); color: var(--accent); }
.persona-card__body  { color: var(--text-muted); font-size: 0.9375rem; }

/* ============================================================
   Pricing
   ============================================================ */
.pricing-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: var(--space-5);
	margin-top: var(--space-8);
	margin-bottom: var(--space-8);
}
.pricing-card {
	background: var(--bg-2);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: var(--space-8) var(--space-6);
	display: flex;
	flex-direction: column;
	position: relative;
}
.pricing-card--featured {
	border-color: var(--accent);
	background: linear-gradient(180deg, rgba(236, 72, 153, 0.08), var(--bg-2));
	box-shadow: var(--shadow-glow);
}
.pricing-card__badge {
	position: absolute;
	top: -12px; left: 50%;
	transform: translateX(-50%);
	background: var(--accent-grad);
	color: #fff;
	padding: 4px 14px;
	border-radius: 999px;
	font-size: 0.75rem;
	font-weight: 800;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}
.pricing-card__name { font-size: 1.25rem; margin-bottom: var(--space-3); }
.pricing-card__price { margin-bottom: var(--space-5); }
.pricing-card__amount {
	font-size: 2.5rem;
	font-weight: 900;
	letter-spacing: -0.03em;
}
.pricing-card__period { color: var(--text-muted); font-size: 0.875rem; margin-left: 6px; }
.pricing-card__features {
	list-style: none;
	padding: 0;
	margin: 0 0 var(--space-6);
	flex: 1;
}
.pricing-card__features li {
	padding: 8px 0 8px 24px;
	position: relative;
	font-size: 0.9375rem;
	color: var(--text-muted);
	border-bottom: 1px solid var(--border);
}
.pricing-card__features li:last-child { border-bottom: 0; }
.pricing-card__features li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: var(--accent);
	font-weight: 900;
}
.pricing__explainer {
	max-width: 720px;
	margin: var(--space-8) auto 0;
	text-align: center;
	background: var(--bg-2);
	border-left: 3px solid var(--accent);
	padding: var(--space-5);
	border-radius: var(--radius-sm);
}
.pricing__explainer h3 { font-size: 1.125rem; margin-bottom: var(--space-2); }
.pricing__explainer p  { color: var(--text-muted); font-size: 0.9375rem; }

/* Credit packs */
.credit-packs {
	margin-top: var(--space-10);
	padding-top: var(--space-8);
	border-top: 1px solid var(--border);
}
.credit-packs__title {
	font-size: clamp(1.5rem, 3vw, 2rem);
	text-align: center;
	margin-bottom: var(--space-3);
}
.credit-packs__lede {
	text-align: center;
	color: var(--text-muted);
	max-width: 640px;
	margin: 0 auto var(--space-6);
	font-size: 1.0625rem;
}
.credit-packs__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: var(--space-4);
}
.credit-pack {
	background: var(--bg-2);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: var(--space-5);
	display: flex;
	flex-direction: column;
	gap: var(--space-3);
	position: relative;
	transition: border-color 0.2s, transform 0.2s;
}
.credit-pack:hover { border-color: var(--accent); transform: translateY(-2px); }
.credit-pack--featured {
	border-color: var(--accent);
	box-shadow: var(--shadow-glow);
	background: linear-gradient(180deg, rgba(236, 72, 153, 0.06), var(--bg-2));
}
.credit-pack__bonus {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	align-self: flex-start;
	background: rgba(34, 197, 94, 0.15);
	color: var(--success);
	border-radius: 999px;
	padding: 4px 10px;
	font-weight: 800;
	font-size: 0.75rem;
	letter-spacing: 0.04em;
}
.credit-pack__price {
	font-size: 2rem;
	font-weight: 900;
	letter-spacing: -0.03em;
	line-height: 1;
}
.credit-pack__diamonds {
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.credit-pack__base {
	color: var(--text-dim);
	font-weight: 700;
	font-size: 0.875rem;
	text-decoration: line-through;
}
.credit-pack__amount {
	color: var(--accent);
	font-weight: 900;
	font-size: 1.5rem;
	letter-spacing: -0.02em;
}

/* Universal features */
.universal-features {
	margin-top: var(--space-10);
	padding-top: var(--space-8);
	border-top: 1px solid var(--border);
}
.universal-features__title {
	font-size: clamp(1.5rem, 3vw, 2rem);
	text-align: center;
	margin-bottom: var(--space-6);
}
.universal-features__list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: var(--space-3);
}
.universal-feature {
	display: flex;
	align-items: center;
	gap: var(--space-3);
	background: var(--bg-2);
	border: 1px solid var(--border);
	border-radius: var(--radius-sm);
	padding: var(--space-3) var(--space-4);
	font-weight: 700;
	font-size: 0.9375rem;
}
.universal-feature__icon {
	width: 32px;
	height: 32px;
	display: grid;
	place-items: center;
	background: var(--accent-grad);
	border-radius: 8px;
	font-size: 0.875rem;
	flex-shrink: 0;
}

/* ============================================================
   Results preview + gallery
   ============================================================ */
.section--results { background: var(--bg-2); }
.gallery-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: var(--space-4);
	margin: var(--space-8) 0 var(--space-6);
}
.gallery-tile {
	position: relative;
	border-radius: var(--radius);
	overflow: hidden;
	background: var(--bg-3);
	margin: 0;
}
.gallery-tile__media {
	position: relative;
	aspect-ratio: 9 / 16;
	overflow: hidden;
}
.gallery-tile__img {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	filter: blur(28px) brightness(0.7);
	transition: filter 0.4s var(--ease-out);
}
.gallery-tile__video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: blur(28px) brightness(0.7);
	transition: filter 0.4s var(--ease-out);
	background: var(--bg-3);
}
.gallery-tile.revealed .gallery-tile__img,
.gallery-tile.revealed .gallery-tile__video {
	filter: blur(0) brightness(1);
}
.gallery-tile__reveal {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 8px;
	color: #fff;
	font-weight: 800;
	font-size: 0.875rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	background: rgba(0, 0, 0, 0.35);
	backdrop-filter: blur(2px);
	transition: opacity 0.3s;
	z-index: 2;
}
.gallery-tile.revealed .gallery-tile__reveal { opacity: 0; pointer-events: none; }
.gallery-tile__play-icon {
	display: grid;
	place-items: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: var(--accent-grad);
	color: #fff;
	font-size: 1rem;
	padding-left: 3px;
	box-shadow: var(--shadow-glow);
}
.gallery-tile--video .gallery-tile__caption::before {
	content: 'VIDEO · ';
	color: var(--accent);
	font-weight: 900;
}
.gallery-tile__caption {
	padding: var(--space-3) var(--space-4);
	font-size: 0.8125rem;
	color: var(--text-muted);
	font-weight: 600;
}
.gallery-empty {
	background: var(--bg);
	border: 1px dashed var(--border);
	border-radius: var(--radius);
	padding: var(--space-8);
	text-align: center;
	color: var(--text-muted);
	margin: var(--space-8) 0;
}
.gallery-empty a { color: var(--accent); font-weight: 700; }
.results__cta-line { text-align: center; }

/* ============================================================
   Cross-device
   ============================================================ */
.device-list {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-3);
	list-style: none;
	padding: 0;
	margin: var(--space-6) 0 0;
}
.device-list li {
	background: var(--bg-2);
	border: 1px solid var(--border);
	padding: 8px 16px;
	border-radius: 999px;
	font-size: 0.875rem;
	font-weight: 700;
	color: var(--text-muted);
}

/* ============================================================
   Comparison table
   ============================================================ */
.section--comparison { background: var(--bg-2); }
.compare-table-wrap {
	overflow-x: auto;
	margin: var(--space-8) 0;
	border-radius: var(--radius);
	border: 1px solid var(--border);
}
.compare-table {
	min-width: 640px;
	border-collapse: collapse;
}
.compare-table th, .compare-table td {
	padding: var(--space-4);
	text-align: left;
	border-bottom: 1px solid var(--border);
	font-size: 0.9375rem;
}
.compare-table thead th {
	background: var(--bg-3);
	font-weight: 800;
	color: var(--text);
	font-size: 0.875rem;
	letter-spacing: 0.02em;
	text-transform: uppercase;
}
.compare-table tbody th {
	font-weight: 600;
	color: var(--text-muted);
}
.compare-table__us {
	background: rgba(236, 72, 153, 0.06);
	color: var(--text);
	font-weight: 800;
}
.compare-table td {
	font-weight: 600;
}
.compare-table .icon {
	display: inline-block;
	vertical-align: middle;
	width: 18px;
	height: 18px;
	margin-right: 6px;
}
.cmp-yes { color: var(--success); }
.cmp-no { color: var(--danger); }
.cmp-partial { color: #f59e0b; }
.cmp-label--yes { color: var(--success); font-weight: 800; }
.cmp-label--no { color: var(--text-dim); font-weight: 600; }
.cmp-label--partial { color: #f59e0b; font-weight: 700; }
.compare-narrative {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: var(--space-6);
	margin-top: var(--space-8);
}
.compare-narrative__item h3 { font-size: 1.125rem; margin-bottom: var(--space-3); color: var(--accent); }
.compare-narrative__item p  { color: var(--text-muted); }

/* ============================================================
   Testimonials
   ============================================================ */
.testimonial-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: var(--space-5);
	margin-top: var(--space-8);
}
.testimonial {
	background: var(--bg-2);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: var(--space-6);
	margin: 0;
}
.testimonial__rating {
	display: flex;
	gap: 2px;
	margin-bottom: var(--space-4);
}
.testimonial__star {
	width: 18px;
	height: 18px;
	color: var(--accent);
	fill: var(--accent);
}
.testimonial__quote p {
	font-size: 1.0625rem;
	font-weight: 600;
	line-height: 1.55;
	color: var(--text);
}
.testimonial__author {
	margin-top: var(--space-4);
	color: var(--text-muted);
	font-size: 0.8125rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}
.rating-summary {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--bg-2);
	border: 1px solid var(--border);
	border-radius: 999px;
	padding: 8px 18px;
	font-size: 0.9375rem;
	color: var(--text-muted);
}
.rating-summary__star {
	width: 16px;
	height: 16px;
	color: var(--accent);
	fill: var(--accent);
}
.rating-summary strong {
	color: var(--text);
	font-weight: 900;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-list {
	display: flex;
	flex-direction: column;
	gap: var(--space-3);
	margin-top: var(--space-8);
}
.faq-item {
	background: var(--bg-2);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	overflow: hidden;
}
.faq-item[open] { border-color: var(--accent); }
.faq-item__q {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: var(--space-4);
	padding: var(--space-5) var(--space-5);
	cursor: pointer;
	font-weight: 800;
	font-size: 1.0625rem;
	list-style: none;
}
.faq-item__q::-webkit-details-marker { display: none; }
.faq-item__chevron {
	font-size: 1.5rem;
	color: var(--accent);
	transition: transform 0.2s;
	font-weight: 400;
	line-height: 1;
}
.faq-item[open] .faq-item__chevron { transform: rotate(45deg); }
.faq-item__a {
	padding: 0 var(--space-5) var(--space-5);
	color: var(--text-muted);
	font-size: 0.9375rem;
	line-height: 1.65;
}

/* ============================================================
   Final CTA
   ============================================================ */
.section--final-cta {
	text-align: center;
	background: radial-gradient(ellipse at center, rgba(168, 85, 247, 0.18), transparent 60%);
}
.final-cta__eyebrow {
	display: inline-block;
	padding: 6px 14px;
	border-radius: 999px;
	background: rgba(236, 72, 153, 0.12);
	border: 1px solid rgba(236, 72, 153, 0.35);
	color: var(--accent);
	font-size: 0.8125rem;
	font-weight: 800;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	margin-bottom: var(--space-5);
}
.final-cta__actions {
	margin-top: var(--space-6);
	display: flex;
	justify-content: center;
}
.final-cta__trust {
	list-style: none;
	padding: 0;
	margin: var(--space-6) 0 0;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: var(--space-3);
	max-width: 720px;
	margin-left: auto;
	margin-right: auto;
}
.final-cta__trust li {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	justify-content: center;
	background: var(--bg-2);
	border: 1px solid var(--border);
	border-radius: var(--radius-sm);
	padding: 12px 14px;
	color: var(--text-muted);
	font-size: 0.875rem;
	font-weight: 700;
}
.final-cta__trust .icon {
	width: 20px;
	height: 20px;
	color: var(--accent);
	flex-shrink: 0;
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
	background: var(--bg-2);
	border-top: 1px solid var(--border);
	padding: var(--space-10) 0 var(--space-6);
	margin-top: var(--space-10);
}
.site-footer__top {
	display: grid;
	grid-template-columns: 1.4fr 2fr;
	gap: var(--space-8);
	margin-bottom: var(--space-8);
}
@media (max-width: 768px) {
	.site-footer__top { grid-template-columns: 1fr; }
}
.site-footer__brand .site-logo { margin-bottom: var(--space-3); }
.site-footer__tagline { color: var(--text-muted); font-size: 0.9375rem; max-width: 320px; }
.site-footer__nav {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--space-5);
}
@media (max-width: 540px) {
	.site-footer__nav { grid-template-columns: repeat(2, 1fr); }
}
.site-footer__col h4 {
	font-size: 0.8125rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--text);
	margin-bottom: var(--space-3);
}
.site-footer__col ul { list-style: none; padding: 0; margin: 0; }
.site-footer__col li { padding: 4px 0; }
.site-footer__col a { color: var(--text-muted); font-size: 0.875rem; }
.site-footer__col a:hover { color: var(--text); }

.site-footer__disclaimer {
	background: var(--bg-3);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: var(--space-5);
	margin-bottom: var(--space-5);
}
.site-footer__disclaimer p {
	color: var(--text-muted);
	font-size: 0.8125rem;
	line-height: 1.6;
}
.site-footer__disclaimer strong { color: var(--text); }
.site-footer__disclaimer a { color: var(--accent); }

.site-footer__copyright {
	text-align: center;
	color: var(--text-dim);
	font-size: 0.8125rem;
	padding-top: var(--space-5);
	border-top: 1px solid var(--border);
}

/* ============================================================
   Age gate modal
   ============================================================ */
.age-gate {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: grid;
	place-items: center;
	padding: var(--space-4);
}
.age-gate.is-hidden { display: none; }
.age-gate__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.9);
	backdrop-filter: blur(12px);
}
.age-gate__panel {
	position: relative;
	background: var(--bg-2);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: var(--space-8);
	max-width: 480px;
	width: 100%;
	text-align: center;
	box-shadow: var(--shadow-glow);
}
.age-gate__title {
	font-size: 1.75rem;
	margin-bottom: var(--space-4);
}
.age-gate__body {
	color: var(--text-muted);
	font-size: 0.9375rem;
	margin-bottom: var(--space-6);
	line-height: 1.6;
}
.age-gate__actions {
	display: flex;
	flex-direction: column;
	gap: var(--space-3);
	margin-bottom: var(--space-5);
}
.age-gate__actions .btn { width: 100%; }
.age-gate__fineprint {
	font-size: 0.75rem;
	color: var(--text-dim);
	line-height: 1.5;
}
.age-gate__fineprint a { color: var(--accent); }
body.has-age-gate { overflow: hidden; }
body.age-verified { overflow: auto; }
body.age-verified .age-gate { display: none; }

/* ============================================================
   Page templates (legal + gallery)
   ============================================================ */
.page-template-legal .container { max-width: var(--container-narrow); }
.page-template-legal h1 {
	font-size: clamp(2rem, 4vw, 2.75rem);
	margin: var(--space-10) 0 var(--space-5);
}
.page-template-legal h2 { font-size: 1.5rem; margin: var(--space-8) 0 var(--space-3); }
.page-template-legal h3 { font-size: 1.125rem; margin: var(--space-5) 0 var(--space-2); }
.page-template-legal p,
.page-template-legal li { color: var(--text-muted); font-size: 0.9375rem; line-height: 1.7; margin-bottom: var(--space-3); }
.page-template-legal ul { padding-left: var(--space-5); }
.page-template-legal a { color: var(--accent); text-decoration: underline; }

.page-template-gallery .container { padding-top: var(--space-10); }
.page-template-gallery .page-title { font-size: clamp(2rem, 5vw, 3rem); margin-bottom: var(--space-3); }
.page-template-gallery .page-intro { color: var(--text-muted); max-width: 700px; margin-bottom: var(--space-8); }
