/* ================================================================
   QuizMage Sales Site — Enterprise Dark Theme v2
   ================================================================ */

:root {
	/* Brand */
	--brand:        #b06ef7;
	--brand-dark:   #8b3ef5;
	--brand-glow:   rgba(176, 110, 247, 0.22);
	--brand-ring:   rgba(176, 110, 247, 0.4);
	--brand-subtle: rgba(176, 110, 247, 0.11);
	--brand-border: rgba(176, 110, 247, 0.28);

	/* Surfaces — lifted indigo palette, not pure black */
	--bg:        #0c0c22;
	--surface:   #131340;
	--surface-2: #1a1a50;
	--surface-3: #21215e;

	/* Lines — brighter so borders read clearly */
	--line:        rgba(255, 255, 255, 0.08);
	--line-bright: rgba(255, 255, 255, 0.15);

	/* Text */
	--ink:      #f2f2ff;
	--ink-soft: #d4d4f0;
	--muted:    #9090b8;

	/* Status */
	--success: #10b981;
	--danger:  #f87171;
	--warning: #fbbf24;

	/* Radius */
	--radius-xs: 6px;
	--radius-sm: 10px;
	--radius:    14px;
	--radius-lg: 20px;
	--radius-xl: 28px;

	/* Shadows */
	--shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
	--shadow:    0 8px 32px rgba(0, 0, 0, 0.4);
	--shadow-lg: 0 24px 64px rgba(0, 0, 0, 0.5);
	--glow-sm:   0 0 28px rgba(176, 110, 247, 0.18);
	--glow:      0 0 56px rgba(176, 110, 247, 0.26);

	/* Gradients */
	--grad-brand: linear-gradient(135deg, #b06ef7 0%, #7c3aed 100%);
	--grad-text:  linear-gradient(135deg, #d084fc, #818cf8, #38bdf8, #d084fc);

	--font:  "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
	--max:   1160px;
	--nav-h: 64px;
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after {
		animation-duration: 0.01ms !important;
		transition-duration: 0.01ms !important;
	}
}

body {
	margin: 0;
	font-family: var(--font);
	font-size: 16px;
	line-height: 1.65;
	color: var(--ink-soft);
	background: var(--bg);
	background-image:
		radial-gradient(ellipse 90% 50% at 60% -10%, rgba(140, 60, 240, 0.14), transparent),
		radial-gradient(ellipse 60% 40% at 10% 80%, rgba(56, 189, 248, 0.06), transparent);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

img, svg { display: block; max-width: 100%; }

code {
	font-size: 0.88em;
	background: var(--surface-3);
	padding: 2px 7px;
	border-radius: 5px;
	color: var(--brand);
	font-family: "SFMono-Regular", "Consolas", monospace;
}

a { color: var(--brand); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: #d09cff; }

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible {
	outline: 2px solid var(--brand);
	outline-offset: 3px;
}

/* ── Skip link ──────────────────────────────────────────────── */
.skip-link {
	position: absolute; left: -9999px; top: 0; z-index: 9999;
	padding: 12px 16px; background: var(--brand); color: #fff;
	border-radius: var(--radius-sm);
}
.skip-link:focus { left: 16px; top: 16px; }

/* ── Layout ─────────────────────────────────────────────────── */
.container { width: min(100% - 40px, var(--max)); margin-inline: auto; }

/* ================================================================
   SCROLL REVEAL ANIMATIONS
   ================================================================ */
[data-animate] {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity 0.65s ease, transform 0.65s ease;
}
[data-animate].is-visible {
	opacity: 1;
	transform: none;
}
[data-delay="1"] { transition-delay: 0.08s; }
[data-delay="2"] { transition-delay: 0.16s; }
[data-delay="3"] { transition-delay: 0.24s; }
[data-delay="4"] { transition-delay: 0.32s; }
[data-delay="5"] { transition-delay: 0.40s; }
[data-delay="6"] { transition-delay: 0.48s; }
[data-delay="7"] { transition-delay: 0.56s; }
[data-delay="8"] { transition-delay: 0.64s; }

/* ================================================================
   HEADER
   ================================================================ */
.site-header {
	position: sticky; top: 0; z-index: 200;
	height: var(--nav-h);
	display: flex; align-items: center;
	background: rgba(12, 12, 34, 0.85);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border-bottom: 1px solid var(--line);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: flex; align-items: center; text-decoration: none; }
.brand:hover { opacity: 0.8; }
.brand-logo { display: block; width: auto; height: 32px; max-width: min(160px, 40vw); object-fit: contain; }
@media (min-width: 900px) { .brand-logo { height: 36px; max-width: 180px; } }

.nav-links { display: none; list-style: none; margin: 0; padding: 0; align-items: center; gap: 28px; }
.nav-links a {
	color: var(--muted); font-weight: 600; font-size: 0.88rem;
	text-decoration: none; transition: color 0.15s;
}
.nav-links a:hover { color: var(--ink); }
@media (min-width: 900px) { .nav-links { display: flex; } }

.header-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }

.lang-switch {
	display: inline-flex; align-items: center; gap: 2px;
	padding: 3px; border: 1px solid var(--line); border-radius: 999px;
	background: var(--surface);
}
.lang-switch a {
	display: inline-flex; align-items: center; justify-content: center;
	min-width: 32px; min-height: 26px; padding: 0 8px; border-radius: 999px;
	font-size: 0.7rem; font-weight: 700; color: var(--muted); text-decoration: none;
	transition: all 0.15s;
}
.lang-switch a:hover { color: var(--ink); }
.lang-switch a.is-active { background: var(--brand-subtle); color: var(--brand); }

/* ================================================================
   BUTTONS
   ================================================================ */
.btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 8px;
	min-height: 44px; padding: 0 20px; border: none; border-radius: var(--radius-sm);
	font-family: inherit; font-size: 0.9rem; font-weight: 700; cursor: pointer;
	text-decoration: none; white-space: nowrap;
	transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, opacity 0.15s ease;
}
.btn-primary {
	background: var(--grad-brand); color: #fff;
	box-shadow: 0 4px 18px rgba(176, 110, 247, 0.45);
}
.btn-primary:hover {
	color: #fff; transform: translateY(-2px);
	box-shadow: 0 10px 32px rgba(176, 110, 247, 0.6);
}
.btn-primary:disabled { opacity: 0.5; cursor: not-allowed; transform: none; box-shadow: none; }

.btn-outline {
	background: transparent; color: var(--ink-soft);
	border: 1px solid var(--line-bright);
}
.btn-outline:hover {
	color: var(--ink); background: var(--surface-2);
	border-color: var(--brand-border); transform: translateY(-2px);
}

.btn-ghost {
	background: transparent; color: var(--muted);
	border: 1px solid var(--line);
}
.btn-ghost:hover { color: var(--ink); background: var(--surface); border-color: var(--line-bright); }

.btn-sm  { min-height: 38px; padding: 0 14px; font-size: 0.82rem; }
.btn-lg  { min-height: 52px; padding: 0 28px; font-size: 1rem; }
.btn-full { width: 100%; }

/* ================================================================
   CANCEL BANNER
   ================================================================ */
.banner-cancel {
	display: none; padding: 12px 16px;
	background: rgba(251, 191, 36, 0.1); color: #fbbf24;
	border-bottom: 1px solid rgba(251, 191, 36, 0.2);
	text-align: center; font-size: 0.86rem; font-weight: 600;
}
.banner-cancel.visible { display: block; }

/* ================================================================
   HERO
   ================================================================ */
.hero {
	position: relative; overflow: hidden;
	padding: 88px 0 104px;
	text-align: center;
}
.hero-glow {
	position: absolute; top: -200px; left: 50%; transform: translateX(-50%);
	width: 1100px; height: 800px;
	background: radial-gradient(ellipse at center,
		rgba(176, 110, 247, 0.22) 0%,
		rgba(129, 140, 248, 0.08) 40%,
		transparent 68%);
	pointer-events: none;
}
.hero-grid-lines {
	position: absolute; inset: 0; pointer-events: none;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
	background-size: 64px 64px;
	mask-image: radial-gradient(ellipse 85% 70% at 50% 0%, black 30%, transparent 75%);
	-webkit-mask-image: radial-gradient(ellipse 85% 70% at 50% 0%, black 30%, transparent 75%);
}

.hero-eyebrow {
	display: inline-flex; align-items: center; gap: 8px;
	padding: 6px 14px; border-radius: 999px;
	background: var(--brand-subtle); border: 1px solid var(--brand-border);
	color: #d09cff; font-size: 0.75rem; font-weight: 700;
	text-transform: uppercase; letter-spacing: 0.07em;
	margin-bottom: 28px;
}
.eyebrow-dot {
	width: 6px; height: 6px; border-radius: 50%;
	background: var(--brand); display: inline-block;
	box-shadow: 0 0 10px rgba(176, 110, 247, 1);
	animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
	0%, 100% { opacity: 1; box-shadow: 0 0 10px rgba(176, 110, 247, 1); }
	50%       { opacity: 0.3; box-shadow: 0 0 4px rgba(176, 110, 247, 0.4); }
}

.hero h1 {
	margin: 0 auto 22px; max-width: 760px;
	font-size: clamp(2.2rem, 5.5vw, 3.7rem);
	line-height: 1.1; font-weight: 800; color: var(--ink);
	letter-spacing: -0.04em;
	text-wrap: balance;
}
.gradient-text {
	background: var(--grad-text);
	background-size: 300% 300%;
	animation: grad-shift 5s ease infinite;
	-webkit-background-clip: text; background-clip: text; color: transparent;
}
@keyframes grad-shift {
	0%   { background-position: 0% 50%; }
	50%  { background-position: 100% 50%; }
	100% { background-position: 0% 50%; }
}

.hero-lead {
	margin: 0 auto 36px; max-width: 580px;
	font-size: 1.1rem; line-height: 1.72; color: var(--muted);
}
.hero-actions {
	display: flex; align-items: center; justify-content: center;
	gap: 12px; flex-wrap: wrap; margin-bottom: 28px;
}
.hero-meta {
	display: flex; align-items: center; justify-content: center;
	gap: 8px; flex-wrap: wrap; font-size: 0.8rem; color: var(--muted);
}
.hero-meta-sep { opacity: 0.3; }

/* Hero mockup — floats */
.hero-mockup {
	margin: 56px auto 0; max-width: 660px; position: relative;
}
.hero-mockup::before {
	content: '';
	position: absolute; bottom: -40px; left: 10%; right: 10%;
	height: 60px;
	background: radial-gradient(ellipse, rgba(176, 110, 247, 0.35) 0%, transparent 70%);
	filter: blur(22px); z-index: -1;
}
.mockup-window {
	background: var(--surface);
	border: 1px solid var(--line-bright);
	border-radius: var(--radius-xl);
	overflow: hidden;
	box-shadow: var(--shadow-lg), var(--glow);
	animation: float 5s ease-in-out infinite;
}
@keyframes float {
	0%, 100% { transform: translateY(0px); }
	50%       { transform: translateY(-10px); }
}
.mockup-topbar { height: 4px; background: linear-gradient(90deg, var(--brand) 0%, #818cf8 60%, #06b6d4 100%); }
.mockup-chrome {
	padding: 12px 18px; border-bottom: 1px solid var(--line);
	display: flex; align-items: center; gap: 8px;
}
.chrome-dots { display: flex; gap: 6px; }
.chrome-dot { width: 10px; height: 10px; border-radius: 50%; }
.chrome-dot:nth-child(1) { background: rgba(239, 68, 68, 0.6); }
.chrome-dot:nth-child(2) { background: rgba(245, 158, 11, 0.6); }
.chrome-dot:nth-child(3) { background: rgba(16, 185, 129, 0.6); }
.chrome-url {
	flex: 1; height: 22px; border-radius: 5px;
	background: var(--surface-3); margin-left: 10px;
	display: flex; align-items: center; padding: 0 10px;
	font-size: 0.7rem; color: var(--muted);
}
.mockup-body { padding: 28px 28px 24px; }
.mockup-progress-track {
	height: 3px; background: var(--surface-3);
	border-radius: 999px; margin-bottom: 28px; overflow: hidden;
}
.mockup-progress-fill {
	width: 40%; height: 100%;
	background: linear-gradient(90deg, var(--brand), #818cf8);
	border-radius: inherit;
}
.mockup-q { font-size: 1.05rem; font-weight: 700; color: var(--ink); margin: 0 0 18px; text-align: left; }
.mockup-options { display: grid; gap: 8px; }
.mockup-option {
	padding: 13px 16px; border: 1px solid var(--line-bright);
	border-radius: var(--radius-sm); font-size: 0.88rem;
	color: var(--ink-soft); text-align: left; cursor: default;
	transition: border-color 0.2s;
}
.mockup-option.sel {
	border-color: var(--brand); background: var(--brand-subtle);
	color: var(--ink); box-shadow: 0 0 0 1px var(--brand-border);
}
.mockup-footer {
	padding: 14px 28px; border-top: 1px solid var(--line);
	display: flex; justify-content: space-between; align-items: center;
}
.mockup-step { font-size: 0.75rem; color: var(--muted); }
.mockup-btn {
	background: var(--grad-brand); color: #fff; border: none;
	border-radius: var(--radius-xs); padding: 8px 18px;
	font-size: 0.82rem; font-weight: 700; cursor: default;
}

/* ================================================================
   STATS STRIP
   ================================================================ */
.stats-section {
	padding: 0;
	background: var(--surface);
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
}
.stats-row { display: flex; flex-wrap: wrap; justify-content: center; }
.stat-item {
	display: flex; flex-direction: column; align-items: center;
	justify-content: center; gap: 5px;
	padding: 28px 36px;
	border-right: 1px solid var(--line);
	flex: 1; min-width: 130px; text-align: center;
	transition: background 0.2s;
}
.stat-item:hover { background: var(--surface-2); }
.stat-item:last-child { border-right: none; }
.stat-item strong {
	font-size: 1.55rem; font-weight: 800; line-height: 1;
	background: var(--grad-text); background-size: 300% 300%;
	animation: grad-shift 5s ease infinite;
	-webkit-background-clip: text; background-clip: text; color: transparent;
}
.stat-item span { font-size: 0.78rem; color: var(--muted); font-weight: 500; }

/* ================================================================
   SHARED SECTION STYLES
   ================================================================ */
section { padding: 88px 0; }
.section-head { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.eyebrow-label {
	display: inline-block; font-size: 0.7rem; font-weight: 800;
	text-transform: uppercase; letter-spacing: 0.1em;
	color: var(--brand); margin-bottom: 14px;
}
.section-head h2 {
	margin: 0 0 16px;
	font-size: clamp(1.8rem, 3.2vw, 2.5rem);
	font-weight: 800; color: var(--ink);
	letter-spacing: -0.03em; line-height: 1.15;
}
.section-head p { margin: 0; color: var(--muted); font-size: 1.02rem; line-height: 1.7; }

/* ================================================================
   WHY / BENEFITS
   ================================================================ */
.why-section { background: var(--bg); }
.why-grid { display: grid; gap: 14px; }
@media (min-width: 768px) { .why-grid { grid-template-columns: repeat(3, 1fr); } }

.why-card {
	padding: 30px 26px;
	background: var(--surface); border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.why-card:hover {
	border-color: var(--brand-border); transform: translateY(-4px);
	box-shadow: var(--glow-sm);
}
.why-icon {
	width: 44px; height: 44px; border-radius: 11px; margin-bottom: 20px;
	background: var(--brand-subtle); border: 1px solid var(--brand-border);
	color: var(--brand); display: grid; place-items: center;
	transition: background 0.2s, box-shadow 0.2s;
}
.why-card:hover .why-icon { background: rgba(176, 110, 247, 0.18); box-shadow: var(--glow-sm); }
.why-card h3 { margin: 0 0 8px; font-size: 1.05rem; font-weight: 700; color: var(--ink); }
.why-card p  { margin: 0; font-size: 0.9rem; color: var(--muted); line-height: 1.65; }

/* ================================================================
   FEATURES BENTO — symmetric: wide row + 3-col row alternating
   ================================================================ */
.features-section { background: var(--surface); }

.bento { display: grid; gap: 14px; }
@media (min-width: 768px) {
	.bento { grid-template-columns: repeat(3, 1fr); }
	.bento .bento-wide { grid-column: 1 / -1; }
}

.bento-card {
	padding: 28px 26px;
	background: var(--surface-2); border: 1px solid var(--line);
	border-radius: var(--radius-lg); position: relative; overflow: hidden;
	transition: border-color 0.2s, transform 0.25s, box-shadow 0.25s;
}
.bento-wide.bento-card { display: flex; gap: 20px; flex-wrap: wrap; }
.bento-wide .bento-card-inner { flex: 1; min-width: 220px; }
.bento-card::before {
	content: '';
	position: absolute; top: 0; left: 0; right: 0; height: 1px;
	background: linear-gradient(90deg, transparent 0%, var(--brand-border) 50%, transparent 100%);
	opacity: 0; transition: opacity 0.25s;
}
.bento-card:hover { border-color: var(--brand-border); transform: translateY(-3px); box-shadow: var(--glow-sm); }
.bento-card:hover::before { opacity: 1; }
.bento-tag {
	display: inline-flex; margin-bottom: 14px;
	font-size: 0.62rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em;
	padding: 3px 9px; border-radius: 999px;
	background: var(--brand-subtle); border: 1px solid var(--brand-border); color: #d09cff;
}
.bento-card h3 { margin: 0 0 8px; font-size: 1rem; font-weight: 700; color: var(--ink); }
.bento-card p  { margin: 0; font-size: 0.88rem; color: var(--muted); line-height: 1.65; }
.bento-card code { font-size: 0.85em; }

/* ================================================================
   QUIZ ENGINES
   ================================================================ */
.engines-section { background: var(--bg); }
.engines-grid { display: grid; gap: 10px; }
@media (min-width: 600px)  { .engines-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .engines-grid { grid-template-columns: repeat(4, 1fr); } }

.engine-card {
	padding: 22px 20px;
	background: var(--surface); border: 1px solid var(--line);
	border-radius: var(--radius);
	transition: border-color 0.2s, transform 0.25s, box-shadow 0.25s;
}
.engine-card:hover {
	border-color: var(--brand-border); transform: translateY(-3px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3), var(--glow-sm);
}
.engine-tag {
	display: inline-block; margin-bottom: 10px;
	font-size: 0.6rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.07em;
	padding: 3px 8px; border-radius: 999px;
}
.engine-tag.core    { background: rgba(16, 185, 129, 0.12); border: 1px solid rgba(16, 185, 129, 0.28); color: #34d399; }
.engine-tag.catalog { background: rgba(6, 182, 212, 0.12);  border: 1px solid rgba(6, 182, 212, 0.28);  color: #22d3ee; }
.engine-tag.pro     { background: var(--brand-subtle);      border: 1px solid var(--brand-border);      color: var(--brand); }
.engine-card h3 { margin: 0 0 6px; font-size: 0.93rem; font-weight: 700; color: var(--ink); }
.engine-card p  { margin: 0; font-size: 0.82rem; color: var(--muted); line-height: 1.5; }

/* ================================================================
   SHOP EMBED SPOTLIGHT
   ================================================================ */
.embed-section { background: var(--surface); }
.embed-split { display: grid; gap: 48px; align-items: center; }
@media (min-width: 900px) { .embed-split { grid-template-columns: 1fr 1fr; } }

.embed-content h2 {
	margin: 0 0 14px;
	font-size: clamp(1.6rem, 3vw, 2.2rem);
	font-weight: 800; color: var(--ink); letter-spacing: -0.03em;
}
.embed-content p { margin: 0 0 24px; font-size: 0.98rem; color: var(--muted); line-height: 1.7; }
.embed-bullets { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.embed-bullets li {
	display: flex; align-items: flex-start; gap: 12px;
	font-size: 0.92rem; color: var(--ink-soft); line-height: 1.5;
}
.bullet-dot {
	flex-shrink: 0; width: 20px; height: 20px; border-radius: 50%; margin-top: 1px;
	background: var(--brand-subtle); border: 1px solid var(--brand-border);
	color: var(--brand); display: grid; place-items: center;
}

.embed-visual {
	background: var(--surface-2); border: 1px solid var(--line-bright);
	border-radius: var(--radius-xl); overflow: hidden;
	box-shadow: var(--shadow-lg), var(--glow-sm);
}
.embed-vis-header {
	padding: 12px 16px; border-bottom: 1px solid var(--line);
	display: flex; align-items: center; gap: 6px; font-size: 0.72rem; color: var(--muted);
}
.vis-dot { width: 8px; height: 8px; border-radius: 50%; }
.vis-dot.r { background: rgba(239, 68, 68, 0.5); }
.vis-dot.y { background: rgba(245, 158, 11, 0.5); }
.vis-dot.g { background: rgba(16, 185, 129, 0.5); }
.vis-title { margin-left: 6px; }
.embed-vis-body { padding: 20px; }
.embed-vis-label {
	font-size: 0.72rem; font-weight: 700; color: var(--muted);
	text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 12px;
}
.embed-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.embed-product {
	border-radius: var(--radius-sm); overflow: hidden;
	border: 1px solid var(--line); background: var(--surface-3);
}
.embed-product.match { border-color: var(--brand); box-shadow: 0 0 18px rgba(176, 110, 247, 0.25); }
.embed-product-img {
	height: 68px; position: relative; overflow: hidden;
	background: linear-gradient(135deg, var(--surface-3), var(--surface-2));
}
.embed-product.match .embed-product-img {
	background: linear-gradient(135deg, rgba(176, 110, 247, 0.14), rgba(129, 140, 248, 0.08));
}
.match-pct {
	position: absolute; top: 7px; right: 7px;
	font-size: 0.6rem; font-weight: 800;
	background: var(--brand); color: #fff;
	padding: 2px 6px; border-radius: 999px;
}
.embed-product-body { padding: 10px 12px; }
.embed-product-name { font-size: 0.72rem; font-weight: 600; color: var(--ink); margin: 0 0 2px; }
.embed-product-sub  { font-size: 0.68rem; color: var(--muted); margin: 0; }
.embed-product.match .embed-product-sub { color: var(--brand); }

/* ================================================================
   HOW IT WORKS
   ================================================================ */
.how-section { background: var(--bg); }
.steps { display: grid; gap: 14px; counter-reset: step; }
@media (min-width: 600px)  { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .steps { grid-template-columns: repeat(4, 1fr); } }

.step {
	padding: 28px 22px;
	background: var(--surface); border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	transition: border-color 0.2s, transform 0.25s;
}
.step:hover { border-color: var(--brand-border); transform: translateY(-3px); }
.step-num {
	width: 34px; height: 34px; border-radius: 9px;
	background: var(--grad-brand); color: #fff;
	font-size: 0.8rem; font-weight: 800;
	display: grid; place-items: center; margin-bottom: 18px;
}
.step h3 { margin: 0 0 8px; font-size: 0.98rem; font-weight: 700; color: var(--ink); }
.step p  { margin: 0; font-size: 0.86rem; color: var(--muted); line-height: 1.6; }

/* ================================================================
   PRICING
   ================================================================ */
.pricing-section { background: var(--surface); }

.billing-toggle {
	display: flex; justify-content: center; align-items: center;
	margin: 0 auto 48px; width: fit-content;
	background: var(--surface-2); border: 1px solid var(--line);
	border-radius: 999px; padding: 4px; gap: 0;
}
.billing-opt {
	padding: 8px 22px; border-radius: 999px;
	font: inherit; font-size: 0.85rem; font-weight: 700;
	cursor: pointer; color: var(--muted); border: none;
	background: transparent; transition: all 0.2s;
}
.billing-opt.active {
	background: var(--grad-brand); color: #fff;
	box-shadow: 0 2px 12px rgba(176, 110, 247, 0.5);
}
.save-badge {
	display: inline-flex; align-items: center; margin-left: 6px;
	font-size: 0.62rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.05em;
	padding: 2px 6px; border-radius: 999px;
	background: rgba(16, 185, 129, 0.16); border: 1px solid rgba(16, 185, 129, 0.32); color: #10b981;
}

.pricing-grid { display: grid; gap: 20px; }
@media (min-width: 860px) { .pricing-grid { grid-template-columns: repeat(3, 1fr); align-items: start; } }

.pricing-col {
	display: flex; flex-direction: column;
	padding: 32px 28px; border-radius: var(--radius-xl);
	background: var(--surface-2); border: 1px solid var(--line);
	transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}
.pricing-col:hover { border-color: var(--line-bright); transform: translateY(-2px); }
.pricing-col.is-featured {
	border-color: var(--brand); background: var(--surface-3);
	box-shadow: var(--glow); position: relative; padding-top: 44px;
}
.pricing-col.is-featured:hover { transform: translateY(-4px); box-shadow: 0 0 72px rgba(176, 110, 247, 0.38); }
.featured-pill {
	position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
	font-size: 0.65rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em;
	padding: 4px 16px; border-radius: 999px; white-space: nowrap;
	background: var(--grad-brand); color: #fff;
	box-shadow: 0 4px 14px rgba(176, 110, 247, 0.45);
}

.plan-tier-name {
	font-size: 0.68rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em;
	color: var(--muted); margin: 0 0 16px;
}
.plan-price-row { display: flex; align-items: baseline; gap: 4px; margin-bottom: 4px; }
.plan-price-num  { font-size: 2.6rem; font-weight: 800; color: var(--ink); line-height: 1; }
.plan-price-unit { font-size: 0.9rem; color: var(--muted); }
.plan-annual-note {
	font-size: 0.8rem; color: var(--success); font-weight: 600;
	margin: 0 0 10px; min-height: 1.2em;
}
.plan-desc { font-size: 0.87rem; color: var(--muted); line-height: 1.55; margin: 0 0 22px; }
.plan-divider { border: none; border-top: 1px solid var(--line); margin: 0 0 20px; }
.plan-features {
	list-style: none; padding: 0; margin: 0 0 24px;
	display: flex; flex-direction: column; gap: 10px; flex: 1;
}
.plan-features li {
	display: flex; align-items: flex-start; gap: 10px;
	font-size: 0.85rem; color: var(--ink-soft); line-height: 1.45;
}
.feat-check { flex-shrink: 0; margin-top: 1px; color: var(--success); }
.feat-x     { flex-shrink: 0; margin-top: 1px; color: var(--muted); opacity: 0.4; }

.plan-cta-note { font-size: 0.74rem; color: var(--muted); text-align: center; margin-top: 8px; }

/* ================================================================
   CHECKOUT MODAL — v3
   ================================================================ */
.co-overlay {
	position: fixed;
	inset: 0;
	z-index: 600;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	background: rgba(4, 4, 18, 0.72);
	backdrop-filter: blur(16px) saturate(1.2);
	-webkit-backdrop-filter: blur(16px) saturate(1.2);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.28s ease, visibility 0.28s ease;
}
.co-overlay.open {
	opacity: 1;
	visibility: visible;
}

.co-modal {
	position: relative;
	width: min(100%, 520px);
	max-height: min(92dvh, 720px);
	overflow-x: hidden;
	overflow-y: auto;
	overscroll-behavior: contain;
	scrollbar-width: none; /* Firefox */
	-ms-overflow-style: none; /* IE/legacy Edge */
	padding: 0;
	border-radius: var(--radius-xl);
	background: linear-gradient(165deg, rgba(30, 28, 72, 0.98) 0%, rgba(18, 18, 48, 0.99) 55%, rgba(14, 14, 38, 1) 100%);
	border: 1px solid rgba(176, 110, 247, 0.35);
	box-shadow:
		0 0 0 1px rgba(255, 255, 255, 0.04) inset,
		var(--shadow-lg),
		0 0 80px rgba(124, 58, 237, 0.22);
	transform: translateY(20px) scale(0.97);
	transition: transform 0.34s cubic-bezier(0.22, 1.12, 0.36, 1);
}
.co-overlay.open .co-modal {
	transform: translateY(0) scale(1);
}

.co-modal::-webkit-scrollbar {
	display: none;
	width: 0;
	height: 0;
}

.co-modal__shine {
	position: absolute;
	inset: 0;
	border-radius: inherit;
	pointer-events: none;
	background:
		radial-gradient(ellipse 80% 45% at 50% -5%, rgba(176, 110, 247, 0.22), transparent 60%),
		radial-gradient(ellipse 50% 30% at 100% 0%, rgba(56, 189, 248, 0.08), transparent 50%);
}

.co-modal::before {
	content: "";
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 44px;
	height: 4px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.14);
	display: none;
}

.co-close {
	position: absolute;
	top: 16px;
	right: 16px;
	z-index: 2;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	border: 1px solid var(--line-bright);
	background: rgba(255, 255, 255, 0.04);
	color: var(--muted);
	cursor: pointer;
	display: grid;
	place-items: center;
	transition: background 0.15s, color 0.15s, border-color 0.15s, transform 0.15s;
}
.co-close:hover {
	background: var(--brand-subtle);
	border-color: var(--brand-border);
	color: var(--ink);
	transform: scale(1.04);
}

.co-header {
	position: relative;
	z-index: 1;
	padding: 32px 28px 0;
}

.co-plan-badge {
	display: inline-flex;
	margin-bottom: 12px;
	font-size: 0.62rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	padding: 4px 11px;
	border-radius: 999px;
	background: var(--grad-brand);
	border: none;
	color: #fff;
	box-shadow: 0 4px 14px rgba(124, 58, 237, 0.35);
}

.co-title {
	margin: 0 0 6px;
	font-size: clamp(1.25rem, 3.5vw, 1.45rem);
	font-weight: 800;
	color: var(--ink);
	line-height: 1.2;
	letter-spacing: -0.02em;
}

.co-subtitle {
	margin: 0;
	font-size: 0.84rem;
	color: var(--muted);
	line-height: 1.45;
}

.co-billing-toggle {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	margin: 22px 28px 0;
	padding: 6px;
	border-radius: var(--radius);
	background: rgba(0, 0, 0, 0.22);
	border: 1px solid var(--line);
}

.co-bill-btn {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	padding: 12px 12px 11px;
	border-radius: var(--radius-sm);
	border: 1px solid transparent;
	background: transparent;
	cursor: pointer;
	font-family: inherit;
	color: var(--muted);
	text-align: left;
	transition: background 0.18s, border-color 0.18s, color 0.18s, box-shadow 0.18s;
}
.co-bill-btn:hover {
	background: rgba(255, 255, 255, 0.03);
	color: var(--ink-soft);
}
.co-bill-btn.active {
	background: rgba(176, 110, 247, 0.12);
	border-color: var(--brand-border);
	color: var(--ink);
	box-shadow: 0 4px 20px rgba(124, 58, 237, 0.15);
}

.co-bill-radio {
	flex-shrink: 0;
	width: 16px;
	height: 16px;
	margin-top: 2px;
	border-radius: 50%;
	border: 2px solid var(--line-bright);
	background: transparent;
	transition: border-color 0.18s, background 0.18s, box-shadow 0.18s;
}
.co-bill-btn.active .co-bill-radio {
	border-color: var(--brand);
	background: var(--brand);
	box-shadow: 0 0 0 3px var(--brand-ring);
}

.co-bill-body {
	display: flex;
	flex-direction: column;
	gap: 2px;
	min-width: 0;
}

.co-bill-label {
	font-size: 0.76rem;
	font-weight: 700;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 6px;
}

.co-bill-price {
	font-size: 1.05rem;
	font-weight: 800;
	color: var(--ink);
	letter-spacing: -0.02em;
}
.co-bill-btn.active .co-bill-price {
	color: var(--brand);
}

.co-bill-save {
	display: inline-flex;
	font-size: 0.58rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	padding: 2px 6px;
	border-radius: 999px;
	background: rgba(16, 185, 129, 0.14);
	border: 1px solid rgba(16, 185, 129, 0.35);
	color: var(--success);
}

/* Form */
.co-form {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	gap: 14px;
	padding: 22px 28px 28px;
}

.co-fields {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.co-field {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.co-label {
	font-size: 0.78rem;
	font-weight: 700;
	color: var(--ink-soft);
	display: flex;
	align-items: center;
	gap: 8px;
}

.co-label-opt {
	font-weight: 600;
	color: var(--muted);
	font-size: 0.72rem;
}

.co-label-badge {
	font-size: 0.62rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	padding: 2px 7px;
	border-radius: 999px;
	background: rgba(16, 185, 129, 0.14);
	border: 1px solid rgba(16, 185, 129, 0.32);
	color: var(--success);
}

.co-input {
	width: 100%;
	min-height: 48px;
	padding: 0 14px;
	border: 1px solid var(--line-bright);
	border-radius: var(--radius-sm);
	font: inherit;
	font-size: 0.92rem;
	color: var(--ink);
	background: rgba(8, 8, 28, 0.65);
	box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04) inset;
	transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
	-webkit-appearance: none;
	appearance: none;
}
.co-input::placeholder {
	color: rgba(144, 144, 184, 0.85);
}
.co-input:hover {
	border-color: rgba(255, 255, 255, 0.22);
}
.co-input:focus {
	border-color: var(--brand);
	outline: none;
	background: rgba(12, 12, 36, 0.9);
	box-shadow: 0 0 0 3px var(--brand-ring), 0 1px 0 rgba(255, 255, 255, 0.05) inset;
}
.co-input:-webkit-autofill,
.co-input:-webkit-autofill:hover,
.co-input:-webkit-autofill:focus {
	-webkit-text-fill-color: var(--ink);
	-webkit-box-shadow: 0 0 0 1000px rgba(12, 12, 36, 1) inset;
	transition: background-color 99999s ease-out 0s;
}

.co-field--referral .co-input-icon-wrap {
	position: relative;
}
.co-field--referral .co-input-icon {
	position: absolute;
	left: 14px;
	top: 50%;
	transform: translateY(-50%);
	color: var(--success);
	opacity: 0.9;
	pointer-events: none;
}
.co-field--referral .co-input--code {
	padding-left: 40px;
	font-family: ui-monospace, "SF Mono", Menlo, monospace;
	font-size: 0.88rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	border-color: rgba(16, 185, 129, 0.28);
	background: rgba(16, 185, 129, 0.06);
}
.co-field--referral .co-input--code:focus {
	border-color: rgba(16, 185, 129, 0.55);
	box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.18);
}

.co-field-hint {
	margin: 0;
	font-size: 0.74rem;
	color: var(--muted);
	line-height: 1.4;
}

.co-privacy {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	padding: 12px 14px;
	border-radius: var(--radius-sm);
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid var(--line);
	font-size: 0.78rem;
	color: var(--muted);
	line-height: 1.5;
	cursor: pointer;
	text-align: left;
}
.co-privacy input {
	margin-top: 3px;
	flex-shrink: 0;
	accent-color: var(--brand);
	width: 16px;
	height: 16px;
	cursor: pointer;
}
.co-privacy a {
	color: var(--brand);
	text-decoration: underline;
	text-underline-offset: 2px;
}
.co-privacy a:hover {
	color: #d8b4fe;
}

.co-submit {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	gap: 10px;
	margin-top: 2px;
	font-weight: 800;
	letter-spacing: -0.01em;
	box-shadow: 0 8px 28px rgba(124, 58, 237, 0.45);
}
.co-submit svg {
	flex-shrink: 0;
	transition: transform 0.2s ease;
}
.co-submit:hover svg {
	transform: translateX(3px);
}

.co-form-error,
.co-form .form-error {
	display: none;
	padding: 11px 13px;
	background: rgba(248, 113, 113, 0.1);
	border: 1px solid rgba(248, 113, 113, 0.28);
	border-radius: var(--radius-sm);
	color: var(--danger);
	font-size: 0.82rem;
	line-height: 1.4;
	margin: 0;
}
.co-form-error.visible,
.co-form .form-error.visible {
	display: block;
}

.co-trust {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	margin: 0;
	font-size: 0.74rem;
	color: var(--muted);
	text-align: center;
}
.co-trust svg {
	flex-shrink: 0;
	opacity: 0.75;
	color: var(--success);
}

/* Legacy hooks */
.form-note { font-size: 0.74rem; color: var(--muted); text-align: center; margin: 0; }

/* ================================================================
   FAQ
   ================================================================ */
.faq-section { background: var(--bg); }
.faq-layout { display: grid; gap: 28px; align-items: start; }
@media (min-width: 960px) { .faq-layout { grid-template-columns: 1fr 296px; gap: 36px; } }

.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item {
	background: var(--surface); border: 1px solid var(--line);
	border-radius: var(--radius-lg); overflow: hidden; transition: border-color 0.2s;
}
.faq-item:hover  { border-color: var(--line-bright); }
.faq-item[open]  { border-color: var(--brand-border); }
.faq-item summary {
	display: flex; align-items: center; justify-content: space-between; gap: 16px;
	padding: 18px 20px; cursor: pointer; list-style: none; user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-q { flex: 1; font-size: 0.94rem; font-weight: 700; color: var(--ink); text-align: left; line-height: 1.4; }
.faq-icon {
	flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%;
	background: var(--surface-2); color: var(--muted);
	display: grid; place-items: center;
	transition: transform 0.25s, background 0.2s, color 0.2s;
}
.faq-item[open] .faq-icon { transform: rotate(180deg); background: var(--brand-subtle); color: var(--brand); }
.faq-body { padding: 0 20px 20px; border-top: 1px solid var(--line); }
.faq-body p { margin: 14px 0 0; font-size: 0.9rem; color: var(--muted); line-height: 1.68; }
.faq-item[open] .faq-body { animation: faq-reveal 0.22s ease; }
@keyframes faq-reveal {
	from { opacity: 0; transform: translateY(-6px); }
	to   { opacity: 1; transform: translateY(0); }
}

.faq-aside { position: sticky; top: calc(var(--nav-h) + 20px); }
.faq-contact-card {
	padding: 28px 24px; background: var(--surface);
	border: 1px solid var(--brand-border);
	border-radius: var(--radius-xl); box-shadow: var(--glow-sm); text-align: center;
}
.faq-contact-icon {
	width: 48px; height: 48px; margin: 0 auto 16px;
	border-radius: 13px; background: var(--brand-subtle);
	border: 1px solid var(--brand-border); color: var(--brand);
	display: grid; place-items: center;
}
.faq-contact-card h3 { margin: 0 0 8px; font-size: 1rem; color: var(--ink); }
.faq-contact-card p  { margin: 0 0 18px; font-size: 0.86rem; color: var(--muted); line-height: 1.55; }
.faq-email {
	display: inline-flex; align-items: center; justify-content: center;
	min-height: 40px; padding: 0 16px; border-radius: var(--radius-sm);
	background: var(--brand-subtle); border: 1px solid var(--brand-border);
	color: var(--brand); font-weight: 700; font-size: 0.84rem;
	text-decoration: none; word-break: break-all;
}
.faq-email:hover { background: rgba(176, 110, 247, 0.18); color: var(--brand); }

/* ================================================================
   ABOUT
   ================================================================ */
.about-section { background: var(--surface); }
.about-grid { display: grid; gap: 32px; align-items: start; }
@media (min-width: 860px) { .about-grid { grid-template-columns: 1.4fr 0.6fr; } }

.about-lead { margin: 0 0 12px; font-size: 0.95rem; color: var(--muted); line-height: 1.72; max-width: 56ch; }
.about-card {
	padding: 28px 24px; background: var(--surface-2);
	border: 1px solid var(--line); border-radius: var(--radius-xl);
}
.about-card h3  { margin: 0 0 4px; font-size: 1.05rem; color: var(--ink); }
.about-logo     { display: block; width: 52px; height: 52px; object-fit: contain; margin-bottom: 14px; }
.about-role     { margin: 0 0 18px; font-size: 0.84rem; color: var(--brand); font-weight: 600; }
.about-links    { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.about-links a  { font-size: 0.88rem; font-weight: 600; }

/* ================================================================
   CTA BAND
   ================================================================ */
.cta-band {
	padding: 96px 0;
	background: linear-gradient(160deg, #0e0e30 0%, #1e0845 50%, #0e0e30 100%);
	border-top: 1px solid var(--brand-border);
	border-bottom: 1px solid var(--line);
	text-align: center; position: relative; overflow: hidden;
}
.cta-band-glow {
	position: absolute; top: -80px; left: 50%; transform: translateX(-50%);
	width: 800px; height: 500px;
	background: radial-gradient(ellipse, rgba(176, 110, 247, 0.28) 0%, transparent 70%);
	pointer-events: none;
}
.cta-band h2 {
	margin: 0 0 14px; position: relative;
	font-size: clamp(1.7rem, 3.4vw, 2.3rem);
	color: var(--ink); letter-spacing: -0.03em; font-weight: 800;
}
.cta-band p { margin: 0 auto 28px; max-width: 48ch; color: var(--muted); font-size: 1.02rem; position: relative; }
.cta-band-actions {
	display: flex; align-items: center; justify-content: center;
	gap: 12px; flex-wrap: wrap; position: relative;
}

/* ================================================================
   FOOTER
   ================================================================ */
.site-footer {
	padding: 48px 0 0;
	background: #070718;
	border-top: 1px solid var(--line);
	font-size: 0.86rem;
}
.footer-grid {
	display: grid; gap: 36px; padding-bottom: 36px;
	border-bottom: 1px solid var(--line);
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1.7fr repeat(3, 1fr); } }
.footer-brand-desc { margin: 10px 0 0; max-width: 34ch; color: var(--muted); line-height: 1.65; font-size: 0.84rem; }
.footer-logo { display: block; width: auto; height: 26px; max-width: 140px; object-fit: contain; opacity: 0.55; }
.footer-col-label {
	font-weight: 800; color: #4b5563; font-size: 0.68rem;
	text-transform: uppercase; letter-spacing: 0.09em; margin-bottom: 14px;
}
.footer-col a {
	color: #505070; text-decoration: none; display: block;
	margin-bottom: 9px; font-size: 0.86rem; transition: color 0.15s;
}
.footer-col a:hover { color: #b090d0; }
.footer-bottom {
	padding: 18px 0 28px;
	display: flex; align-items: center; justify-content: space-between;
	flex-wrap: wrap; gap: 8px;
	font-size: 0.76rem; color: #3a3a55;
}
.footer-bottom a { color: #505070; }
.footer-bottom a:hover { color: #9070c0; }

/* ================================================================
   REFER A FRIEND PAGE
   ================================================================ */
.refer-page {
	min-height: 100vh;
	margin: 0;
	background:
		radial-gradient(ellipse 90% 50% at 60% -10%, rgba(140, 60, 240, 0.14), transparent),
		radial-gradient(ellipse 60% 40% at 10% 80%, rgba(56, 189, 248, 0.06), transparent),
		var(--bg);
}

.refer-shell {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 28px 18px calc(28px + env(safe-area-inset-bottom));
}

.refer-card {
	position: relative;
	width: min(100%, 520px);
	padding: 32px 28px 26px;
	border-radius: var(--radius-xl);
	background: linear-gradient(165deg, rgba(30, 28, 72, 0.98) 0%, rgba(18, 18, 48, 0.99) 55%, rgba(14, 14, 38, 1) 100%);
	border: 1px solid rgba(176, 110, 247, 0.35);
	box-shadow:
		0 0 0 1px rgba(255, 255, 255, 0.04) inset,
		var(--shadow-lg),
		0 0 80px rgba(124, 58, 237, 0.2);
	overflow: hidden;
}

.refer-card__shine {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background:
		radial-gradient(ellipse 80% 45% at 50% -5%, rgba(176, 110, 247, 0.2), transparent 60%),
		radial-gradient(ellipse 50% 30% at 100% 0%, rgba(56, 189, 248, 0.07), transparent 50%);
}

.refer-header,
.refer-form,
.refer-result,
.refer-footer {
	position: relative;
	z-index: 1;
}

.refer-logo-link {
	display: inline-block;
	margin-bottom: 18px;
	text-decoration: none;
}

.refer-logo {
	display: block;
	height: 34px;
	width: auto;
	max-width: 200px;
	object-fit: contain;
}

.refer-eyebrow {
	display: inline-flex;
	margin-bottom: 10px;
	font-size: 0.62rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	padding: 4px 11px;
	border-radius: 999px;
	background: var(--grad-brand);
	color: #fff;
	box-shadow: 0 4px 14px rgba(124, 58, 237, 0.35);
}

.refer-header h1 {
	margin: 0 0 10px;
	font-size: clamp(1.35rem, 4vw, 1.65rem);
	font-weight: 800;
	color: var(--ink);
	line-height: 1.2;
	letter-spacing: -0.02em;
}

.refer-lead {
	margin: 0;
	font-size: 0.92rem;
	color: var(--muted);
	line-height: 1.55;
	max-width: 42ch;
}

.refer-lead strong {
	color: var(--success);
	font-weight: 700;
}

.refer-form {
	display: flex;
	flex-direction: column;
	gap: 14px;
	margin-top: 24px;
	padding-top: 22px;
	border-top: 1px solid var(--line);
}

.refer-form .co-input--key {
	font-family: ui-monospace, "SF Mono", Menlo, monospace;
	font-size: 0.86rem;
	letter-spacing: 0.02em;
}

.refer-submit {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	gap: 10px;
	font-weight: 800;
	box-shadow: 0 8px 28px rgba(124, 58, 237, 0.4);
}
.refer-submit svg {
	flex-shrink: 0;
	transition: transform 0.2s ease;
}
.refer-submit:hover svg {
	transform: translateX(3px);
}

.refer-form-error,
.refer-form .form-error {
	display: none;
	margin: 0;
	padding: 11px 13px;
	background: rgba(248, 113, 113, 0.1);
	border: 1px solid rgba(248, 113, 113, 0.28);
	border-radius: var(--radius-sm);
	color: var(--danger);
	font-size: 0.82rem;
	line-height: 1.4;
}
.refer-form-error.visible,
.refer-form .form-error.visible {
	display: block;
}

.refer-result {
	margin-top: 22px;
	padding: 20px;
	border-radius: var(--radius);
	background: rgba(16, 185, 129, 0.06);
	border: 1px solid rgba(16, 185, 129, 0.22);
}
.refer-result[hidden] {
	display: none !important;
}

.refer-result__head {
	margin-bottom: 16px;
}

.refer-result__head h2 {
	margin: 0 0 6px;
	font-size: 1.05rem;
	font-weight: 800;
	color: var(--ink);
}

.refer-result__head p {
	margin: 0;
	font-size: 0.82rem;
	color: var(--muted);
	line-height: 1.45;
}

.refer-result__badge {
	display: inline-flex;
	margin-bottom: 10px;
	padding: 4px 10px;
	border-radius: 999px;
	font-size: 0.72rem;
	font-weight: 700;
	background: rgba(16, 185, 129, 0.14);
	border: 1px solid rgba(16, 185, 129, 0.32);
	color: var(--success);
}
.refer-result__badge[hidden] {
	display: none !important;
}

.refer-copy-block {
	display: flex;
	flex-direction: column;
	gap: 6px;
	margin-bottom: 14px;
}
.refer-copy-block:last-child {
	margin-bottom: 0;
}

.refer-copy-row {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: stretch;
}

.refer-copy-row .co-input {
	flex: 1;
	min-width: min(100%, 200px);
}

.refer-copy-row .co-input--code {
	border-color: rgba(16, 185, 129, 0.28);
	background: rgba(8, 8, 28, 0.65);
	font-family: ui-monospace, "SF Mono", Menlo, monospace;
	font-size: 0.88rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.refer-copy-row .btn {
	align-self: center;
	white-space: nowrap;
}

.refer-footer {
	margin-top: 24px;
	padding-top: 20px;
	border-top: 1px solid var(--line);
	text-align: center;
}

.refer-footer p {
	margin: 0 0 10px;
	font-size: 0.84rem;
	color: var(--muted);
}

.refer-back {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 0.88rem;
	font-weight: 700;
	color: var(--brand);
	text-decoration: none;
}
.refer-back:hover {
	color: #d8b4fe;
}

@media (max-width: 480px) {
	.refer-card { padding: 26px 18px 22px; }
	.refer-copy-row { flex-direction: column; }
	.refer-copy-row .btn { width: 100%; justify-content: center; }
}

/* ================================================================
   SUCCESS PAGE
   ================================================================ */
.success-page {
	min-height: 100vh; display: flex; align-items: center;
	justify-content: center; padding: 24px 18px;
	background: radial-gradient(ellipse 70% 50% at 50% -10%,
		rgba(176, 110, 247, 0.14), transparent), var(--bg);
}
.success-card {
	width: min(100%, 560px); background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)), var(--surface);
	border: 1px solid var(--line-bright); border-radius: var(--radius-xl);
	padding: 34px 30px 28px; box-shadow: var(--shadow-lg); text-align: center;
}
.success-header { margin-bottom: 18px; }
.success-logo { display: block; width: auto; height: 40px; max-width: 200px; margin: 0 auto; object-fit: contain; }
.success-logo-link { display: block; margin-bottom: 16px; text-decoration: none; }
.success-badge {
	display: inline-flex; align-items: center; justify-content: center;
	min-height: 32px; padding: 6px 12px; border-radius: 999px;
	background: color-mix(in srgb, var(--ok, #22c55e) 14%, transparent);
	border: 1px solid color-mix(in srgb, var(--ok, #22c55e) 38%, transparent);
	color: color-mix(in srgb, #8ee4ad 75%, #ffffff);
	font-size: 0.74rem; font-weight: 700; letter-spacing: 0.02em;
}
.success-card h1 { margin: 0 0 10px; font-size: clamp(1.45rem, 2.6vw, 1.85rem); line-height: 1.2; color: var(--ink); text-wrap: balance; }
.success-lead {
	margin: 0 auto; max-width: 48ch; color: var(--muted);
	font-size: 0.96rem; line-height: 1.6;
}
.status-line {
	min-height: 24px; font-size: 0.92rem; color: var(--muted);
	margin: 18px 0 18px; padding: 10px 12px;
	background: var(--surface-2); border: 1px solid var(--line);
	border-radius: var(--radius-sm);
}
.key-box {
	display: none; text-align: left;
	background: var(--brand-subtle); border: 1px solid var(--brand-border);
	border-radius: var(--radius); padding: 16px; margin: 18px 0 0;
}
.key-box.visible { display: block; }
.referral-box {
	display: none; text-align: left;
	background: var(--surface-2); border: 1px solid var(--line);
	border-radius: var(--radius); padding: 16px; margin-top: 18px;
}
.referral-box.visible { display: block; }
.referral-box strong { display: block; margin-bottom: 8px; color: var(--ink-soft); }
.referral-box p { margin: 0 0 8px; font-size: 0.88rem; color: var(--muted); }
.referral-link-label { margin-top: 14px !important; }
.referral-url { font-size: 0.75rem !important; }

.referral-section {
	padding: 56px 0;
	background: linear-gradient(180deg, var(--surface-2) 0%, var(--surface) 100%);
}
.referral-panel {
	display: grid;
	gap: 24px;
	padding: 28px;
	border-radius: var(--radius-lg);
	border: 1px solid var(--line);
	background: var(--surface);
	box-shadow: var(--shadow-sm);
}
@media (min-width: 768px) {
	.referral-panel {
		grid-template-columns: 1.2fr 0.8fr;
		align-items: start;
	}
}
.referral-panel h2 {
	margin: 8px 0 12px;
	font-size: clamp(1.35rem, 2.4vw, 1.75rem);
}
.referral-panel p { margin: 0 0 10px; color: var(--muted); }
.referral-panel__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 18px;
}
.referral-panel__hint {
	padding: 16px;
	border-radius: var(--radius);
	background: var(--brand-subtle);
	border: 1px solid var(--brand-border);
	font-size: 0.9rem;
}
.referral-panel__hint p:last-child { margin-bottom: 0; }
.key-box label {
	display: block; font-size: 0.7rem; font-weight: 800; text-transform: uppercase;
	letter-spacing: 0.06em; color: var(--brand); margin-bottom: 8px;
}
.key-row { display: flex; gap: 8px; align-items: stretch; flex-wrap: wrap; }
.key-row code {
	flex: 1; min-width: 0; word-break: break-all; padding: 10px 12px;
	background: var(--surface); border: 1px solid var(--line);
	border-radius: var(--radius-sm); font-size: 0.8rem;
}
.spinner {
	display: inline-block; width: 15px; height: 15px;
	border: 2px solid var(--brand-border); border-top-color: var(--brand);
	border-radius: 50%; animation: spin 0.75s linear infinite;
	vertical-align: middle; margin-right: 6px;
}
@keyframes spin { to { transform: rotate(360deg); } }
.success-actions { display: none; flex-direction: column; gap: 10px; margin-top: 14px; }
.success-actions.visible { display: flex; }
.next-steps {
	display: none; text-align: left; margin-top: 18px;
	padding: 16px; background: var(--surface-2); border-radius: var(--radius);
	font-size: 0.88rem; border: 1px solid var(--line);
}
.next-steps.visible { display: block; }
.next-steps ol { margin: 8px 0 0; padding-left: 20px; color: var(--muted); }
.next-steps li { margin-bottom: 8px; }
.next-steps strong { color: var(--ink-soft); }
.success-footer {
	margin-top: 18px; padding-top: 16px;
	border-top: 1px solid var(--line);
	display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.success-help { margin: 0; font-size: 0.85rem; color: var(--muted); }
.success-back { min-width: 180px; justify-content: center; }
.text-error { color: var(--danger); }

/* ================================================================
   RESPONSIVE — MOBILE ≤ 599px
   ================================================================ */
@media (max-width: 599px) {
	/* Sections */
	section { padding: 52px 0; }
	.section-head { margin-bottom: 32px; }
	.section-head h2 { font-size: 1.65rem; }
	.section-head p   { font-size: 0.94rem; }

	/* Header: tighter, no gap overflow */
	.site-header .container { gap: 8px; }
	.header-actions { gap: 6px; }
	.lang-switch a { min-width: 28px; padding: 0 6px; font-size: 0.65rem; }
	.btn-sm { padding: 0 10px; font-size: 0.78rem; min-height: 36px; }

	/* Hero */
	.hero { padding: 48px 0 64px; }
	.hero-eyebrow { font-size: 0.67rem; padding: 5px 10px; gap: 6px; }
	.hero h1 { font-size: 1.85rem; letter-spacing: -0.025em; margin-bottom: 16px; text-wrap: balance; }
	.hero-lead { font-size: 0.95rem; margin-bottom: 26px; }
	.hero-actions {
		flex-direction: column; align-items: stretch;
		max-width: 260px; margin-inline: auto; margin-bottom: 20px;
	}
	.hero-actions .btn { justify-content: center; }
	.hero-meta { font-size: 0.72rem; gap: 4px; flex-direction: column; }
	.hero-meta-sep { display: none; }
	.hero-mockup { margin-top: 36px; }
	.mockup-chrome { padding: 10px 14px; }
	.chrome-url { font-size: 0.65rem; }
	.mockup-body { padding: 18px 16px 14px; }
	.mockup-q { font-size: 0.95rem; }
	.mockup-option { padding: 11px 13px; font-size: 0.82rem; }
	.mockup-footer { padding: 11px 16px; flex-wrap: wrap; gap: 6px; }

	/* Stats: 2×3 grid */
	.stats-row { display: grid; grid-template-columns: 1fr 1fr; }
	.stat-item {
		border-right: none; border-bottom: 1px solid var(--line);
		padding: 18px 10px;
	}
	.stat-item:nth-child(odd) { border-right: 1px solid var(--line); }
	.stat-item:nth-last-child(-n+2) { border-bottom: none; }
	.stat-item strong { font-size: 1.25rem; }

	/* Cards: tighter padding */
	.why-card, .bento-card, .step, .engine-card { padding: 20px 16px; }
	.why-icon { width: 38px; height: 38px; }

	/* Engines: 2 columns */
	.engines-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
	.engine-card h3 { font-size: 0.88rem; }
	.engine-card p  { font-size: 0.78rem; }

	/* Steps: 1 column */
	.steps { grid-template-columns: 1fr; }

	/* Shop embed: stack and reduce size */
	.embed-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
	.embed-product-img { height: 52px; }

	/* Billing toggle: full width */
	.billing-toggle { width: 100%; max-width: 320px; }
	.billing-opt { padding: 7px 10px; font-size: 0.78rem; flex: 1; justify-content: center; }
	.save-badge { display: none; }

	/* Pricing */
	.pricing-col { padding: 22px 18px; }
	.pricing-col.is-featured { padding-top: 38px; }
	.plan-price-num { font-size: 2rem; }
	.plan-features li { font-size: 0.82rem; }

	/* FAQ */
	.faq-aside { position: static; }
	.faq-contact-card { padding: 20px 16px; }
	.faq-q { font-size: 0.88rem; }

	/* About */
	.about-grid { grid-template-columns: 1fr; }

	/* CTA band */
	.cta-band { padding: 56px 0; }
	.cta-band h2 { font-size: 1.5rem; }
	.cta-band-actions { flex-direction: column; align-items: stretch; max-width: 260px; margin-inline: auto; }
	.cta-band-actions .btn { justify-content: center; }

	/* Footer */
	.footer-grid { grid-template-columns: 1fr; gap: 22px; }
	.footer-bottom { flex-direction: column; text-align: center; gap: 4px; }

	/* Modal — bottom sheet on mobile */
	.co-overlay { align-items: flex-end; padding: 0; }
	.co-modal {
		width: 100%;
		border-radius: var(--radius-xl) var(--radius-xl) 0 0;
		max-height: 94dvh;
		transform: translateY(100%);
	}
	.co-modal::before { display: block; top: 10px; }
	.co-overlay.open .co-modal { transform: translateY(0) scale(1); }
	.co-header { padding: 28px 18px 0; }
	.co-billing-toggle { margin: 18px 18px 0; gap: 8px; padding: 5px; }
	.co-form { padding: 18px 18px calc(24px + env(safe-area-inset-bottom)); }
	.co-bill-btn { padding: 10px 10px 9px; }
	.co-bill-price { font-size: 0.92rem; }
	.co-close { top: 12px; right: 12px; }

	/* Success page */
	.success-page { padding: 20px 12px; align-items: flex-start; }
	.success-card { border-radius: var(--radius); padding: 24px 16px 20px; }
	.success-logo { height: 32px; }
	.success-logo-link { margin-bottom: 12px; }
	.success-badge { min-height: 30px; font-size: 0.68rem; padding: 5px 10px; }
	.success-card h1 { font-size: 1.28rem; }
	.success-lead { font-size: 0.88rem; max-width: 36ch; }
	.status-line { font-size: 0.84rem; text-align: left; }
	.key-box { padding: 14px; }
	.key-row { flex-direction: column; }
	.key-row .btn { width: 100%; justify-content: center; }
	.key-row code { width: 100%; font-size: 0.74rem; }
	.success-actions .btn { width: 100%; justify-content: center; }
	.next-steps { font-size: 0.82rem; padding: 14px; }
	.success-back { width: 100%; }
}

/* ── MOBILE-WIDE 400–599px ──────────────────────────────────── */
@media (max-width: 399px) {
	.engines-grid { grid-template-columns: 1fr; }
	.hero h1 { font-size: 1.75rem; }
}

/* ── TABLET 600–899px ───────────────────────────────────────── */
@media (min-width: 600px) and (max-width: 899px) {
	section { padding: 72px 0; }
	.hero { padding: 64px 0 80px; }
	.hero h1 { font-size: clamp(2rem, 5.5vw, 2.8rem); }
	.steps { grid-template-columns: repeat(2, 1fr); }
	.faq-layout { grid-template-columns: 1fr; }
	.faq-aside { position: static; }
	.pricing-grid { gap: 14px; }
	.bento .bento-wide { padding: 24px 22px; }

	/* Modal bottom-sheet on tablet too */
	.co-overlay { align-items: flex-end; padding: 0; }
	.co-modal {
		width: 100%;
		border-radius: var(--radius-xl) var(--radius-xl) 0 0;
		max-height: 90dvh;
		transform: translateY(100%);
	}
	.co-modal::before { display: block; }
	.co-overlay.open .co-modal { transform: translateY(0) scale(1); }
	.co-header { padding: 28px 24px 0; }
	.co-billing-toggle { margin: 20px 24px 0; }
	.co-form { padding: 20px 24px 36px; }
}

/* ================================================================
   LEGAL PAGES & COOKIE CONSENT
   ================================================================ */
.legal-header {
	padding: 16px 0;
	border-bottom: 1px solid var(--line);
	background: rgba(12, 12, 34, 0.94);
	backdrop-filter: blur(12px);
	position: sticky;
	top: 0;
	z-index: 50;
}
.legal-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}
.legal-header__lang {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 14px;
	border-radius: 999px;
	border: 1px solid var(--line);
	background: var(--surface);
	color: var(--muted);
	text-decoration: none;
	font-size: 0.82rem;
	font-weight: 600;
	transition: border-color 0.2s, color 0.2s;
}
.legal-header__lang:hover {
	border-color: var(--brand-border);
	color: var(--ink);
}

.legal-hero {
	padding: 56px 18px 40px;
	border-bottom: 1px solid var(--line);
	background:
		radial-gradient(ellipse 70% 80% at 50% -20%, rgba(176, 110, 247, 0.12), transparent),
		linear-gradient(180deg, rgba(19, 19, 64, 0.5), transparent);
}
.legal-hero__inner { max-width: 880px; }
.legal-badge {
	display: inline-block;
	padding: 4px 12px;
	border-radius: 999px;
	background: var(--brand-subtle);
	border: 1px solid var(--brand-border);
	color: #d8b4fe;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	margin-bottom: 16px;
}
.legal-hero h1 {
	margin: 0 0 14px;
	font-size: clamp(2rem, 5vw, 2.75rem);
	letter-spacing: -0.03em;
	line-height: 1.15;
	color: var(--ink);
}
.legal-lead {
	margin: 0 0 28px;
	max-width: 62ch;
	color: var(--muted);
	font-size: 1.02rem;
	line-height: 1.75;
}
.legal-meta-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
	gap: 12px;
	max-width: 720px;
}
.legal-meta-grid div {
	padding: 14px 16px;
	border-radius: var(--radius-sm);
	background: var(--surface);
	border: 1px solid var(--line);
}
.legal-meta-grid span {
	display: block;
	font-size: 0.72rem;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--muted);
	margin-bottom: 4px;
}
.legal-meta-grid strong {
	font-size: 0.92rem;
	color: var(--ink-soft);
	font-weight: 600;
}

.legal-layout {
	display: grid;
	grid-template-columns: 220px minmax(0, 1fr);
	gap: 40px;
	padding: 40px 18px 80px;
	align-items: start;
}
.legal-toc {
	position: sticky;
	top: 88px;
	padding: 18px 16px;
	border-radius: var(--radius);
	background: var(--surface);
	border: 1px solid var(--line);
}
.legal-toc__title {
	margin: 0 0 12px;
	font-size: 0.72rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--muted);
}
.legal-toc ol {
	margin: 0;
	padding: 0;
	list-style: none;
	counter-reset: toc;
}
.legal-toc li { margin: 0; }
.legal-toc a {
	display: block;
	padding: 7px 0;
	font-size: 0.8rem;
	line-height: 1.45;
	color: var(--muted);
	text-decoration: none;
	border-bottom: 1px solid transparent;
	transition: color 0.15s;
}
.legal-toc a:hover,
.legal-toc a:focus-visible {
	color: #d8b4fe;
}
.legal-toc a.is-active { color: var(--ink); font-weight: 600; }

.legal-article { min-width: 0; max-width: 780px; }
.legal-block {
	margin-bottom: 28px;
	padding: 28px 28px 24px;
	border-radius: var(--radius-lg);
	background: var(--surface);
	border: 1px solid var(--line);
	box-shadow: var(--shadow-sm);
}
.legal-block h2 {
	margin: 0 0 16px;
	padding-bottom: 12px;
	border-bottom: 1px solid var(--line);
	font-size: 1.2rem;
	letter-spacing: -0.02em;
	color: var(--ink);
}
.legal-block h3 {
	margin: 22px 0 10px;
	font-size: 0.98rem;
	color: #d4c4f0;
}
.legal-block p,
.legal-block li {
	margin: 0 0 12px;
	color: #b0a8cc;
	font-size: 0.94rem;
	line-height: 1.78;
}
.legal-block ul,
.legal-block ol {
	margin: 0 0 14px;
	padding-left: 1.35rem;
}
.legal-block li { margin-bottom: 8px; }
.legal-block a {
	color: #c4a8ff;
	text-decoration: underline;
	text-underline-offset: 3px;
}
.legal-block a:hover { color: #e9d5ff; }
.legal-block code {
	padding: 2px 7px;
	border-radius: 6px;
	background: rgba(255, 255, 255, 0.06);
	font-size: 0.84em;
	color: #ddd6fe;
}

.legal-notice {
	margin: 16px 0;
	padding: 16px 18px;
	border-radius: var(--radius-sm);
	border-left: 3px solid var(--brand);
	background: rgba(176, 110, 247, 0.08);
}
.legal-notice p:last-child { margin-bottom: 0; }
.legal-notice strong { color: #e9d5ff; }

.legal-defs {
	margin: 12px 0 0;
}
.legal-defs dt {
	margin: 14px 0 4px;
	font-weight: 700;
	color: var(--ink-soft);
	font-size: 0.9rem;
}
.legal-defs dd {
	margin: 0 0 8px 0;
	padding-left: 0;
	color: #a8a0c0;
	font-size: 0.92rem;
	line-height: 1.7;
}

.legal-table-wrap {
	overflow-x: auto;
	margin: 16px 0 8px;
	border-radius: var(--radius-sm);
	border: 1px solid var(--line);
}
.legal-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.86rem;
}
.legal-table th,
.legal-table td {
	padding: 12px 14px;
	text-align: left;
	vertical-align: top;
	border-bottom: 1px solid var(--line);
}
.legal-table th {
	background: rgba(255, 255, 255, 0.04);
	color: #d8c8f0;
	font-weight: 600;
	font-size: 0.78rem;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}
.legal-table tr:last-child td { border-bottom: none; }
.legal-table td { color: #a8a0c0; line-height: 1.65; }
.legal-table td:first-child {
	color: var(--ink-soft);
	font-weight: 500;
	white-space: nowrap;
}

.legal-page {
	padding: 48px 18px 72px;
	max-width: 720px;
}
.legal-page h1 {
	font-size: clamp(1.75rem, 4vw, 2.25rem);
	margin: 0 0 12px;
	letter-spacing: -0.02em;
}
.legal-meta {
	color: var(--muted);
	font-size: 0.88rem;
	margin: 0 0 36px;
	line-height: 1.6;
}
.legal-page section { margin-bottom: 32px; }
.legal-page h2 {
	font-size: 1.15rem;
	margin: 0 0 12px;
	color: #e8e0f8;
}
.legal-page h3 {
	font-size: 0.95rem;
	margin: 18px 0 8px;
	color: #c8b8e8;
}
.legal-page p,
.legal-page li {
	color: #a8a0c0;
	line-height: 1.7;
	font-size: 0.92rem;
}
.legal-page ul { margin: 0; padding-left: 1.25rem; }
.legal-page li { margin-bottom: 6px; }
.legal-page a { color: var(--brand); }
.legal-footer { padding-top: 0; border-top: 1px solid var(--line); }
.legal-footer .footer-bottom {
	border-top: none;
	padding: 28px 18px 40px;
	text-align: center;
	color: var(--muted);
	font-size: 0.88rem;
}
.legal-footer a { color: #c4a8ff; text-decoration: none; }
.legal-footer a:hover { text-decoration: underline; }

@media (max-width: 900px) {
	.legal-layout {
		grid-template-columns: 1fr;
		gap: 24px;
		padding-top: 24px;
	}
	.legal-toc {
		position: static;
		display: none;
	}
	.legal-block { padding: 22px 18px 18px; }
	.legal-hero { padding-top: 36px; }
}

.cookie-consent {
	position: fixed; left: 0; right: 0; bottom: 0; z-index: 9999;
	padding: 14px 0 calc(14px + env(safe-area-inset-bottom));
	background: rgba(10, 10, 28, 0.96);
	border-top: 1px solid var(--line-bright);
	box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.35);
	transform: translateY(110%);
	opacity: 0;
	transition: transform 0.3s ease, opacity 0.3s ease;
}
.cookie-consent.is-visible {
	transform: translateY(0);
	opacity: 1;
}
.cookie-consent__inner {
	display: flex; align-items: center; justify-content: space-between;
	gap: 16px; flex-wrap: wrap;
}
.cookie-consent__text {
	margin: 0; font-size: 0.82rem; color: #a8a0c0; line-height: 1.55;
	flex: 1; min-width: 200px;
}
.cookie-consent__text a { color: var(--brand); }
.cookie-consent__btn { flex-shrink: 0; padding: 10px 18px; font-size: 0.82rem; }
@media (max-width: 640px) {
	.cookie-consent__inner { flex-direction: column; align-items: stretch; }
	.cookie-consent__btn { width: 100%; }
}

/* ═══════════════════════════════════════════════════════════════
   TRUST STRIP (pricing section)
════════════════════════════════════════════════════════════════ */
.trust-strip {
	display: flex; flex-wrap: wrap; justify-content: center;
	gap: 10px 28px;
	list-style: none;
	margin: 4px auto 30px; padding: 0;
	max-width: 880px;
}
.trust-strip li {
	display: inline-flex; align-items: center; gap: 8px;
	font-size: 0.8rem; font-weight: 600; color: var(--muted);
}
.trust-strip svg { color: var(--brand); flex-shrink: 0; }
.trust-strip a { color: inherit; text-decoration-color: var(--brand-border); }
.trust-strip a:hover { color: var(--brand); }
@media (max-width: 640px) {
	.trust-strip { flex-direction: column; align-items: center; gap: 8px; }
}

/* ════════════════════════════════════════════════════════════════
   PRODUCT SHOTS — shared "app window" frame (extends mockup language)
════════════════════════════════════════════════════════════════ */
.app-shot {
	background: var(--surface-2);
	border: 1px solid var(--line-bright);
	border-radius: var(--radius-xl);
	overflow: hidden;
	box-shadow: var(--shadow-lg), var(--glow-sm);
}
.app-shot__bar { height: 4px; background: linear-gradient(90deg, var(--brand) 0%, #818cf8 60%, #06b6d4 100%); }
.app-shot__chrome {
	padding: 11px 16px; border-bottom: 1px solid var(--line);
	display: flex; align-items: center; gap: 8px;
}
.app-shot__chrome .cd { width: 9px; height: 9px; border-radius: 50%; flex: none; }
.app-shot__chrome .cd.r { background: rgba(239, 68, 68, 0.55); }
.app-shot__chrome .cd.y { background: rgba(245, 158, 11, 0.55); }
.app-shot__chrome .cd.g { background: rgba(16, 185, 129, 0.55); }
.app-shot__tab {
	margin-left: 8px; display: inline-flex; align-items: center; gap: 7px;
	font-size: 0.74rem; font-weight: 600; color: var(--ink-soft);
}
.app-shot__tab svg { color: var(--brand); flex: none; }
.app-shot__tab .muted { color: var(--muted); font-weight: 500; }

/* ── AI GENERATOR SHOWCASE ─────────────────────────────────────── */
.ai-showcase { position: relative; margin: 52px auto 0; max-width: 940px; }
.ai-showcase::before {
	content: ''; position: absolute; bottom: -34px; left: 12%; right: 12%;
	height: 60px; background: radial-gradient(ellipse, rgba(176, 110, 247, 0.32) 0%, transparent 70%);
	filter: blur(24px); z-index: -1;
}

/* ── ANALYTICS DASHBOARD SHOT ──────────────────────────────────── */
.dash-shot__body { padding: 18px; display: flex; flex-direction: column; gap: 14px; }
.dash-kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.dash-kpi { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 12px 13px; }
.dash-kpi__v { font-size: 1.32rem; font-weight: 800; line-height: 1; color: var(--ink); }
.dash-kpi__v.brand {
	background: var(--grad-text); background-size: 300% 300%; animation: grad-shift 5s ease infinite;
	-webkit-background-clip: text; background-clip: text; color: transparent;
}
.dash-kpi__l { font-size: 0.62rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: var(--muted); margin-top: 7px; }
.dash-kpi__d { font-size: 0.64rem; font-weight: 700; color: var(--success); margin-top: 3px; }
.dash-panel { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 14px 15px; }
.dash-panel__t { font-size: 0.66rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--muted); margin: 0 0 13px; }
.dash-bars { display: flex; align-items: flex-end; gap: 9px; height: 96px; }
.dash-bar { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: flex-end; gap: 7px; height: 100%; }
.dash-bar__fill { width: 100%; border-radius: 5px 5px 0 0; background: var(--grad-brand); opacity: 0.9; min-height: 6px; }
.dash-bar:last-child .dash-bar__fill { background: linear-gradient(180deg, #f87171, #ef4444); opacity: 0.8; }
.dash-bar__lbl { font-size: 0.58rem; color: var(--muted); }
.dash-prod { display: flex; align-items: center; gap: 10px; }
.dash-prod + .dash-prod { margin-top: 9px; }
.dash-prod__name { font-size: 0.74rem; color: var(--ink-soft); width: 92px; flex: none; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.dash-prod__track { flex: 1; height: 7px; background: var(--surface-3); border-radius: 999px; overflow: hidden; }
.dash-prod__fill { height: 100%; background: linear-gradient(90deg, var(--brand), #818cf8); border-radius: 999px; }
.dash-prod__pct { font-size: 0.7rem; font-weight: 800; color: var(--brand); width: 32px; text-align: right; flex: none; font-variant-numeric: tabular-nums; }

/* ── AI CREDITS (refined — replaces inline styles, unifies brand) ── */
.ai-credits {
	margin-top: 44px; padding: 28px 26px;
	border: 1px solid var(--line); border-radius: var(--radius-lg);
	background: var(--surface);
}
.ai-credits__head { margin-bottom: 20px; }
.ai-credits__head h3 { margin: 8px 0 6px; font-size: 1.4rem; font-weight: 800; color: var(--ink); letter-spacing: -0.02em; }
.ai-credits__head p { margin: 0; color: var(--muted); max-width: 62ch; }
.credit-packs { display: grid; gap: 12px; grid-template-columns: repeat(3, 1fr); }
@media (max-width: 560px) { .credit-packs { grid-template-columns: 1fr; } }
.credit-pack {
	position: relative; text-align: center;
	border: 1px solid var(--line); border-radius: var(--radius);
	background: var(--surface-2); padding: 18px 16px;
}
.credit-pack.best { border-color: var(--brand); box-shadow: var(--glow-sm); }
.credit-pack__badge {
	position: absolute; top: -0.7rem; left: 50%; transform: translateX(-50%);
	background: var(--grad-brand); color: #fff; white-space: nowrap;
	font-size: 0.64rem; font-weight: 800; letter-spacing: 0.03em;
	padding: 3px 11px; border-radius: 999px;
}
.credit-pack__name { font-weight: 700; color: var(--ink-soft); margin: 0; font-size: 0.9rem; }
.credit-pack__price { font-size: 1.75rem; font-weight: 800; color: var(--ink); margin: 4px 0 2px; }
.credit-pack__credits { color: var(--muted); margin: 0; font-size: 0.85rem; }
.ai-credits__note { color: var(--muted); margin: 16px 0 0; font-size: 0.85rem; }

/* 3-up funnel steps (override the 4-col default) */
@media (min-width: 1000px) { .steps.steps-3 { grid-template-columns: repeat(3, 1fr); } }

/* lean FAQ (no aside) — centered single column */
.faq-list.faq-list--narrow { max-width: 740px; margin: 0 auto; }

/* ════════════════════════════════════════════════════════════════
   SHOPPER FLOW STRIP — shows the actual quiz → match → add to cart
════════════════════════════════════════════════════════════════ */
.flow { display: grid; gap: 16px; }
@media (min-width: 900px) { .flow { grid-template-columns: repeat(3, 1fr); gap: 20px; } }
.flow-card {
	background: var(--surface); border: 1px solid var(--line-bright);
	border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow);
	display: flex; flex-direction: column;
}
.flow-card.is-result { border-color: var(--brand-border); box-shadow: var(--shadow), var(--glow-sm); }
.flow-card__cap {
	display: flex; align-items: center; gap: 9px; padding: 11px 15px;
	border-bottom: 1px solid var(--line);
	font-size: 0.64rem; font-weight: 800; letter-spacing: 0.09em; text-transform: uppercase; color: var(--muted);
}
.flow-card__cap .n {
	width: 18px; height: 18px; border-radius: 50%; flex: none;
	background: var(--brand-subtle); border: 1px solid var(--brand-border); color: var(--brand);
	display: grid; place-items: center; font-size: 0.6rem; font-weight: 800;
}
.flow-card.is-result .flow-card__cap { color: var(--brand); }
.flow-card__body { padding: 16px 16px 18px; flex: 1; }
.flow-bar { height: 3px; background: var(--surface-3); border-radius: 999px; margin-bottom: 15px; overflow: hidden; }
.flow-bar span { display: block; height: 100%; background: linear-gradient(90deg, var(--brand), #818cf8); border-radius: inherit; }
.flow-q { font-size: 0.94rem; font-weight: 700; color: var(--ink); margin: 0 0 12px; line-height: 1.35; }
.flow-opts { display: grid; gap: 7px; }
.flow-opt {
	padding: 9px 12px; border: 1px solid var(--line-bright); border-radius: 9px;
	font-size: 0.8rem; color: var(--ink-soft);
}
.flow-opt.sel { border-color: var(--brand); background: var(--brand-subtle); color: var(--ink); font-weight: 600; }
/* result card */
.flow-prod { border: 1px solid var(--brand); border-radius: 12px; overflow: hidden; background: var(--surface-2); }
.flow-prod__img {
	height: 92px; position: relative; display: grid; place-items: center;
	background: linear-gradient(135deg, rgba(176,110,247,.18), rgba(129,140,248,.07));
	color: var(--brand);
}
.flow-match {
	position: absolute; top: 8px; right: 8px;
	background: var(--brand); color: #fff; font-size: 0.6rem; font-weight: 800;
	padding: 3px 8px; border-radius: 999px;
}
.flow-prod__body { padding: 12px 13px 13px; text-align: center; }
.flow-prod__name { font-size: 0.88rem; font-weight: 700; color: var(--ink); margin: 0; }
.flow-prod__price { font-size: 1.05rem; font-weight: 800; color: var(--ink); margin: 5px 0 11px; }
.flow-atc {
	display: block; background: var(--grad-brand); color: #fff;
	border-radius: 9px; padding: 10px; font-size: 0.82rem; font-weight: 800; letter-spacing: .01em;
}
.flow-more { font-size: 0.7rem; color: var(--muted); margin: 11px 0 0; text-align: center; }

/* ════════════════════════════════════════════════════════════════
   USE-CASE CARDS — concrete "quizzes you can build"
════════════════════════════════════════════════════════════════ */
.use-grid { display: grid; gap: 12px; }
@media (min-width: 700px)  { .use-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .use-grid { grid-template-columns: repeat(3, 1fr); } }
.use-card {
	background: var(--surface); border: 1px solid var(--line);
	border-radius: var(--radius); padding: 20px 18px;
	transition: border-color 0.2s, transform 0.25s, box-shadow 0.25s;
}
.use-card:hover { border-color: var(--brand-border); transform: translateY(-3px); box-shadow: var(--glow-sm); }
.use-tag {
	display: inline-block; margin-bottom: 11px;
	font-size: 0.6rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em;
	color: #d09cff; background: var(--brand-subtle); border: 1px solid var(--brand-border);
	border-radius: 999px; padding: 3px 9px;
}
.use-card h3 { margin: 0 0 9px; font-size: 1rem; font-weight: 700; color: var(--ink); }
.use-flow { margin: 0; font-size: 0.82rem; color: var(--muted); line-height: 1.65; }
.use-flow b { color: var(--brand); font-weight: 700; }
.use-note { text-align: center; margin: 26px 0 0; font-size: 0.85rem; color: var(--muted); }

/* ════════════════════════════════════════════════════════════════
   AI SHOWCASE v2 — friendly, animated, no terminal.
   "What you ask for" → "What you get". Motion is CSS-only and
   plays when the card scrolls into view (.is-visible), so it costs
   0 KB and respects prefers-reduced-motion via the global rule.
════════════════════════════════════════════════════════════════ */
.ai2 { display: grid; }
@media (min-width: 820px) { .ai2 { grid-template-columns: 1fr 1fr; } }

.ai2__side { padding: 30px 30px 34px; }
.ai2__side + .ai2__side { border-top: 1px solid var(--line); }
@media (min-width: 820px) {
	.ai2__side + .ai2__side { border-top: none; border-left: 1px solid var(--line); }
}
.ai2__label {
	font-size: 0.68rem; font-weight: 800; letter-spacing: 0.13em; text-transform: uppercase;
	color: var(--muted); margin: 0 0 18px;
}

/* — the ask — */
.ai2__quote {
	font-size: clamp(1.15rem, 2.2vw, 1.42rem); font-weight: 700; line-height: 1.4;
	color: var(--ink); margin: 0 0 26px; letter-spacing: -0.015em;
}
.ai2__quote span { color: var(--brand); }

/* scanning bar */
.scan { margin-bottom: 26px; }
.scan__row { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 9px; }
.scan__txt { font-size: 0.92rem; color: var(--ink-soft); font-weight: 600; }
.scan__num { font-size: 0.92rem; color: var(--brand); font-weight: 800; font-variant-numeric: tabular-nums; }
.scan__bar { display: block; height: 6px; border-radius: 999px; background: var(--surface-3); overflow: hidden; }
.scan__fill {
	display: block; height: 100%; width: 0; border-radius: inherit;
	background: linear-gradient(90deg, var(--brand), #818cf8, #06b6d4);
}
.is-visible .scan__fill { animation: scanFill 1.9s cubic-bezier(0.4, 0, 0.2, 1) 0.25s forwards; }
@keyframes scanFill { from { width: 0; } to { width: 100%; } }

/* friendly ticking steps (replaces the terminal log) */
.ai2__steps { display: flex; flex-direction: column; gap: 15px; margin: 0; padding: 0; list-style: none; }
.ai2__steps li { display: flex; align-items: center; gap: 13px; font-size: 0.97rem; color: var(--ink-soft); }
.tick {
	flex: none; width: 26px; height: 26px; border-radius: 50%;
	background: rgba(16, 185, 129, 0.14); border: 1px solid rgba(16, 185, 129, 0.4);
	color: var(--success); display: grid; place-items: center;
	transform: scale(0.4); opacity: 0;
}
.is-visible .tick { animation: tickPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards; }
@keyframes tickPop { to { transform: scale(1); opacity: 1; } }

/* — the result — */
.ai2__ready {
	display: inline-flex; align-items: center; gap: 7px;
	font-size: 0.76rem; font-weight: 800; color: var(--success);
	background: rgba(16, 185, 129, 0.1); border: 1px solid rgba(16, 185, 129, 0.3);
	border-radius: 999px; padding: 5px 13px;
	opacity: 0; transform: scale(0.85);
}
.is-visible .ai2__ready { animation: tickPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 2.2s forwards; }
.ai2__head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 18px; }
.ai2__head .ai2__label { margin: 0; }

.ai2__qs { display: flex; flex-direction: column; gap: 11px; }
.qrow {
	display: flex; align-items: center; gap: 13px;
	background: var(--surface); border: 1px solid var(--line);
	border-radius: 14px; padding: 15px 17px;
	opacity: 0; transform: translateY(14px);
}
.is-visible .qrow { animation: rise 0.6s cubic-bezier(0.2, 0.7, 0.3, 1) forwards; }
.qrow__n {
	flex: none; width: 26px; height: 26px; border-radius: 50%;
	background: var(--brand-subtle); border: 1px solid var(--brand-border);
	color: var(--brand); font-size: 0.75rem; font-weight: 800;
	display: grid; place-items: center;
}
.qrow__t { font-size: 0.95rem; font-weight: 600; color: var(--ink); line-height: 1.35; }
@keyframes rise { to { opacity: 1; transform: none; } }

.ai2__match {
	display: flex; align-items: center; gap: 8px;
	margin: 15px 0 0; font-size: 0.87rem; color: var(--muted);
	opacity: 0;
}
.ai2__match b { color: var(--ink-soft); font-weight: 700; }
.is-visible .ai2__match { animation: rise 0.6s ease 2.35s forwards; }

.ai2__cta { display: flex; gap: 10px; margin-top: 20px; opacity: 0; }
.is-visible .ai2__cta { animation: rise 0.6s ease 2.5s forwards; }
.ai2__btn {
	flex: 1; text-align: center; font-size: 0.88rem; font-weight: 700;
	border-radius: 11px; padding: 12px;
}
.ai2__btn.ghost { border: 1px solid var(--line-bright); color: var(--ink-soft); }
.ai2__btn.solid { background: var(--grad-brand); color: #fff; box-shadow: 0 6px 20px rgba(176, 110, 247, 0.3); }

/* stagger */
.is-visible [data-s="1"] { animation-delay: 0.45s; }
.is-visible [data-s="2"] { animation-delay: 0.95s; }
.is-visible [data-s="3"] { animation-delay: 1.45s; }
.is-visible [data-s="4"] { animation-delay: 1.75s; }
.is-visible [data-s="5"] { animation-delay: 1.95s; }

/* ════════════════════════════════════════════════════════════════
   MOTION SYSTEM — one reusable reveal used by every section.
   A container carries [data-animate] (the existing IntersectionObserver
   adds .is-visible); children carry .rv and style="--i:N" for stagger.
   Pure CSS, 0 KB. The global prefers-reduced-motion rule neutralises it.
════════════════════════════════════════════════════════════════ */
.rv { opacity: 0; transform: translateY(18px); }
.is-visible .rv { animation: rvIn 0.62s cubic-bezier(0.2, 0.7, 0.3, 1) forwards; animation-delay: calc(var(--i, 0) * 95ms); }
@keyframes rvIn { to { opacity: 1; transform: none; } }

/* hero plays on load rather than on scroll (it is above the fold) */
.hero .hero-eyebrow,
.hero h1,
.hero .hero-lead,
.hero .hero-actions,
.hero .hero-meta,
.hero .hero-mockup { opacity: 0; animation: rvIn 0.75s cubic-bezier(0.2, 0.7, 0.3, 1) forwards; }
.hero .hero-eyebrow { animation-delay: 0.05s; }
.hero h1            { animation-delay: 0.15s; }
.hero .hero-lead    { animation-delay: 0.28s; }
.hero .hero-actions { animation-delay: 0.40s; }
.hero .hero-meta    { animation-delay: 0.50s; }
.hero .hero-mockup  { animation-delay: 0.60s; }

/* more air between sections (Typeform-ish breathing room) */
section { padding: 104px 0; }
@media (max-width: 700px) { section { padding: 72px 0; } }
.section-head { margin-bottom: 64px; }

/* ── shopper flow: cards arrive left → right, result lands last ── */
.is-visible .flow-card { animation: rvIn 0.6s cubic-bezier(0.2, 0.7, 0.3, 1) forwards; }
.flow-card { opacity: 0; transform: translateY(18px); }
.is-visible .flow-card:nth-child(1) { animation-delay: 0.05s; }
.is-visible .flow-card:nth-child(2) { animation-delay: 0.25s; }
.is-visible .flow-card:nth-child(3) { animation-delay: 0.48s; }
.is-visible .flow-bar span { animation: growX 0.9s cubic-bezier(0.2, 0.7, 0.3, 1) 0.4s backwards; transform-origin: left; }
.is-visible .flow-card.is-result .flow-atc { animation: tickPop 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) 0.95s backwards; }
.is-visible .flow-match { animation: tickPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 1.1s backwards; }

/* ── analytics: bars grow instead of just appearing ── */
@keyframes growX { from { transform: scaleX(0); } to { transform: scaleX(1); } }
@keyframes growY { from { transform: scaleY(0); } to { transform: scaleY(1); } }
.is-visible .dash-bar__fill { transform-origin: bottom; animation: growY 0.85s cubic-bezier(0.2, 0.7, 0.3, 1) backwards; }
.is-visible .dash-bar:nth-child(1) .dash-bar__fill { animation-delay: 0.15s; }
.is-visible .dash-bar:nth-child(2) .dash-bar__fill { animation-delay: 0.25s; }
.is-visible .dash-bar:nth-child(3) .dash-bar__fill { animation-delay: 0.35s; }
.is-visible .dash-bar:nth-child(4) .dash-bar__fill { animation-delay: 0.45s; }
.is-visible .dash-bar:nth-child(5) .dash-bar__fill { animation-delay: 0.55s; }
.is-visible .dash-prod__fill { transform-origin: left; animation: growX 0.95s cubic-bezier(0.2, 0.7, 0.3, 1) backwards; }
.is-visible .dash-prod:nth-child(2) .dash-prod__fill { animation-delay: 0.3s; }
.is-visible .dash-prod:nth-child(3) .dash-prod__fill { animation-delay: 0.42s; }
.is-visible .dash-prod:nth-child(4) .dash-prod__fill { animation-delay: 0.54s; }
.is-visible .dash-kpi { opacity: 0; animation: rvIn 0.6s ease forwards; }
.is-visible .dash-kpi:nth-child(2) { animation-delay: 0.1s; }
.is-visible .dash-kpi:nth-child(3) { animation-delay: 0.2s; }

/* ── warmer cards across the page ── */
.use-card, .step, .flow-card, .pricing-col { border-radius: var(--radius-lg); }
.faq-item { transition: border-color 0.2s; }

/* plain-language reassurance under the hero lead */
.hero-plain {
	max-width: 620px; margin: 0 auto 30px;
	font-size: 0.95rem; color: var(--muted);
}
.hero .hero-plain { opacity: 0; animation: rvIn 0.75s cubic-bezier(0.2, 0.7, 0.3, 1) 0.34s forwards; }

/* ════════════════════════════════════════════════════════════════
   COMPARISON / ALTERNATIVE PAGES
════════════════════════════════════════════════════════════════ */
.cmp-hero { padding: 76px 0 8px; }
.cmp-hero h1 {
	font-size: clamp(2rem, 4.4vw, 3rem); font-weight: 800; letter-spacing: -0.03em;
	line-height: 1.1; margin: 14px 0 18px; color: var(--ink); text-wrap: balance;
}
.cmp-hero .lede { font-size: 1.08rem; color: var(--ink-soft); max-width: 68ch; margin: 0; line-height: 1.7; }
.cmp-updated { font-size: 0.78rem; color: var(--muted); margin: 18px 0 0; }

.cmp-wrap { max-width: 860px; margin-inline: auto; }
.cmp-wrap h2 {
	font-size: clamp(1.45rem, 2.6vw, 1.9rem); font-weight: 800; letter-spacing: -0.02em;
	color: var(--ink); margin: 52px 0 16px;
}
.cmp-wrap h3 { font-size: 1.05rem; font-weight: 700; color: var(--ink); margin: 30px 0 10px; }
.cmp-wrap p  { color: var(--ink-soft); line-height: 1.75; margin: 0 0 16px; }
.cmp-wrap ul { color: var(--ink-soft); line-height: 1.75; padding-left: 1.2rem; margin: 0 0 18px; }
.cmp-wrap li { margin-bottom: 8px; }
.cmp-wrap li::marker { color: var(--brand); }
.cmp-wrap a { color: var(--brand); }

.tldr {
	background: var(--surface); border: 1px solid var(--brand-border);
	border-left: 3px solid var(--brand); border-radius: var(--radius);
	padding: 22px 24px; margin: 26px 0 8px;
}
.tldr strong { color: var(--ink); }
.tldr p:last-child { margin-bottom: 0; }

.cmp-table-wrap { overflow-x: auto; margin: 22px 0 28px; border: 1px solid var(--line); border-radius: var(--radius); }
.cmp-table { border-collapse: collapse; width: 100%; min-width: 620px; background: var(--surface); font-size: 0.92rem; }
.cmp-table th, .cmp-table td { padding: 13px 16px; text-align: left; border-bottom: 1px solid var(--line); vertical-align: top; }
.cmp-table thead th {
	background: var(--surface-2); color: var(--muted); font-size: 0.72rem;
	text-transform: uppercase; letter-spacing: 0.08em; font-weight: 700;
}
.cmp-table thead th.us { color: var(--brand); }
.cmp-table tbody tr:last-child td { border-bottom: none; }
.cmp-table td:first-child { color: var(--ink); font-weight: 600; }
.cmp-table .yes { color: var(--success); font-weight: 700; }
.cmp-table .no  { color: var(--muted); }

.verdicts { display: grid; gap: 14px; margin: 22px 0 8px; }
@media (min-width: 720px) { .verdicts { grid-template-columns: 1fr 1fr; } }
.verdict { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; }
.verdict.us { border-color: var(--brand-border); }
.verdict h3 { margin: 0 0 12px; font-size: 1rem; }
.verdict ul { margin: 0; padding-left: 1.1rem; font-size: 0.92rem; }

.cmp-cta {
	text-align: center; background: var(--surface); border: 1px solid var(--line);
	border-radius: var(--radius-lg); padding: 36px 28px; margin: 52px 0 0;
}
.cmp-cta h2 { margin: 0 0 10px; }
.cmp-cta p { margin: 0 auto 22px; max-width: 52ch; }
.cmp-cta .btn { margin: 0 6px 8px; }

.cmp-nav { display: flex; flex-wrap: wrap; gap: 10px; margin: 30px 0 0; }
.cmp-nav a {
	font-size: 0.86rem; font-weight: 600; color: var(--ink-soft); text-decoration: none;
	background: var(--surface-2); border: 1px solid var(--line);
	border-radius: 999px; padding: 8px 15px;
}
.cmp-nav a:hover { border-color: var(--brand-border); color: var(--ink); }

/* ════════════════════════════════════════════════════════════════
   FREE-DOWNLOAD EMAIL GATE MODAL
════════════════════════════════════════════════════════════════ */
.fg-overlay {
	position: fixed; inset: 0; z-index: 1000; display: none;
	align-items: center; justify-content: center; padding: 20px;
	background: rgba(8, 8, 20, 0.72); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
.fg-overlay.open { display: flex; animation: fgFade 0.2s ease; }
@keyframes fgFade { from { opacity: 0; } to { opacity: 1; } }
.fg-modal {
	position: relative; width: 100%; max-width: 420px;
	background: var(--surface); border: 1px solid var(--line-bright);
	border-radius: var(--radius-lg); padding: 30px 28px;
	box-shadow: var(--shadow-lg), var(--glow-sm);
}
.fg-close {
	position: absolute; top: 12px; right: 12px; padding: 6px; line-height: 0;
	background: none; border: none; color: var(--muted); cursor: pointer; border-radius: 6px;
}
.fg-close:hover { color: var(--ink); background: var(--surface-3); }
.fg-modal h3 { margin: 0 0 8px; font-size: 1.35rem; font-weight: 800; letter-spacing: -0.02em; color: var(--ink); }
.fg-sub { margin: 0 0 18px; color: var(--muted); font-size: 0.95rem; line-height: 1.55; }
.fg-field { display: flex; flex-direction: column; }
.fg-field input {
	padding: 13px 15px; border-radius: 11px; border: 1px solid var(--line-bright);
	background: var(--surface-3); color: var(--ink); font-size: 1rem; font-family: inherit;
}
.fg-field input::placeholder { color: var(--muted); }
.fg-field input:focus { outline: 2px solid var(--brand); outline-offset: 1px; border-color: var(--brand); }
.fg-btn { margin-top: 14px; width: 100%; }
a.fg-btn { text-align: center; }
.fg-err { color: var(--danger); font-size: 0.85rem; margin: 10px 0 0; min-height: 1em; }
.fg-note { font-size: 0.78rem; color: var(--muted); margin: 16px 0 0; text-align: center; line-height: 1.5; }
.fg-note a { color: var(--brand); }
.fg-done { text-align: center; }
.fg-ico {
	width: 54px; height: 54px; border-radius: 50%; margin: 0 auto 16px;
	background: var(--brand-subtle); border: 1px solid var(--brand-border); color: var(--brand);
	display: grid; place-items: center;
}
