/* ================================================================
   biz.nl — Home v4 "Webflow-inspired, clean, professional"
   No cosmic backgrounds, minimal gradients, solid accent colors.

   Design tokens:
   - primary blue (#4353FF) for interactive + accent
   - near-black ink (#111827) for text
   - clean whites and grays for surfaces
   - Fraunces for display, Inter for body/UI
   - light/dark alternation for pacing
   - motion respects prefers-reduced-motion throughout
   ================================================================ */

:root {
	--v2-ink:        #111827;
	--v2-ink-muted:  #6B7280;
	--v2-ink-faint:  #9CA3AF;
	--v2-primary:    #4353FF;
	--v2-primary-soft: #EEF0FF;
	--v2-accent:     #4353FF;
	--v2-success:    #10B981;
	--v2-warm:       #F59E0B;
	--v2-paper:      #ffffff;
	--v2-paper-2:    #F9FAFB;
	--v2-paper-3:    #F3F4F6;
	--v2-line:       #E5E7EB;
	--v2-border:     #D1D5DB;
	--font-display:  'Fraunces', 'Instrument Serif', Georgia, 'Times New Roman', serif;
}

/* Editorial display class */
.v2serif {
	font-family: var(--font-display);
	font-optical-sizing: auto;
	font-variation-settings: "opsz" 96;
	font-weight: 400;
	letter-spacing: -0.02em;
	line-height: 1.02;
}
.v2serif--italic { font-style: italic; }

/* ----------------------------------------------------------------
   Shared layout + text primitives
   ---------------------------------------------------------------- */
.v2head {
	max-width: 46rem;
	margin: 0 auto 3.5rem;
	text-align: center;
}
.v2h1 {
	font-family: var(--font-display);
	font-variation-settings: "opsz" 144;
	font-weight: 400;
	font-size: clamp(2.4rem, 5.8vw, 4.4rem);
	line-height: 1.03;
	letter-spacing: -0.025em;
	color: var(--v2-ink);
	margin: 0;
}
.v2h2 {
	font-family: var(--font-display);
	font-variation-settings: "opsz" 96;
	font-weight: 400;
	font-size: clamp(2rem, 5vw, 3.6rem);
	line-height: 1.05;
	letter-spacing: -0.02em;
	color: var(--v2-ink);
	margin: 0;
}
.v2lead {
	font-size: clamp(1.05rem, 1.5vw, 1.2rem);
	color: var(--v2-ink-muted);
	line-height: 1.6;
	margin-top: 1.2rem;
	max-width: 42rem;
	margin-left: auto;
	margin-right: auto;
}

/* Accent text -- solid color, no gradient */
.v2accent {
	color: var(--v2-primary);
}
.v2accent--dark {
	color: #A5B4FC;
}

/* Legacy gradient classes kept for any template that still uses them */
.v2grad {
	color: var(--v2-primary);
}
.v2grad--dark {
	color: #818CF8;
}

.v2eyebrow {
	display: inline-flex;
	align-items: center;
	gap: .5rem;
	font-family: 'Inter', sans-serif;
	font-size: .78rem;
	font-weight: 600;
	color: var(--v2-ink-muted);
	background: var(--v2-paper);
	border: 1px solid var(--v2-line);
	border-radius: 999px;
	padding: .4rem .9rem;
	margin-bottom: 1.4rem;
	letter-spacing: .01em;
}
.v2eyebrow--dark {
	background: rgba(255, 255, 255, 0.06);
	border-color: rgba(255, 255, 255, 0.12);
	color: rgba(255, 255, 255, 0.7);
}
.v2eyebrow__dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--v2-success);
	box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5);
	animation: v2pulse 2.2s infinite;
}
@keyframes v2pulse {
	0%   { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5); }
	70%  { box-shadow: 0 0 0 8px transparent; }
	100% { box-shadow: 0 0 0 0 transparent; }
}

/* Buttons */
.v2btn {
	display: inline-flex;
	align-items: center;
	gap: .55rem;
	font-family: 'Inter', sans-serif;
	font-weight: 600;
	font-size: .98rem;
	padding: .85rem 1.4rem;
	border-radius: 10px;
	border: 1px solid transparent;
	cursor: pointer;
	text-decoration: none;
	transition: transform .18s ease, box-shadow .22s ease, background .18s ease, color .18s ease, border-color .18s ease;
}
.v2btn svg { width: 1.05rem; height: 1.05rem; }
.v2btn--lg { padding: 1rem 1.8rem; font-size: 1.05rem; }

.v2btn--ink {
	background: var(--v2-ink);
	color: #fff;
	box-shadow: 0 1px 3px rgba(0,0,0,.12), 0 1px 2px rgba(0,0,0,.08);
}
.v2btn--ink:hover {
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(0,0,0,.15);
}

.v2btn--ghost {
	background: transparent;
	border-color: var(--v2-line);
	color: var(--v2-ink);
}
.v2btn--ghost:hover {
	border-color: var(--v2-primary);
	color: var(--v2-primary);
	transform: translateY(-1px);
}

.v2btn--light {
	background: #fff;
	color: var(--v2-ink);
	box-shadow: 0 1px 3px rgba(0,0,0,.1);
}
.v2btn--light:hover {
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(0,0,0,.15);
}

.v2btn--onbrand {
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
	border-color: rgba(255, 255, 255, 0.2);
}
.v2btn--onbrand:hover {
	background: rgba(255, 255, 255, 0.15);
	transform: translateY(-1px);
}

/* Scroll reveal */
.reveal {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity .6s cubic-bezier(.2,.7,.2,1), transform .6s cubic-bezier(.2,.7,.2,1);
	transition-delay: var(--d, 0s);
}
.reveal.is-in { opacity: 1; transform: none; }

/* Scroll progress bar */
.v2progress {
	position: fixed;
	top: 0; left: 0;
	height: 2px;
	width: 0;
	background: var(--v2-primary);
	z-index: 9999;
	pointer-events: none;
	transition: width .05s linear;
}

/* ================================================================
   CHAPTER 1 — HERO (photo background)
   ================================================================ */
.v2hero {
	position: relative;
	overflow: hidden;
	padding: clamp(4rem, 6vw, 6rem) 0 clamp(4rem, 6vw, 6rem);
	background: var(--v2-ink);
	color: #fff;
	isolation: isolate;
}

/* Full-bleed background image */
.v2hero__bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	background-size: cover;
	background-position: center top;
	background-repeat: no-repeat;
	filter: blur(3px) brightness(0.85);
	transform: scale(1.02); /* prevents blur edge from showing white */
}

/* Dark scrim for text legibility */
.v2hero__scrim {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(
		180deg,
		rgba(17, 24, 39, 0.55) 0%,
		rgba(17, 24, 39, 0.62) 50%,
		rgba(17, 24, 39, 0.50) 100%
	);
}

/* Legacy dot grid (hidden when photo mode is active) */
.v2hero__grid { display: none; }
.v2hero--photo .v2hero__grid { display: none; }

/* Layout -- single column, centered */
.v2hero__inner {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}
.v2hero__copy { max-width: 40rem; text-align: center; }
.v2hero__title {
	margin: 0 0 1rem;
	color: #fff;
	text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}
.v2hero .v2h1 { color: #fff; }
.v2hero__sub {
	font-size: clamp(1rem, 1.3vw, 1.15rem);
	color: rgba(255, 255, 255, 0.85);
	line-height: 1.6;
	max-width: 36rem;
	margin: 0 auto 1.6rem;
	text-align: center;
	text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
}
.v2hero__sub strong { color: #fff; font-weight: 600; }

/* Trust list */
.v2trust {
	display: flex;
	flex-wrap: wrap;
	gap: .8rem 1.4rem;
	list-style: none;
	padding: 0;
	margin: 0;
	justify-content: center;
}
.v2trust li {
	display: inline-flex;
	align-items: center;
	gap: .4rem;
	font-size: .88rem;
	color: rgba(255, 255, 255, 0.65);
}
.v2trust svg { width: .95rem; height: .95rem; color: var(--v2-success); }

/* Hero prompt */
.v2hero__prompt {
	margin: 0 auto 1.1rem;
	max-width: 36rem;
	width: 100%;
}
.v2hero__prompt .v2prompt__field {
	padding: .9rem .9rem .65rem;
	border-radius: 14px;
}
.v2hero__prompt textarea {
	min-height: 4.2rem;
	font-size: 1rem;
	color: #fff;
	caret-color: #A5B4FC;
}
.v2hero__prompt textarea::placeholder {
	color: rgba(255, 255, 255, 0.45);
}
.v2hero__prompt .v2prompt__count {
	color: rgba(255, 255, 255, 0.45);
}
.v2hero__prompt .v2prompt__toolbar {
	border-top-color: rgba(255, 255, 255, 0.12);
}
.v2hero__prompt .v2prompt__mic {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.18);
	color: #fff;
}
.v2hero__prompt .v2prompt__btn {
	padding: .6rem 1rem;
	font-size: .9rem;
	background: #fff;
	color: var(--v2-ink);
}
.v2hero__prompt .v2prompt__btn:hover {
	background: #fff;
	color: var(--v2-ink);
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, .3);
}
.v2hero__copy .v2chips {
	justify-content: center;
	margin-top: 0;
	margin-bottom: 1.2rem;
}

/* Brand card */
.v2brandcard {
	position: relative;
	max-width: 24rem;
	margin: 0 auto;
	aspect-ratio: 1 / 1;
}
.v2brandcard__stage {
	position: relative;
	width: 100%;
	height: 100%;
}
.v2brand {
	position: absolute;
	inset: 0;
	background: #fff;
	border: 1px solid var(--v2-line);
	border-radius: 16px;
	padding: 1.3rem;
	display: flex;
	flex-direction: column;
	gap: .85rem;
	box-shadow:
		0 20px 60px -15px rgba(0, 0, 0, 0.5),
		0 4px 16px rgba(0, 0, 0, 0.15);
	opacity: 0;
	transform: translateY(10px) scale(.98);
	transition: opacity .7s ease, transform .7s ease;
	overflow: hidden;
}
.v2brand.is-active { opacity: 1; transform: none; }

/* Header: mark + name/meta */
.v2brand__head {
	display: flex;
	align-items: center;
	gap: .8rem;
	flex-shrink: 0;
}
.v2brand__mark {
	flex-shrink: 0;
	width: 3rem;
	height: 3rem;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-family: var(--font-display);
	font-variation-settings: "opsz" 72;
	font-weight: 500;
	font-size: 1.3rem;
	letter-spacing: -0.03em;
}
.v2brand__id { min-width: 0; flex: 1; }
.v2brand__name {
	font-family: var(--font-display);
	font-variation-settings: "opsz" 72;
	font-weight: 400;
	font-size: 1.2rem;
	line-height: 1.15;
	letter-spacing: -0.02em;
	color: var(--v2-ink);
	margin: 0;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.v2brand__meta {
	font-family: 'Inter', sans-serif;
	font-size: .68rem;
	color: var(--v2-ink-faint);
	margin: .15rem 0 0;
	text-transform: uppercase;
	letter-spacing: .1em;
}

/* Mini website preview */
.v2brand__site {
	flex: 1;
	min-height: 0;
	background: var(--v2-paper-3);
	border: 1px solid var(--v2-line);
	border-radius: 10px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}
.v2brand__sitebar {
	display: flex;
	align-items: center;
	gap: .4rem;
	background: #fff;
	padding: .4rem .6rem;
	border-bottom: 1px solid var(--v2-line);
	font-family: 'Inter', sans-serif;
	font-size: .68rem;
	color: var(--v2-ink-muted);
	flex-shrink: 0;
}
.v2brand__sitedot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--v2-success);
	flex-shrink: 0;
}
.v2brand__siteurl {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.v2brand__sitebody {
	flex: 1;
	padding: .7rem;
	display: flex;
	flex-direction: column;
	gap: .45rem;
	background: #fff;
	min-height: 0;
}
.v2brand__sitehero {
	flex: 1;
	min-height: 2.4rem;
	border-radius: 6px;
	background: linear-gradient(135deg, var(--brand-c1, var(--v2-primary)), var(--brand-c2, #818CF8));
	opacity: .85;
}
.v2brand__siteline {
	height: .5rem;
	background: var(--v2-paper-3);
	border-radius: 4px;
	flex-shrink: 0;
}
.v2brand__siteline--short { width: 60%; }

/* Palette + type sample */
.v2brand__row {
	display: flex;
	align-items: center;
	gap: .8rem;
	flex-shrink: 0;
}
.v2brand__palette {
	flex: 1;
	display: flex;
	gap: .25rem;
}
.v2brand__palette span {
	flex: 1;
	height: 1.7rem;
	border-radius: 6px;
	border: 1px solid rgba(0,0,0,.06);
}
.v2brand__type {
	flex-shrink: 0;
	font-family: var(--font-display);
	font-variation-settings: "opsz" 144;
	font-weight: 400;
	font-size: 1.7rem;
	line-height: 1;
	letter-spacing: -0.04em;
	color: var(--v2-ink);
	padding: 0 .2rem;
}

/* Status foot */
.v2brand__foot {
	padding-top: .55rem;
	border-top: 1px solid var(--v2-line);
	display: flex;
	justify-content: center;
	flex-shrink: 0;
}
.v2brand__status {
	display: inline-flex;
	align-items: center;
	gap: .4rem;
	font-family: 'Inter', sans-serif;
	font-size: .72rem;
	font-weight: 600;
	color: var(--v2-success);
}
.v2brand__status::before {
	content: "";
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--v2-success);
}

/* Brand card dots */
.v2brandcard__dots {
	display: flex;
	justify-content: center;
	gap: .5rem;
	margin-top: 1.2rem;
}
.v2brandcard__dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.25);
	border: 0;
	padding: 0;
	cursor: pointer;
	transition: background .2s, transform .2s;
}
.v2brandcard__dot.is-active {
	background: #fff;
	transform: scale(1.3);
}

/* ----------------------------------------------------------------
   Prompt
   ---------------------------------------------------------------- */
.v2prompt {
	max-width: 44rem;
	margin: 0 auto 1.2rem;
}
.v2prompt__field {
	background: #fff;
	border: 1px solid var(--v2-line);
	border-radius: 16px;
	padding: 1.1rem 1.1rem .85rem;
	box-shadow: 0 1px 3px rgba(0,0,0,.06), 0 4px 12px rgba(0,0,0,.04);
	transition: border-color .2s, box-shadow .2s;
	text-align: left;
}
.v2prompt__field:hover {
	border-color: var(--v2-border);
	box-shadow: 0 1px 3px rgba(0,0,0,.08), 0 8px 20px rgba(0,0,0,.06);
}
.v2prompt__field:focus-within {
	border-color: var(--v2-primary);
	box-shadow: 0 0 0 3px var(--v2-primary-soft);
}

/* Dark variant for CTA section */
.v2prompt__field--dark {
	background: rgba(17, 24, 39, 0.7);
	border-color: rgba(255, 255, 255, 0.18);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
}
.v2prompt__field--dark:hover {
	border-color: rgba(255, 255, 255, 0.2);
}
.v2prompt__field--dark:focus-within {
	border-color: rgba(255, 255, 255, 0.3);
	box-shadow: 0 0 0 3px rgba(67, 83, 255, 0.2);
}
.v2prompt__field--dark textarea { color: #fff; }
.v2prompt__field--dark textarea::placeholder { color: rgba(255,255,255,.4); }
.v2prompt__field--dark .v2prompt__toolbar { border-top-color: rgba(255,255,255,.1); }
.v2prompt__field--dark .v2prompt__count { color: rgba(255,255,255,.4); }

.v2prompt textarea {
	display: block;
	width: 100%;
	border: 0;
	outline: 0;
	background: transparent;
	resize: none;
	font: inherit;
	font-family: 'Inter', sans-serif;
	font-size: 1.02rem;
	line-height: 1.55;
	color: #fff;
	caret-color: #A5B4FC;
	padding: .25rem .35rem;
	min-height: 5.2rem;
}
.v2prompt textarea::placeholder {
	color: rgba(255, 255, 255, 0.45);
}
.v2prompt textarea::placeholder {
	color: var(--v2-ink-faint);
}
.v2prompt__toolbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: .75rem;
	padding-top: .65rem;
	margin-top: .4rem;
	border-top: 1px solid var(--v2-line);
}
.v2prompt__tools { display: flex; align-items: center; gap: .6rem; }
.v2prompt__mic {
	width: 2.3rem; height: 2.3rem;
	border-radius: 50%;
	border: 1px solid var(--v2-line);
	background: #fff;
	color: var(--v2-ink);
	cursor: pointer;
	display: inline-flex; align-items: center; justify-content: center;
	transition: transform .15s, border-color .15s, color .15s, background .15s;
	padding: 0;
}
.v2prompt__mic svg { width: 1.05rem; height: 1.05rem; }
.v2prompt__mic:hover { border-color: var(--v2-primary); color: var(--v2-primary); transform: translateY(-1px); }
.v2prompt__mic-off { display: none; }
.v2prompt__mic.is-listening,
.v2prompt__mic[aria-pressed="true"] {
	background: #EF4444;
	border-color: #EF4444;
	color: #fff;
	animation: v2mic 1.4s ease-out infinite;
}
.v2prompt__mic.is-listening .v2prompt__mic-on,
.v2prompt__mic[aria-pressed="true"] .v2prompt__mic-on { display: none; }
.v2prompt__mic.is-listening .v2prompt__mic-off,
.v2prompt__mic[aria-pressed="true"] .v2prompt__mic-off { display: inline-flex; }
@keyframes v2mic {
	0%   { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.5); }
	70%  { box-shadow: 0 0 0 12px transparent; }
	100% { box-shadow: 0 0 0 0 transparent; }
}
.v2prompt__count {
	font-size: .82rem;
	color: var(--v2-ink-faint);
	font-variant-numeric: tabular-nums;
}
.v2prompt__count.is-near { color: #EF4444; }
.v2prompt__btn {
	display: inline-flex; align-items: center; gap: .5rem;
	background: var(--v2-primary);
	color: #fff;
	border: 0;
	border-radius: 10px;
	padding: .75rem 1.25rem;
	font-family: 'Inter', sans-serif;
	font-weight: 700;
	font-size: .95rem;
	cursor: pointer;
	transition: transform .18s, box-shadow .18s, background .18s;
	box-shadow: 0 1px 3px rgba(67, 83, 255, .3);
}
.v2prompt__btn:hover {
	background: #3647E5;
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(67, 83, 255, .35);
}
.v2prompt__btn:active { transform: translateY(0); }
.v2prompt__btn svg { width: 1rem; height: 1rem; }

.v2prompt__btn--onlight {
	background: #fff;
	color: var(--v2-ink);
}
.v2prompt__btn--onlight:hover {
	background: #fff;
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(0,0,0,.2);
}

.v2prompt__hint { font-size: .82rem; color: var(--v2-ink-muted); margin: .7rem 0 0; text-align: center; }

/* Chips */
.v2chips {
	display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
	gap: .5rem;
	margin-top: 1rem;
}
.v2chips__label { font-size: .82rem; color: var(--v2-ink-muted); font-weight: 500; margin-right: .2rem; }
.v2chip {
	border: 1px solid var(--v2-line);
	background: #fff;
	border-radius: 999px;
	padding: .35rem .85rem;
	font-family: 'Inter', sans-serif;
	font-size: .82rem;
	font-weight: 500;
	color: var(--v2-ink);
	cursor: pointer;
	transition: transform .15s, border-color .15s, color .15s, box-shadow .15s;
}
.v2chip:hover {
	transform: translateY(-1px);
	border-color: var(--v2-primary);
	color: var(--v2-primary);
	box-shadow: 0 2px 6px rgba(0,0,0,.06);
}

/* Dark chips (hero / CTA on dark backgrounds) */
.v2chips--dark .v2chips__label {
	color: rgba(255, 255, 255, 0.55);
}
.v2chips--dark .v2chip {
	background: rgba(255, 255, 255, 0.06);
	border-color: rgba(255, 255, 255, 0.14);
	color: #fff;
}
.v2chips--dark .v2chip:hover {
	background: rgba(255, 255, 255, 0.12);
	border-color: rgba(255, 255, 255, 0.3);
	color: #fff;
}

/* ================================================================
   CHAPTER 2 — PROOF WALL
   ================================================================ */
.v2proof {
	background: var(--v2-paper-2);
	padding: clamp(3.5rem, 6vw, 5rem) 0 clamp(3rem, 5vw, 4.5rem);
	overflow: hidden;
	border-top: 1px solid var(--v2-line);
	border-bottom: 1px solid var(--v2-line);
}
.v2proof__head {
	text-align: center;
	margin-bottom: 2.5rem;
	padding: 0 1rem;
}
.v2proof__label {
	font-family: 'Inter', sans-serif;
	font-size: .82rem;
	font-weight: 600;
	color: var(--v2-ink-muted);
	text-transform: uppercase;
	letter-spacing: .12em;
}
.v2proof__title {
	font-family: var(--font-display);
	font-variation-settings: "opsz" 72;
	font-weight: 400;
	font-size: clamp(1.4rem, 2.4vw, 1.9rem);
	color: var(--v2-ink);
	margin: .6rem 0 0;
	letter-spacing: -0.015em;
}
.v2marquee2 {
	position: relative;
	overflow: hidden;
	mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
	-webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}
.v2marquee2__row {
	display: flex;
	gap: 1.2rem;
	width: max-content;
	padding: .6rem 0;
}
.v2marquee2__row--l { animation: v2scroll-l 60s linear infinite; }
.v2marquee2__row--r { animation: v2scroll-r 70s linear infinite; }
@keyframes v2scroll-l { to { transform: translateX(-50%); } }
@keyframes v2scroll-r { from { transform: translateX(-50%); } to { transform: translateX(0); } }
.v2marquee2:hover .v2marquee2__row { animation-play-state: paused; }

.v2logotile {
	flex: 0 0 auto;
	width: 8.5rem;
	background: #fff;
	border: 1px solid var(--v2-line);
	border-radius: 12px;
	padding: 1rem .8rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: .6rem;
	transition: border-color .2s, transform .2s;
}
.v2logotile:hover {
	border-color: var(--v2-border);
	transform: translateY(-2px);
}
.v2logotile__mark {
	width: 3.2rem;
	height: 3.2rem;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-family: var(--font-display);
	font-variation-settings: "opsz" 72;
	font-weight: 500;
	font-size: 1.4rem;
	letter-spacing: -0.03em;
}
.v2logotile__name {
	font-family: 'Inter', sans-serif;
	font-size: .78rem;
	font-weight: 600;
	color: var(--v2-ink);
	text-align: center;
	line-height: 1.2;
}
.v2logotile__cat {
	font-family: 'Inter', sans-serif;
	font-size: .68rem;
	color: var(--v2-ink-faint);
	text-align: center;
	text-transform: uppercase;
	letter-spacing: .1em;
}

/* ================================================================
   CHAPTER 3 — DREAM (clean editorial)
   ================================================================ */
.v2dream {
	position: relative;
	overflow: hidden;
	padding: clamp(6rem, 11vw, 9rem) 0;
	background: var(--v2-paper-3);
	color: var(--v2-ink);
	text-align: center;
}
.v2dream__inner {
	position: relative;
	z-index: 1;
	max-width: 44rem;
	margin: 0 auto;
	padding: 0 1.25rem;
}
.v2dream__label {
	font-family: 'Inter', sans-serif;
	font-size: .8rem;
	font-weight: 600;
	color: var(--v2-ink-muted);
	text-transform: uppercase;
	letter-spacing: .14em;
	margin-bottom: 1.6rem;
}
.v2dream__quote {
	font-family: var(--font-display);
	font-variation-settings: "opsz" 144;
	font-weight: 400;
	font-size: clamp(2rem, 5.5vw, 4.4rem);
	line-height: 1.05;
	letter-spacing: -0.025em;
	color: var(--v2-ink);
	margin: 0;
}
.v2dream__quote em {
	font-style: italic;
	font-variation-settings: "opsz" 144;
}
.v2dream__sub {
	margin: 2rem auto 0;
	font-family: 'Inter', sans-serif;
	font-size: 1.05rem;
	color: var(--v2-ink-muted);
	line-height: 1.6;
	max-width: 34rem;
}

/* Legacy photo mode classes -- still functional but simplified */
.v2dream--photo { padding: clamp(6rem, 11vw, 9rem) 0; }
.v2dream__photo {
	position: absolute;
	inset: 0;
	z-index: 0;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
.v2dream__scrim {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: rgba(243, 244, 246, 0.88);
}
.v2dream__grain { display: none; }
.v2dream--photo .v2dream__inner { z-index: 3; }

/* ================================================================
   CHAPTER 4 — MAGIC (clean dark)
   ================================================================ */
.v2magic {
	background: var(--v2-ink);
	color: #fff;
	padding: clamp(5rem, 9vw, 8rem) 0;
	position: relative;
	overflow: hidden;
}
.v2magic__atmosphere { display: none; }
.v2magic__inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: .9fr 1.1fr;
	gap: clamp(2rem, 5vw, 5rem);
	align-items: center;
}
.v2magic__title {
	font-family: var(--font-display);
	font-variation-settings: "opsz" 96;
	font-weight: 400;
	font-size: clamp(2rem, 4.5vw, 3.4rem);
	line-height: 1.05;
	letter-spacing: -0.02em;
	color: #fff;
	margin: 0 0 1.2rem;
}
.v2magic__sub {
	font-family: 'Inter', sans-serif;
	font-size: 1.05rem;
	color: rgba(255,255,255,.65);
	line-height: 1.6;
	margin: 0 0 2rem;
	max-width: 30rem;
}
.v2magic__steps {
	display: flex;
	gap: 1.6rem;
	margin: 0 0 2rem;
	padding: 0;
	list-style: none;
}
.v2magic__step {
	font-family: 'Inter', sans-serif;
	font-size: .82rem;
	color: rgba(255,255,255,.6);
	display: flex;
	flex-direction: column;
	gap: .3rem;
}
.v2magic__step-n {
	font-family: 'Inter', sans-serif;
	font-weight: 700;
	font-size: 1rem;
	color: var(--v2-primary);
	letter-spacing: -0.02em;
}

/* Demo card */
.v2demo {
	position: relative;
	background: rgba(255,255,255,.04);
	border: 1px solid rgba(255,255,255,.08);
	border-radius: 16px;
	padding: 1.4rem;
	box-shadow: 0 4px 16px rgba(0,0,0,.2);
	overflow: hidden;
	min-height: 26rem;
}
.v2demo__prompt {
	background: rgba(255,255,255,.04);
	border: 1px solid rgba(255,255,255,.1);
	border-radius: 12px;
	padding: 1rem 1.1rem;
	font-family: 'Inter', sans-serif;
	font-size: .95rem;
	color: rgba(255,255,255,.9);
	line-height: 1.5;
	min-height: 4.6rem;
}
.v2demo__prompt-text {
	overflow: hidden;
	white-space: nowrap;
	border-right: 2px solid var(--v2-primary);
	width: 0;
	animation: v2type 4s steps(60, end) 0.5s forwards, v2caret .8s step-end infinite;
	display: inline-block;
}
@keyframes v2type { to { width: 100%; } }
@keyframes v2caret { 50% { border-color: transparent; } }

.v2demo__output {
	margin-top: 1rem;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: .8rem;
}
.v2demo__slot {
	background: rgba(255,255,255,.04);
	border: 1px solid rgba(255,255,255,.08);
	border-radius: 10px;
	padding: .9rem;
	min-height: 6rem;
	opacity: 0;
	transform: translateY(6px);
	animation: v2slot-in .6s ease .5s forwards;
}
.v2demo__slot--logo   { animation-delay: 5s; }
.v2demo__slot--palette{ animation-delay: 5.4s; }
.v2demo__slot--site   { animation-delay: 5.8s; grid-column: span 2; min-height: 5rem; }
.v2demo__slot--social { animation-delay: 6.2s; grid-column: span 2; min-height: 4.5rem; }
@keyframes v2slot-in { to { opacity: 1; transform: none; } }

.v2demo__slot-label {
	font-family: 'Inter', sans-serif;
	font-size: .68rem;
	color: rgba(255,255,255,.4);
	text-transform: uppercase;
	letter-spacing: .1em;
	margin-bottom: .6rem;
}
.v2demo__logomark {
	width: 2.4rem; height: 2.4rem;
	border-radius: 8px;
	background: var(--v2-primary);
	display: flex; align-items: center; justify-content: center;
	color: #fff;
	font-family: var(--font-display);
	font-variation-settings: "opsz" 72;
	font-weight: 500;
	font-size: 1.2rem;
}
.v2demo__palette-row {
	display: flex; gap: .35rem;
}
.v2demo__palette-row span {
	flex: 1; height: 1.6rem; border-radius: 6px;
}
.v2demo__sitebar {
	display: flex; align-items: center; gap: .5rem;
	background: rgba(255,255,255,.06);
	border-radius: 6px;
	padding: .35rem .6rem;
	font-size: .72rem;
	color: rgba(255,255,255,.6);
	margin-bottom: .5rem;
}
.v2demo__sitebar::before {
	content: "";
	width: 6px; height: 6px; border-radius: 50%;
	background: var(--v2-success);
}
.v2demo__siteblock {
	height: 2.4rem;
	background: rgba(255,255,255,.06);
	border-radius: 6px;
}
.v2demo__socialgrid {
	display: grid; grid-template-columns: repeat(3, 1fr); gap: .3rem;
	margin-top: .3rem;
}
.v2demo__socialgrid span {
	aspect-ratio: 1;
	border-radius: 6px;
	background: rgba(255,255,255,.08);
}
.v2demo__socialgrid span:nth-child(2) { background: rgba(255,255,255,.06); }
.v2demo__socialgrid span:nth-child(3) { background: rgba(255,255,255,.1); }

.v2demo__timer {
	position: absolute;
	top: 1.4rem;
	right: 1.4rem;
	font-family: 'Inter', sans-serif;
	font-size: .72rem;
	font-weight: 600;
	color: var(--v2-success);
	display: inline-flex;
	align-items: center;
	gap: .3rem;
}
.v2demo__timer::before {
	content: "";
	width: 6px; height: 6px; border-radius: 50%;
	background: var(--v2-success);
	animation: v2pulse 2s infinite;
}

/* ================================================================
   CHAPTER 5 — WHAT ARRIVES (features bento)
   ================================================================ */
.v2feat {
	background: var(--v2-paper);
	padding: clamp(5rem, 9vw, 8rem) 0;
}
.v2bento {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.2rem;
}
.v2tile {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: .6rem;
	background: var(--v2-paper-2);
	border: 1px solid var(--v2-line);
	border-radius: 16px;
	padding: 1.8rem 1.6rem 1.6rem;
	text-decoration: none;
	color: inherit;
	overflow: hidden;
	transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
	min-height: 20rem;
}
.v2tile:hover {
	transform: translateY(-3px);
	border-color: var(--v2-border);
	box-shadow: 0 4px 16px rgba(0,0,0,.08);
}
.v2tile--big {
	grid-row: span 2;
	background: var(--v2-paper-2);
	min-height: 41rem;
}
.v2tile__eyebrow {
	font-family: 'Inter', sans-serif;
	font-size: .72rem;
	font-weight: 600;
	color: var(--v2-ink-faint);
	text-transform: uppercase;
	letter-spacing: .12em;
}
.v2tile__title {
	font-family: var(--font-display);
	font-variation-settings: "opsz" 72;
	font-weight: 400;
	font-size: 1.4rem;
	line-height: 1.15;
	letter-spacing: -0.02em;
	color: var(--v2-ink);
	margin: 0;
}
.v2tile__text {
	font-family: 'Inter', sans-serif;
	font-size: .92rem;
	color: var(--v2-ink-muted);
	line-height: 1.55;
	margin: 0;
}
.v2tile__artifact {
	margin-top: auto;
	padding-top: 1rem;
}
.v2tile__more {
	display: inline-flex;
	align-items: center;
	gap: .35rem;
	font-family: 'Inter', sans-serif;
	font-weight: 600;
	font-size: .88rem;
	color: var(--v2-primary);
}
.v2tile__more svg { width: .95rem; height: .95rem; transition: transform .2s; }
.v2tile:hover .v2tile__more svg { transform: translateX(4px); }
.v2tile__price {
	margin-top: .6rem;
	font-family: 'Inter', sans-serif;
	font-size: .78rem;
	color: var(--v2-ink-faint);
}

/* Artifact previews */
.v2art {
	background: #fff;
	border: 1px solid var(--v2-line);
	border-radius: 10px;
	padding: .9rem;
}
.v2art--logo {
	display: flex;
	align-items: center;
	gap: .8rem;
}
.v2art--logo .v2art__mark {
	width: 2.6rem; height: 2.6rem;
	border-radius: 8px;
	background: var(--v2-primary);
	display: flex; align-items: center; justify-content: center;
	color: #fff;
	font-family: var(--font-display);
	font-weight: 500;
	font-size: 1.2rem;
}
.v2art--logo .v2art__name {
	font-family: var(--font-display);
	font-weight: 400;
	font-size: 1.05rem;
	color: var(--v2-ink);
}
.v2art--site {
	padding: 0;
	overflow: hidden;
}
.v2art--site .v2art__bar {
	display: flex;
	align-items: center;
	gap: .4rem;
	background: var(--v2-paper-3);
	padding: .45rem .7rem;
	font-size: .72rem;
	color: var(--v2-ink-muted);
	border-bottom: 1px solid var(--v2-line);
}
.v2art--site .v2art__bar::before {
	content: "";
	width: 6px; height: 6px; border-radius: 50%;
	background: var(--v2-success);
}
.v2art--site .v2art__body {
	padding: .8rem .7rem;
	display: flex;
	flex-direction: column;
	gap: .4rem;
}
.v2art--site .v2art__hero {
	height: 2rem;
	background: var(--v2-primary-soft);
	border-radius: 6px;
}
.v2art--site .v2art__line {
	height: .5rem;
	background: var(--v2-paper-3);
	border-radius: 4px;
}
.v2art--site .v2art__line:nth-child(3) { width: 70%; }

.v2art--posts {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: .3rem;
	padding: .5rem;
}
.v2art--posts span {
	aspect-ratio: 1;
	border-radius: 6px;
}
.v2art--posts span:nth-child(1) { background: var(--v2-primary); opacity: .8; }
.v2art--posts span:nth-child(2) { background: #818CF8; }
.v2art--posts span:nth-child(3) { background: var(--v2-ink); }
.v2art--posts span:nth-child(4) { background: var(--v2-primary-soft); }
.v2art--posts span:nth-child(5) { background: #E0E7FF; }
.v2art--posts span:nth-child(6) { background: #C7D2FE; }

.v2art--palette {
	display: flex;
	gap: .3rem;
	padding: .8rem;
}
.v2art--palette span {
	flex: 1;
	height: 2.4rem;
	border-radius: 6px;
	border: 1px solid rgba(0,0,0,.06);
}

.v2art--card {
	background: var(--v2-ink);
	color: #fff;
	padding: 1.2rem;
	border: 0;
}
.v2art--card .v2art__cardname {
	font-family: var(--font-display);
	font-weight: 400;
	font-size: 1.1rem;
	margin-bottom: .2rem;
}
.v2art--card .v2art__cardrole {
	font-family: 'Inter', sans-serif;
	font-size: .72rem;
	color: rgba(255,255,255,.55);
	text-transform: uppercase;
	letter-spacing: .1em;
}

.v2art--shop {
	padding: .7rem;
}
.v2art--shop .v2art__shoprow {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: .4rem;
}
.v2art--shop .v2art__shopitem {
	background: var(--v2-paper-3);
	aspect-ratio: 1;
	border-radius: 8px;
	display: flex;
	align-items: flex-end;
	padding: .35rem;
	font-family: 'Inter', sans-serif;
	font-size: .65rem;
	font-weight: 600;
	color: var(--v2-ink);
}
.v2art--shop .v2art__shopitem:nth-child(1) { background: var(--v2-primary-soft); }
.v2art--shop .v2art__shopitem:nth-child(2) { background: #E0E7FF; }

.v2feat__foot {
	text-align: center;
	margin-top: 3rem;
}

/* ================================================================
   CHAPTER 6 — TRUST
   ================================================================ */
.v2trustband {
	background: var(--v2-paper-3);
	padding: clamp(4rem, 8vw, 6rem) 0;
}
.v2trustband__inner {
	max-width: 44rem;
	margin: 0 auto;
	text-align: center;
	padding: 0 1rem;
}
.v2trustband__head {
	margin-bottom: 2.6rem;
}
.v2trustband__quote {
	font-family: var(--font-display);
	font-variation-settings: "opsz" 96;
	font-weight: 400;
	font-style: italic;
	font-size: clamp(1.6rem, 3.5vw, 2.6rem);
	line-height: 1.2;
	color: var(--v2-ink);
	margin: 1.2rem 0 0;
	letter-spacing: -0.015em;
}
.v2trustband__list {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1rem;
	list-style: none;
	padding: 0;
	margin: 0;
}
.v2trustband__list li {
	background: #fff;
	border: 1px solid var(--v2-line);
	border-radius: 12px;
	padding: 1rem .9rem;
	display: flex;
	align-items: flex-start;
	gap: .5rem;
	text-align: left;
	font-family: 'Inter', sans-serif;
	font-size: .88rem;
	font-weight: 500;
	color: var(--v2-ink);
	line-height: 1.4;
}
.v2trustband__list li svg {
	width: 1.05rem; height: 1.05rem;
	color: var(--v2-success);
	flex-shrink: 0;
	margin-top: .1rem;
}

/* ================================================================
   CHAPTER 7 — PRICING
   ================================================================ */
.v2pricing {
	background: var(--v2-paper);
	padding: clamp(5rem, 9vw, 8rem) 0;
}
.v2pricing__head {
	text-align: center;
	max-width: 44rem;
	margin: 0 auto 3rem;
	padding: 0 1rem;
}
.v2pricing__toggle {
	display: inline-flex;
	align-items: center;
	gap: .8rem;
	margin-top: 2rem;
}
.v2toggle {
	display: inline-flex;
	background: var(--v2-paper-3);
	border: 1px solid var(--v2-line);
	border-radius: 999px;
	padding: .3rem;
}
.v2toggle button {
	background: transparent;
	border: 0;
	padding: .5rem 1.1rem;
	border-radius: 999px;
	font-family: 'Inter', sans-serif;
	font-size: .88rem;
	font-weight: 600;
	color: var(--v2-ink-muted);
	cursor: pointer;
	transition: background .2s, color .2s;
}
.v2toggle button.is-active {
	background: var(--v2-ink);
	color: #fff;
}
.v2pricing__save {
	display: inline-flex;
	align-items: center;
	gap: .3rem;
	font-family: 'Inter', sans-serif;
	font-size: .82rem;
	font-weight: 600;
	color: var(--v2-success);
}

.v2plans {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.2rem;
	max-width: 68rem;
	margin: 0 auto;
}
.v2plan {
	position: relative;
	background: #fff;
	border: 1px solid var(--v2-line);
	border-radius: 16px;
	padding: 2rem 1.8rem;
	display: flex;
	flex-direction: column;
	gap: 1.2rem;
	transition: transform .2s ease, box-shadow .2s ease;
}
.v2plan:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 16px rgba(0,0,0,.08);
}
.v2plan--pop {
	border: 2px solid var(--v2-primary);
	box-shadow: 0 4px 24px rgba(67, 83, 255, .12);
}
.v2plan__badge {
	position: absolute;
	top: -.85rem;
	left: 50%;
	transform: translateX(-50%);
	background: var(--v2-primary);
	color: #fff;
	font-family: 'Inter', sans-serif;
	font-size: .72rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .12em;
	padding: .4rem .9rem;
	border-radius: 999px;
	box-shadow: 0 2px 8px rgba(67, 83, 255, .3);
}
.v2plan__name {
	font-family: var(--font-display);
	font-variation-settings: "opsz" 72;
	font-weight: 400;
	font-size: 1.5rem;
	color: var(--v2-ink);
	margin: 0;
	letter-spacing: -0.02em;
}
.v2plan__tag {
	font-family: 'Inter', sans-serif;
	font-size: .88rem;
	color: var(--v2-ink-muted);
	margin: -.5rem 0 0;
	line-height: 1.4;
	min-height: 2.4rem;
}
.v2plan__price {
	display: flex;
	align-items: baseline;
	gap: .35rem;
}
.v2plan__amt {
	font-family: var(--font-display);
	font-variation-settings: "opsz" 144;
	font-weight: 400;
	font-size: 3rem;
	line-height: 1;
	color: var(--v2-ink);
	letter-spacing: -0.03em;
}
.v2plan__per {
	font-family: 'Inter', sans-serif;
	font-size: .92rem;
	color: var(--v2-ink-muted);
}
.v2plan__billing {
	font-family: 'Inter', sans-serif;
	font-size: .78rem;
	color: var(--v2-ink-faint);
	margin: -.6rem 0 0;
}
.v2plan__meta {
	display: flex;
	flex-direction: column;
	gap: .4rem;
	padding: .8rem 0;
	border-top: 1px solid var(--v2-line);
	border-bottom: 1px solid var(--v2-line);
	font-family: 'Inter', sans-serif;
	font-size: .88rem;
	color: var(--v2-ink);
}
.v2plan__meta span {
	display: inline-flex;
	align-items: center;
	gap: .5rem;
}
.v2plan__meta svg {
	width: 1rem; height: 1rem;
	color: var(--v2-primary);
}
.v2plan__meta strong { font-weight: 700; font-variant-numeric: tabular-nums; }
.v2plan__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: .4rem;
	padding: .8rem 1.2rem;
	border-radius: 10px;
	font-family: 'Inter', sans-serif;
	font-weight: 600;
	font-size: .95rem;
	text-decoration: none;
	transition: transform .18s, box-shadow .18s, background .18s;
}
.v2plan__cta--pop {
	background: var(--v2-primary);
	color: #fff;
	box-shadow: 0 1px 3px rgba(67, 83, 255, .3);
}
.v2plan__cta--pop:hover {
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(67, 83, 255, .35);
	background: #3647E5;
}
.v2plan__cta--ghost {
	background: transparent;
	color: var(--v2-ink);
	border: 1px solid var(--v2-line);
}
.v2plan__cta--ghost:hover {
	border-color: var(--v2-primary);
	color: var(--v2-primary);
	transform: translateY(-1px);
}
.v2plan__features {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: .5rem;
}
.v2plan__features li {
	display: flex;
	align-items: flex-start;
	gap: .5rem;
	font-family: 'Inter', sans-serif;
	font-size: .88rem;
	color: var(--v2-ink);
	line-height: 1.4;
}
.v2plan__features svg {
	width: 1rem; height: 1rem;
	color: var(--v2-success);
	flex-shrink: 0;
	margin-top: .15rem;
}

.v2pricing__foot {
	text-align: center;
	margin-top: 2.2rem;
	font-family: 'Inter', sans-serif;
	font-size: .88rem;
	color: var(--v2-ink-muted);
}
.v2pricing__foot a {
	color: var(--v2-primary);
	font-weight: 600;
	text-decoration: none;
}
.v2pricing__foot a:hover { text-decoration: underline; }

/* ================================================================
   CHAPTER 8 — FAQ
   ================================================================ */
.v2faq {
	background: var(--v2-paper-2);
	padding: clamp(4rem, 8vw, 6rem) 0;
}
.v2faq__head {
	text-align: center;
	margin-bottom: 2.6rem;
}
.v2faq__list {
	max-width: 44rem;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: .8rem;
}
.v2faq__item {
	background: #fff;
	border: 1px solid var(--v2-line);
	border-radius: 12px;
	padding: 0;
	overflow: hidden;
	transition: border-color .2s, box-shadow .2s;
}
.v2faq__item[open] {
	border-color: var(--v2-primary);
	box-shadow: 0 0 0 3px var(--v2-primary-soft);
}
.v2faq__q {
	font-family: 'Inter', sans-serif;
	font-size: 1rem;
	font-weight: 600;
	color: var(--v2-ink);
	padding: 1.2rem 1.4rem;
	cursor: pointer;
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	line-height: 1.3;
}
.v2faq__q::-webkit-details-marker { display: none; }
.v2faq__q::after {
	content: "";
	width: 10px; height: 10px;
	border-right: 2px solid var(--v2-ink-muted);
	border-bottom: 2px solid var(--v2-ink-muted);
	transform: rotate(45deg);
	transition: transform .2s;
	flex-shrink: 0;
	margin-top: -4px;
}
.v2faq__item[open] .v2faq__q::after {
	transform: rotate(-135deg);
	margin-top: 4px;
	border-color: var(--v2-primary);
}
.v2faq__a {
	padding: 0 1.4rem 1.4rem;
	font-family: 'Inter', sans-serif;
	font-size: .95rem;
	color: var(--v2-ink-muted);
	line-height: 1.6;
	margin: 0;
}

/* ================================================================
   CHAPTER 9 — FINAL CTA (clean dark)
   ================================================================ */
.v2cta {
	position: relative;
	overflow: hidden;
	background: var(--v2-ink);
	color: #fff;
	padding: clamp(5rem, 10vw, 8rem) 0;
}
.v2cta__stars { display: none; }
.v2cta__inner {
	position: relative;
	z-index: 1;
	text-align: center;
	max-width: 44rem;
	margin: 0 auto;
	padding: 0 1rem;
}
.v2cta__title {
	font-family: var(--font-display);
	font-variation-settings: "opsz" 144;
	font-weight: 400;
	font-size: clamp(2.2rem, 6vw, 4.2rem);
	line-height: 1.02;
	letter-spacing: -0.025em;
	color: #fff;
	margin: 0 0 1.2rem;
}
.v2cta__sub {
	font-family: 'Inter', sans-serif;
	font-size: 1.1rem;
	color: rgba(255,255,255,.65);
	line-height: 1.6;
	margin: 0 auto 2.4rem;
	max-width: 34rem;
}
.v2cta__prompt { max-width: 40rem; margin: 0 auto 1.6rem; }
.v2cta__prompt textarea { color: #fff; caret-color: var(--v2-primary); }
.v2cta__prompt textarea::placeholder { color: rgba(255,255,255,.4); }

.v2cta__row {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	justify-content: center;
	margin-top: 1.4rem;
}
.v2cta__facts {
	display: flex;
	flex-wrap: wrap;
	gap: .6rem 1.6rem;
	justify-content: center;
	margin-top: 2rem;
	list-style: none;
	padding: 0;
}
.v2cta__facts li {
	font-family: 'Inter', sans-serif;
	font-size: .86rem;
	color: rgba(255,255,255,.55);
	display: inline-flex;
	align-items: center;
	gap: .5rem;
}
.v2cta__facts li::before {
	content: "";
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--v2-success);
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 960px) {
	.v2hero__copy { max-width: 100%; }
	.v2magic__inner { grid-template-columns: 1fr; gap: 3rem; }
	.v2bento { grid-template-columns: repeat(2, 1fr); }
	.v2tile--big { grid-row: auto; min-height: 20rem; }
	.v2trustband__list { grid-template-columns: repeat(2, 1fr); }
	.v2plans { grid-template-columns: 1fr; max-width: 26rem; }
}

@media (max-width: 640px) {
	.v2hero { padding-top: 3rem; }
	.v2bento { grid-template-columns: 1fr; }
	.v2trustband__list { grid-template-columns: 1fr; }
	.v2prompt__field { padding: .85rem .85rem .7rem; border-radius: 12px; }
	.v2prompt textarea { font-size: 1rem; min-height: 6rem; }
	.v2prompt__btn { padding: .6rem .85rem; font-size: .9rem; }
	.v2prompt__btn-label { display: none; }
	.v2magic__steps { flex-direction: column; gap: 1rem; }
	.v2demo__slot--site,
	.v2demo__slot--social { grid-column: span 2; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
	.reveal { opacity: 1; transform: none; transition: none; }
	.v2marquee2__row { animation: none; }
	.v2eyebrow__dot,
	.v2demo__timer::before,
	.v2brandcard .v2brand,
	.v2demo__prompt-text,
	.v2demo__slot,
	.v2prompt__mic.is-listening,
	.v2prompt__mic[aria-pressed="true"] { animation: none; }
	.v2brand { opacity: 1; transform: none; transition: none; }
	.v2brand:not(:first-child) { display: none; }
	.v2brandcard__dots { display: none; }
	.v2demo__prompt-text { width: 100%; border-right: 0; }
	.v2demo__slot { opacity: 1; transform: none; }
	.v2progress { display: none; }
}
