/* ============================================================
   ReferralRunUp one-page landing (light-first)
   Brand: primary #8C37FB · dark #100523 · light #FFFFFF
   Fonts: Syne (headings/body) · Fira Code (mono accents)
   ============================================================ */

:root {
	--purple: #8c37fb;
	--purple-soft: #a967ff;
	--purple-deep: #5c1bb3;
	--dark: #100523;
	--dark-2: #180a33;
	--bg: #ffffff;
	--bg-soft: #f7f3fd;
	--ink: #100523;
	--ink-dim: rgba(16, 5, 35, 0.68);
	--ink-faint: rgba(16, 5, 35, 0.46);
	--line: rgba(16, 5, 35, 0.1);
	--card: #ffffff;
	--shadow-sm: 0 2px 10px rgba(16, 5, 35, 0.05);
	--shadow-md: 0 14px 40px rgba(16, 5, 35, 0.09);
	--green: #059669;
	--blue: #2563eb;
	--font-body: "Syne", system-ui, sans-serif;
	--font-mono: "Fira Code", ui-monospace, monospace;
	--radius: 18px;
	--container: 1160px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
	font-family: var(--font-body);
	background: var(--bg);
	color: var(--ink);
	line-height: 1.6;
	font-size: 17px;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

.container {
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 24px;
}

.container--narrow { max-width: 860px; }

.mono { font-family: var(--font-mono); }

section { padding: 110px 0; position: relative; }

/* Syne runs wide by nature; weight 700 + tight tracking keeps headings compact */
h1, h2, h3 { font-weight: 700; line-height: 1.12; letter-spacing: -0.035em; }

h1 { font-size: clamp(2.3rem, 4.6vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); margin-bottom: 20px; letter-spacing: -0.025em; }
h3 { font-size: 1.25rem; margin-bottom: 10px; letter-spacing: -0.015em; }

h1 .dim, h2 .dim { color: var(--ink-faint); }

.grad {
	background: linear-gradient(100deg, var(--purple) 0%, var(--purple-deep) 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.eyebrow {
	display: inline-block;
	font-family: var(--font-mono);
	font-size: 0.72rem;
	font-weight: 500;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--purple-deep);
	background: rgba(140, 55, 251, 0.08);
	border: 1px solid rgba(140, 55, 251, 0.28);
	border-radius: 999px;
	padding: 6px 15px;
	margin-bottom: 20px;
}

.skip-link {
	position: absolute;
	left: -9999px;
	top: 0;
	background: var(--purple);
	color: #fff;
	padding: 10px 18px;
	z-index: 200;
}
.skip-link:focus { left: 12px; top: 12px; }

/* ---------- dark band override ---------- */

.section--dark {
	background: var(--dark);
	color: #fff;
}
.section--dark h2 .dim { color: rgba(255, 255, 255, 0.4); }
.section--dark .eyebrow,
.hero .eyebrow {
	color: var(--purple-soft);
	background: rgba(169, 103, 255, 0.12);
	border-color: rgba(169, 103, 255, 0.38);
}

/* ---------- buttons ---------- */

.btn {
	display: inline-block;
	font-family: var(--font-body);
	font-weight: 700;
	font-size: 1rem;
	padding: 15px 30px;
	border-radius: 999px;
	text-decoration: none;
	transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
	border: 1px solid transparent;
	cursor: pointer;
	text-align: center;
}

.btn--sm { padding: 10px 22px; font-size: 0.92rem; }
.btn--block { display: block; width: 100%; }

.btn--primary {
	background: linear-gradient(120deg, var(--purple-soft), var(--purple));
	color: #fff;
	box-shadow: 0 8px 24px rgba(140, 55, 251, 0.32);
	position: relative;
	overflow: hidden;
}

/* passing light shimmer */
.btn--primary::after {
	content: "";
	position: absolute;
	top: 0;
	left: -70%;
	width: 45%;
	height: 100%;
	background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.35), transparent);
	transform: skewX(-20deg);
	animation: shimmer 3.4s ease-in-out infinite;
}

@keyframes shimmer {
	0% { left: -70%; }
	55% { left: 135%; }
	100% { left: 135%; }
}
.btn--primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 14px 32px rgba(140, 55, 251, 0.42);
}

.btn--ghost {
	border-color: rgba(16, 5, 35, 0.16);
	color: var(--ink);
	background: #fff;
}
.btn--ghost:hover { border-color: rgba(16, 5, 35, 0.35); transform: translateY(-2px); box-shadow: var(--shadow-sm); }

.btn--light { background: #fff; color: var(--purple-deep); }
.btn--light:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(0, 0, 0, 0.28); }

.btn--ghost-light { border-color: rgba(255, 255, 255, 0.45); color: #fff; }
.btn--ghost-light:hover { background: rgba(255, 255, 255, 0.12); transform: translateY(-2px); }

/* ---------- nav ---------- */

.nav {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(16, 5, 35, 0.85);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.nav__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 74px;
	gap: 24px;
}

.nav__logo img { width: 196px; height: auto; }

.nav__links {
	display: flex;
	align-items: center;
	gap: 30px;
}

.nav__links > a:not(.btn) {
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	font-size: 0.95rem;
	font-weight: 600;
	transition: color 0.15s ease;
}
.nav__links > a:not(.btn):hover { color: #fff; }

.nav__burger {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: 0;
	padding: 8px;
	cursor: pointer;
}
.nav__burger span {
	width: 24px;
	height: 2px;
	background: #fff;
	border-radius: 2px;
	transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- hero ---------- */

.hero {
	padding: 96px 0 190px;
	overflow: hidden;
	background-color: var(--dark);
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='44' height='44'%3E%3Cpath d='M44 0H0v44' fill='none' stroke='rgba(255,255,255,0.05)'/%3E%3C/svg%3E");
	color: #fff;
}

/* animated WebGPU shader (shaders.com "Synthesis"), sits under the glow */
.hero__shader {
	position: absolute;
	inset: 0;
	z-index: 0;
	opacity: 0;
	transition: opacity 1.4s ease;
	pointer-events: none;
}
.hero__shader.is-live { opacity: 0.75; }
.hero__shader canvas { width: 100%; height: 100%; display: block; }

.hero__wave {
	position: absolute;
	left: 0;
	right: 0;
	bottom: -1px;
	z-index: 1;
	line-height: 0;
	pointer-events: none;
}
.hero__wave svg { width: 100%; height: 140px; display: block; }

/* film-grain noise over the hero */
.hero::after {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
	opacity: 0.06;
	mix-blend-mode: overlay;
}

.hero__glow {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background:
		radial-gradient(ellipse 60% 50% at 78% 18%, rgba(140, 55, 251, 0.24), transparent 62%),
		radial-gradient(ellipse 45% 42% at 10% 85%, rgba(110, 91, 255, 0.12), transparent 60%);
}

.hero h1 { color: #fff; }

.hero .grad {
	background: linear-gradient(100deg, var(--purple-soft) 0%, var(--purple) 55%, #6e5bff 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.hero .btn--ghost {
	background: transparent;
	border-color: rgba(255, 255, 255, 0.35);
	color: #fff;
}
.hero .btn--ghost:hover { border-color: rgba(255, 255, 255, 0.65); background: rgba(255, 255, 255, 0.07); box-shadow: none; }

.hero__inner {
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: 64px;
	align-items: center;
	position: relative;
	z-index: 2;
}

/* let grid children shrink below their content's intrinsic width */
.hero__inner > * { min-width: 0; }

.hero__sub {
	font-size: 1.18rem;
	color: rgba(255, 255, 255, 0.72);
	margin: 24px 0 34px;
	max-width: 34em;
}

.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; }

.hero__meta {
	margin-top: 26px;
	font-size: 0.8rem;
	color: rgba(255, 255, 255, 0.45);
	letter-spacing: 0.02em;
}

/* hero mock dashboard */

.mock {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	box-shadow: 0 40px 90px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(169, 103, 255, 0.15);
	overflow: hidden;
}

.mock__head {
	display: flex;
	align-items: center;
	gap: 7px;
	padding: 14px 18px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	background: var(--dark-2);
}
.mock__dot { width: 10px; height: 10px; border-radius: 50%; }
.mock__dot:nth-child(1) { background: #ff5f57; }
.mock__dot:nth-child(2) { background: #febc2e; }
.mock__dot:nth-child(3) { background: #28c840; }
.mock__title {
	margin-left: 10px;
	font-size: 0.75rem;
	color: rgba(255, 255, 255, 0.55);
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.mock__body { padding: 22px; }

.mock__label {
	font-size: 0.78rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--ink-faint);
	margin: 20px 0 10px;
}
.mock__label:first-child { margin-top: 0; }

.linkchip {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	background: rgba(140, 55, 251, 0.07);
	border: 1px solid rgba(140, 55, 251, 0.3);
	border-radius: 12px;
	padding: 12px 14px;
	font-size: 0.82rem;
}
.linkchip span.mono { color: var(--purple-deep); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.linkchip__copy {
	background: var(--purple);
	color: #fff;
	border: 0;
	border-radius: 8px;
	font-size: 0.75rem;
	padding: 6px 12px;
	cursor: pointer;
	transition: background 0.15s ease;
	flex-shrink: 0;
	font-family: var(--font-mono);
}
.linkchip__copy:hover { background: var(--purple-deep); }

.mock__stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
	margin-top: 14px;
}

.mstat {
	background: var(--bg-soft);
	border: 1px solid var(--line);
	border-radius: 12px;
	padding: 12px 14px;
	display: flex;
	flex-direction: column;
}
.mstat strong { font-family: var(--font-mono); font-size: 1.3rem; font-weight: 600; color: var(--ink); }
.mstat span { font-size: 0.72rem; color: var(--ink-faint); text-transform: uppercase; letter-spacing: 0.08em; }

/* activity feed */

.feed {
	display: flex;
	flex-direction: column;
	border: 1px solid var(--line);
	border-radius: 12px;
	overflow: hidden;
}

.feed__row {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 13px 16px;
	font-size: 0.88rem;
	color: var(--ink-dim);
}
.feed__row + .feed__row { border-top: 1px solid var(--line); }
.feed__row strong { color: var(--ink); font-weight: 700; }

.feed__row--pay { background: rgba(5, 150, 105, 0.06); }

.feed__dot {
	width: 9px;
	height: 9px;
	border-radius: 50%;
	flex-shrink: 0;
}
.feed__dot--purple { background: var(--purple); box-shadow: 0 0 0 4px rgba(140, 55, 251, 0.15); }
.feed__dot--blue { background: var(--blue); box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.13); }
.feed__dot--green { background: var(--green); box-shadow: 0 0 0 4px rgba(5, 150, 105, 0.14); }

.feed__text { flex: 1; min-width: 0; }
.feed__calc { font-size: 0.72rem; color: var(--green); white-space: nowrap; }
.feed__time { font-size: 0.72rem; color: var(--ink-faint); flex-shrink: 0; }

/* ---------- problem ---------- */

.problem {
	background-color: var(--bg-soft);
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='26' height='26'%3E%3Ccircle cx='1.5' cy='1.5' r='1.5' fill='rgba(140,55,251,0.09)'/%3E%3C/svg%3E");
}

.cards-3 {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
	margin-top: 48px;
}

.card {
	background: var(--card);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 32px 28px;
	box-shadow: var(--shadow-sm);
	transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.card:hover { transform: translateY(-4px); border-color: rgba(140, 55, 251, 0.4); box-shadow: var(--shadow-md); }

.card p { color: var(--ink-dim); font-size: 0.98rem; }

.problem__punch {
	margin: 56px auto 0;
	max-width: 42em;
	text-align: center;
	font-size: 1.3rem;
	font-weight: 700;
	line-height: 1.5;
}
.problem__punch em { color: var(--purple); font-style: italic; }

/* ---------- how it works ---------- */

.steps {
	margin-top: 54px;
	display: flex;
	flex-direction: column;
}

.step {
	display: grid;
	grid-template-columns: 64px minmax(0, 1fr);
	gap: 26px;
	padding: 34px 0;
	position: relative;
}
.step + .step { border-top: 1px dashed rgba(16, 5, 35, 0.14); }

.step__num {
	width: 54px;
	height: 54px;
	border-radius: 16px;
	display: grid;
	place-items: center;
	font-size: 1.15rem;
	font-weight: 600;
	color: #fff;
	background: linear-gradient(140deg, var(--purple), var(--purple-deep));
	box-shadow: 0 10px 24px rgba(140, 55, 251, 0.28);
}

.step__body p { color: var(--ink-dim); max-width: 44em; }

.step__demo {
	display: inline-block;
	margin-top: 16px;
	font-size: 0.8rem;
	color: var(--purple-deep);
	background: rgba(140, 55, 251, 0.07);
	border: 1px solid rgba(140, 55, 251, 0.25);
	border-radius: 10px;
	padding: 9px 15px;
	max-width: 100%;
	overflow-x: auto;
	white-space: nowrap;
}
.win { color: var(--green); font-weight: 600; }

/* ---------- features (dark band) ---------- */

.features {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='44' height='44'%3E%3Cpath d='M44 0H0v44' fill='none' stroke='rgba(255,255,255,0.05)'/%3E%3C/svg%3E");
	overflow: hidden;
}

/* animated particle-field shader (shaders.com "Scanner Noise") behind the feature grid */
.features__shader {
	position: absolute;
	inset: 0;
	z-index: 0;
	opacity: 0;
	transition: opacity 1.4s ease;
	pointer-events: none;
}
.features__shader.is-live { opacity: 0.85; }
.features__shader canvas { width: 100%; height: 100%; display: block; }

.features .container { position: relative; z-index: 1; }

.features::before {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	background: radial-gradient(ellipse 60% 55% at 50% 0%, rgba(140, 55, 251, 0.16), transparent 65%);
}

.fgrid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	margin-top: 52px;
	position: relative;
}

.fcard {
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: var(--radius);
	padding: 28px 24px;
	transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.fcard:hover { transform: translateY(-4px); border-color: rgba(169, 103, 255, 0.5); background: rgba(255, 255, 255, 0.07); }

.fcard__icon {
	width: 46px;
	height: 46px;
	border-radius: 13px;
	background: rgba(140, 55, 251, 0.18);
	border: 1px solid rgba(169, 103, 255, 0.35);
	display: grid;
	place-items: center;
	font-size: 1.25rem;
	margin-bottom: 18px;
}

.fcard h3 { font-size: 1.02rem; color: #fff; }
.fcard p { color: rgba(255, 255, 255, 0.66); font-size: 0.88rem; }

/* ---------- who refers ---------- */

/* ripple rings: referrals spreading outward */
.who {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cg fill='none' stroke='rgba(140,55,251,0.055)' stroke-width='1.2'%3E%3Ccircle cx='80' cy='80' r='18'/%3E%3Ccircle cx='80' cy='80' r='38'/%3E%3Ccircle cx='80' cy='80' r='58'/%3E%3Ccircle cx='80' cy='80' r='78'/%3E%3C/g%3E%3C/svg%3E");
}

.who__badge {
	display: inline-block;
	font-size: 0.72rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--purple-deep);
	background: rgba(140, 55, 251, 0.09);
	border: 1px solid rgba(140, 55, 251, 0.3);
	border-radius: 99px;
	padding: 5px 14px;
	margin-bottom: 18px;
}

/* tiers */

.tiers {
	margin-top: 64px;
	background: linear-gradient(150deg, rgba(140, 55, 251, 0.09), rgba(140, 55, 251, 0.025));
	border: 1px solid rgba(140, 55, 251, 0.22);
	border-radius: 24px;
	padding: 44px 40px;
}

.tiers__head { max-width: 34em; margin-bottom: 32px; }
.tiers__head h3 { font-size: 1.5rem; }
.tiers__head p { color: var(--ink-dim); }

.tiers__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
}

.tier {
	border-radius: 16px;
	padding: 22px 20px;
	display: flex;
	flex-direction: column;
	gap: 4px;
	border: 1px solid var(--line);
	background: #fff;
	box-shadow: var(--shadow-sm);
	position: relative;
	overflow: hidden;
}
.tier::before {
	content: "";
	position: absolute;
	top: 0; left: 0; right: 0;
	height: 3px;
	background: var(--tier-c, var(--purple));
}

.tier--bronze { --tier-c: #b06d24; }
.tier--silver { --tier-c: #8a8f99; }
.tier--gold { --tier-c: #d9a223; }
.tier--platinum { --tier-c: var(--purple); }

.tier__name { font-weight: 700; font-size: 0.95rem; color: var(--tier-c); }
.tier__mult { font-size: 1.6rem; font-weight: 600; }
.tier__pay { font-size: 0.82rem; color: var(--ink-faint); }

/* ---------- pricing ---------- */

.pricing {
	background-color: var(--bg-soft);
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='26' height='26'%3E%3Ccircle cx='1.5' cy='1.5' r='1.5' fill='rgba(140,55,251,0.09)'/%3E%3C/svg%3E");
}

.pgrid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	margin-top: 52px;
	align-items: stretch;
}

.plan {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 32px 26px;
	display: flex;
	flex-direction: column;
	position: relative;
	box-shadow: var(--shadow-sm);
	transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

/* gradient accent bar that sweeps in on hover; inset so it never
   pokes past the card's rounded corners */
.plan::before {
	content: "";
	position: absolute;
	top: 0;
	left: 22px;
	right: 22px;
	height: 3px;
	border-radius: 99px;
	background: linear-gradient(90deg, var(--purple), #6e5bff);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.35s ease;
}
.plan:hover { transform: translateY(-4px); border-color: rgba(140, 55, 251, 0.4); box-shadow: var(--shadow-md); }
.plan:hover::before { transform: scaleX(1); }

/* featured plan: dark card that pops against the light section */
.plan--hot {
	background:
		radial-gradient(120% 90% at 85% -10%, rgba(140, 55, 251, 0.55), transparent 55%),
		radial-gradient(110% 80% at 0% 110%, rgba(110, 91, 255, 0.35), transparent 60%),
		var(--dark);
	border-color: rgba(140, 55, 251, 0.7);
	color: #fff;
	box-shadow: 0 24px 54px rgba(140, 55, 251, 0.28);
}
.plan--hot::before { transform: scaleX(1); }
.plan--hot .plan__blurb,
.plan.plan--hot li,
.plan--hot .plan__price em { color: rgba(255, 255, 255, 0.78); }
.plan.plan--hot li::before { background: rgba(255, 255, 255, 0.14); color: #d9b8ff; }
.plan--hot:hover { border-color: rgba(169, 103, 255, 0.9); box-shadow: 0 30px 64px rgba(140, 55, 251, 0.36); }

/* enlarge the featured card without transforms so GSAP and hover stay intact */
@media (min-width: 761px) {
	.plan--hot { margin: -16px -8px; padding: 44px 30px; }
}

.plan__flag {
	position: absolute;
	top: -13px;
	left: 50%;
	transform: translateX(-50%);
	background: linear-gradient(135deg, var(--purple), #6e5bff);
	color: #fff;
	font-size: 0.68rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding: 5px 14px;
	border-radius: 99px;
	white-space: nowrap;
	box-shadow: 0 6px 18px rgba(140, 55, 251, 0.45);
	z-index: 1;
}

.plan__name { font-size: 1.05rem; margin-bottom: 6px; }

.plan__price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 12px; }
.plan__price .mono { font-size: 2.3rem; font-weight: 600; }
.plan__price em { font-style: normal; color: var(--ink-faint); font-size: 0.9rem; }

.plan__blurb { font-size: 0.86rem; color: var(--ink-dim); min-height: 3.2em; margin-bottom: 18px; }

.plan ul { list-style: none; margin-bottom: 26px; flex-grow: 1; }
.plan li {
	font-size: 0.88rem;
	color: var(--ink-dim);
	padding: 7px 0 7px 30px;
	position: relative;
}
.plan li::before {
	content: "✓";
	position: absolute;
	left: 0;
	top: 8px;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: rgba(140, 55, 251, 0.12);
	color: var(--purple);
	font-size: 0.62rem;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
}

.pricing__note {
	margin-top: 36px;
	text-align: center;
	font-family: var(--font-mono);
	font-size: 0.8rem;
	color: var(--ink-faint);
	letter-spacing: 0.02em;
}

/* ---------- faq ---------- */

.faq__list {
	margin-top: 44px;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 14px;
	align-items: start;
}

.qa {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 16px;
	overflow: hidden;
	box-shadow: var(--shadow-sm);
	transition: border-color 0.2s ease;
}
.qa[open] { border-color: rgba(140, 55, 251, 0.45); }

.qa summary {
	list-style: none;
	cursor: pointer;
	padding: 22px 56px 22px 26px;
	font-weight: 700;
	font-size: 1.02rem;
	position: relative;
	user-select: none;
}
.qa summary::-webkit-details-marker { display: none; }
.qa summary::after {
	content: "+";
	position: absolute;
	right: 24px;
	top: 50%;
	transform: translateY(-50%);
	font-family: var(--font-mono);
	font-size: 1.3rem;
	color: var(--purple);
	transition: transform 0.2s ease;
}
.qa[open] summary::after { transform: translateY(-50%) rotate(45deg); }

.qa p { padding: 0 26px 24px; color: var(--ink-dim); font-size: 0.95rem; }
.qa .mono { color: var(--purple-deep); font-size: 0.88em; }

/* ---------- final cta ---------- */

.cta { padding: 120px 0; }

.cta__inner {
	text-align: center;
	background:
		radial-gradient(ellipse 80% 120% at 50% -20%, rgba(255, 255, 255, 0.16), transparent 55%),
		linear-gradient(150deg, var(--purple) 0%, var(--purple-deep) 90%);
	border-radius: 32px;
	padding: 84px 40px;
	box-shadow: 0 34px 80px rgba(140, 55, 251, 0.26);
	color: #fff;
	position: relative;
	overflow: hidden;
}

.cta__inner::after {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
	opacity: 0.08;
	mix-blend-mode: overlay;
}

.cta__inner > * { position: relative; z-index: 1; }
.cta__inner h2,
.cta__inner p { text-shadow: 0 1px 14px rgba(49, 7, 94, 0.55); }

/* animated god-rays shader (shaders.com "Lost Rays") inside the CTA card */
.cta__inner .cta__shader {
	position: absolute;
	inset: 0;
	z-index: 0;
	opacity: 0;
	transition: opacity 1.4s ease;
	pointer-events: none;
}
.cta__inner .cta__shader.is-live { opacity: 0.85; }
.cta__inner .cta__shader canvas { width: 100%; height: 100%; display: block; }

.cta__glyph { margin: 0 auto 26px; width: 64px; }

.cta h2 { margin-bottom: 16px; }
.cta p { color: rgba(255, 255, 255, 0.85); max-width: 34em; margin: 0 auto 34px; font-size: 1.1rem; }
.cta .hero__cta { justify-content: center; }

/* ---------- footer ---------- */

.footer {
	background-color: var(--dark);
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='44' height='44'%3E%3Cpath d='M44 0H0v44' fill='none' stroke='rgba(255,255,255,0.04)'/%3E%3C/svg%3E");
	color: #fff;
	padding: 56px 0 44px;
}

.footer__inner {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 32px;
	flex-wrap: wrap;
}

.footer__brand img { width: 180px; margin-bottom: 14px; }
.footer__brand p { color: rgba(255, 255, 255, 0.45); font-size: 0.9rem; }

.footer__links { display: flex; gap: 26px; flex-wrap: wrap; }
.footer__links a {
	color: rgba(255, 255, 255, 0.66);
	text-decoration: none;
	font-size: 0.92rem;
	font-weight: 600;
}
.footer__links a:hover { color: #fff; }

.footer__legal { width: 100%; margin-top: 26px; color: rgba(255, 255, 255, 0.4); font-size: 0.75rem; }

/* ---------- reveal (GSAP-driven; class fallback when GSAP is absent) ---------- */

.reveal { opacity: 0; transform: translateY(26px); }
.reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	.reveal { opacity: 1; transform: none; }
	.btn--primary::after { animation: none; display: none; }
}

/* anchor offset below sticky nav */
section[id] { scroll-margin-top: 84px; }

/* ---------- responsive ---------- */

@media (max-width: 1024px) {
	.fgrid { grid-template-columns: repeat(2, 1fr); }
	.pgrid { grid-template-columns: repeat(2, 1fr); row-gap: 34px; }
	.hero__inner { grid-template-columns: minmax(0, 1fr); gap: 60px; }
	.hero__visual { max-width: 560px; margin: 0 auto; width: 100%; }
}

@media (max-width: 760px) {
	section { padding: 78px 0; }
	body { font-size: 16px; }

	.nav__burger { display: flex; }
	.nav__links {
		display: none;
		position: absolute;
		top: 74px;
		left: 0;
		right: 0;
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		background: rgba(16, 5, 35, 0.98);
		border-bottom: 1px solid rgba(255, 255, 255, 0.09);
		padding: 10px 24px 22px;
	}
	.nav__links.is-open { display: flex; }
	.nav__links > a:not(.btn) { padding: 14px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.09); }
	.nav__cta { margin-top: 18px; }

	.cards-3, .tiers__grid { grid-template-columns: 1fr; }
	.fgrid, .pgrid, .faq__list { grid-template-columns: 1fr; }
	.tiers { padding: 32px 24px; }
	.cta__inner { padding: 60px 24px; }

	.step { grid-template-columns: 44px minmax(0, 1fr); gap: 18px; }
	.step__num { width: 44px; height: 44px; border-radius: 13px; font-size: 1rem; }
	.step__demo { white-space: normal; line-height: 1.7; }

	.mock__stats { grid-template-columns: repeat(3, 1fr); gap: 7px; }
	.mstat { padding: 10px; }
	.mstat strong { font-size: 1.05rem; }
	.nav__logo img { width: 160px; }

	.feed__row { font-size: 0.8rem; padding: 11px 12px; }
	.feed__calc { display: none; }
}
