/*
 * Mockbooth landing page — "Atelier" theme, cinematic-editorial execution.
 * Brand tokens (colors/fonts) copied verbatim from apps/web/src/index.css
 * (the source of truth). If the app re-themes, sync the token block manually.
 *
 * Type roles: Bricolage Grotesque = display, Geist = body, Geist Mono = labels.
 * Mono micro-labels (.kicker, .tag, indices, captions, stat keys) use the
 * 14px eyebrow exception to the 16px floor — same role as the app's STUDIO tag.
 */
:root {
	--radius: 0.625rem;

	--background: oklch(0.145 0.008 255);
	--foreground: oklch(0.96 0.004 250);

	--card: oklch(0.175 0.008 255);
	--card-foreground: oklch(0.96 0.004 250);

	--primary: oklch(0.8 0.09 255);
	--primary-foreground: oklch(0.2 0.045 260);
	--accent2: oklch(0.63 0.13 263);

	--muted-foreground: oklch(0.68 0.012 255);
	--field: oklch(0.2 0.008 255);

	--border: oklch(0.3 0.01 255 / 70%);
	--ring: oklch(0.8 0.09 255 / 65%);

	--font-display: "Bricolage Grotesque", "Geist", ui-sans-serif, system-ui, sans-serif;
	--font-sans: "Geist", ui-sans-serif, system-ui, -apple-system, sans-serif;
	--font-mono: "Geist Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

	/* Derived surfaces for the editorial layout. */
	--hairline: oklch(0.32 0.01 255 / 55%);
	--card-2: oklch(0.2 0.009 256 / 70%);
	--maxw: 1200px;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	min-height: 100%;
	background: var(--background);
	color: var(--foreground);
	font-family: var(--font-sans);
	font-size: 1rem; /* 16px floor */
	line-height: 1.6;
	font-feature-settings: "cv01", "ss01";
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	overflow-x: hidden;
}

h1,
h2,
h3 {
	font-family: var(--font-display);
	font-weight: 600;
	letter-spacing: -0.025em;
	line-height: 1.04;
	margin: 0;
}

p {
	margin: 0;
}
a {
	color: inherit;
}

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

.container {
	width: 100%;
	max-width: var(--maxw);
	margin-inline: auto;
	padding-inline: 28px;
}

/* ----------------------------------------------------------------------------
 * Atmosphere — three fixed layers behind the content (aurora, grid, grain).
 * ------------------------------------------------------------------------- */
.bg-aurora,
.bg-grid,
.framed-grain {
	position: fixed;
	inset: 0;
	pointer-events: none;
	z-index: 0;
}

/* Slow-drifting cool light bloom — the cinematic glow, richer than a flat fill. */
.bg-aurora {
	background-image:
		radial-gradient(46% 38% at 72% 8%, oklch(0.66 0.13 263 / 34%) 0%, transparent 60%),
		radial-gradient(40% 34% at 18% 0%, oklch(0.8 0.09 255 / 22%) 0%, transparent 58%),
		radial-gradient(60% 50% at 50% -12%, oklch(0.3 0.04 255 / 55%) 0%, transparent 62%);
	animation: aurora-drift 26s ease-in-out infinite alternate;
	will-change: transform, opacity;
}
@keyframes aurora-drift {
	0% {
		transform: translate3d(-2%, -1%, 0) scale(1.02);
		opacity: 0.9;
	}
	100% {
		transform: translate3d(3%, 2%, 0) scale(1.08);
		opacity: 1;
	}
}

/* Faint editorial grid + a soft floor vignette. */
.bg-grid {
	background-image:
		linear-gradient(to right, oklch(0.5 0.02 255 / 6%) 1px, transparent 1px),
		radial-gradient(120% 80% at 50% 120%, oklch(0.1 0.01 255 / 70%) 0%, transparent 55%);
	background-size:
		calc((var(--maxw)) / 12) 100%,
		100% 100%;
	background-position:
		center top,
		center bottom;
	mask-image: linear-gradient(to bottom, transparent, #000 12%, #000 78%, transparent);
}

/* Film grain — copied from .framed-grain in the app. */
.framed-grain {
	opacity: 0.5;
	mix-blend-mode: overlay;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
}

/* Content sits above the atmosphere. */
.site-header,
#content,
.site-footer {
	position: relative;
	z-index: 1;
}

/* ----------------------------------------------------------------------------
 * Labels — mono eyebrows.
 * ------------------------------------------------------------------------- */
.tag {
	display: inline-block;
	font-family: var(--font-mono);
	font-size: 0.875rem;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.22em;
	color: var(--muted-foreground);
	border: 1px solid var(--border);
	border-radius: 6px;
	padding: 4px 10px;
}

.kicker {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-family: var(--font-mono);
	font-size: 0.875rem;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.24em;
	color: var(--primary);
}
.kicker::before {
	content: "";
	width: 22px;
	height: 1px;
	background: linear-gradient(to right, var(--primary), transparent);
}

/* ----------------------------------------------------------------------------
 * Buttons.
 * ------------------------------------------------------------------------- */
.btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 9px;
	min-height: 46px;
	padding: 0 22px;
	border-radius: var(--radius);
	border: 1px solid transparent;
	font: 500 1rem / 1 var(--font-sans);
	text-decoration: none;
	cursor: pointer;
	overflow: hidden;
	transition:
		transform 0.18s ease,
		box-shadow 0.18s ease,
		background-color 0.18s ease,
		border-color 0.18s ease;
}
.btn span[aria-hidden] {
	transition: transform 0.18s ease;
}
.btn:hover span[aria-hidden] {
	transform: translateX(3px);
}

.btn--primary {
	color: var(--primary-foreground);
	background-image: linear-gradient(135deg, var(--primary), var(--accent2));
	box-shadow:
		0 8px 30px oklch(0.63 0.13 263 / 35%),
		inset 0 1px 0 oklch(1 0 0 / 25%);
}
.btn--primary::after {
	/* shine sweep on hover */
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(110deg, transparent 30%, oklch(1 0 0 / 35%) 50%, transparent 70%);
	transform: translateX(-120%);
	transition: transform 0.6s ease;
}
.btn--primary:hover {
	transform: translateY(-2px);
	box-shadow:
		0 12px 42px oklch(0.63 0.13 263 / 50%),
		inset 0 1px 0 oklch(1 0 0 / 25%);
}
.btn--primary:hover::after {
	transform: translateX(120%);
}

.btn--ghost {
	color: var(--foreground);
	background: oklch(1 0 0 / 3%);
	border-color: var(--border);
}
.btn--ghost:hover {
	background: var(--field);
	border-color: var(--ring);
	transform: translateY(-2px);
}

.btn--lg {
	min-height: 56px;
	padding: 0 30px;
	font-size: 1.0625rem;
}

/* ----------------------------------------------------------------------------
 * A11y primitives.
 * ------------------------------------------------------------------------- */
:focus-visible {
	outline: none;
	box-shadow:
		0 0 0 2px var(--background),
		0 0 0 4px var(--ring);
	border-radius: var(--radius);
}
.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
	border: 0;
}
.skip-link {
	position: fixed;
	top: 8px;
	left: 8px;
	z-index: 100;
	transform: translateY(-150%);
	background: var(--card);
	color: var(--foreground);
	padding: 10px 16px;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	text-decoration: none;
}
.skip-link:focus {
	transform: translateY(0);
}

/* Scroll reveal — visible by default; JS arms then reveals. */
.reveal {
	opacity: 1;
	transform: none;
}
.reveal--armed {
	opacity: 0;
	transform: translateY(22px);
	transition:
		opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
		transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal--armed.is-visible {
	opacity: 1;
	transform: none;
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}
	*,
	*::before,
	*::after {
		/* biome-ignore lint/complexity/noImportantStyles: a11y override must beat component animations */
		animation-duration: 0.001ms !important;
		/* biome-ignore lint/complexity/noImportantStyles: a11y override must beat component animations */
		animation-iteration-count: 1 !important;
		/* biome-ignore lint/complexity/noImportantStyles: a11y override must beat component animations */
		transition-duration: 0.001ms !important;
	}
	.reveal,
	.reveal--armed {
		opacity: 1;
		transform: none;
	}
}

/* ----------------------------------------------------------------------------
 * Header / nav.
 * ------------------------------------------------------------------------- */
.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: oklch(0.145 0.008 255 / 68%);
	backdrop-filter: blur(14px) saturate(1.2);
	border-bottom: 1px solid var(--hairline);
}
.nav {
	display: flex;
	align-items: center;
	gap: 16px;
	min-height: 68px;
}
.brand {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	text-decoration: none;
}
.brand__mark {
	display: inline-flex;
}
.brand__word {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 1.2rem;
	letter-spacing: -0.01em;
}
.brand__a {
	color: var(--primary);
}
.nav__links {
	display: flex;
	align-items: center;
	gap: 26px;
	margin-left: auto;
}
.nav__links a {
	text-decoration: none;
	color: var(--muted-foreground);
	font-weight: 500;
	padding-block: 6px;
	transition: color 0.15s ease;
}
.nav__links a:hover {
	color: var(--foreground);
}
.nav__links a.btn--primary {
	color: var(--primary-foreground);
}
.nav__toggle {
	display: none;
	margin-left: auto;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	color: var(--foreground);
	background: transparent;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	cursor: pointer;
}

@media (max-width: 760px) {
	.nav__toggle {
		display: inline-flex;
	}
	.nav__links {
		position: absolute;
		left: 0;
		right: 0;
		top: 100%;
		flex-direction: column;
		align-items: stretch;
		gap: 6px;
		padding: 16px 28px 24px;
		background: oklch(0.16 0.008 255 / 96%);
		backdrop-filter: blur(14px);
		border-bottom: 1px solid var(--border);
		margin-left: 0;
		display: none;
	}
	.nav__links.is-open {
		display: flex;
	}
	.nav__links a.btn--primary {
		justify-content: center;
		margin-top: 8px;
	}
}

/* ----------------------------------------------------------------------------
 * Hero.
 * ------------------------------------------------------------------------- */
.hero {
	padding: clamp(48px, 9vw, 104px) 0 clamp(56px, 9vw, 110px);
}
.hero__grid {
	display: grid;
	grid-template-columns: 1.02fr 1.1fr;
	gap: clamp(40px, 6vw, 76px);
	align-items: center;
}

.hero__copy .kicker {
	margin-bottom: 26px;
}
.hero h1 {
	font-size: clamp(2.7rem, 6.2vw, 4.7rem);
	font-weight: 700;
	letter-spacing: -0.035em;
}
.hero h1 .hl {
	color: var(--primary);
	text-shadow: 0 0 38px oklch(0.8 0.09 255 / 45%);
}
.hero__sub {
	margin-top: 26px;
	color: var(--muted-foreground);
	font-size: clamp(1.0625rem, 1.4vw, 1.2rem);
	max-width: 48ch;
}
.hero__cta {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 36px;
}

.hero__stats {
	display: flex;
	flex-wrap: wrap;
	gap: 14px 38px;
	margin: 44px 0 0;
	padding-top: 28px;
	border-top: 1px solid var(--hairline);
}
.hero__stats div {
	display: flex;
	flex-direction: column;
	gap: 6px;
}
.hero__stats dt {
	font-family: var(--font-mono);
	font-size: 0.875rem;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.18em;
	color: var(--muted-foreground);
}
.hero__stats dd {
	margin: 0;
	font-size: 1rem;
	font-weight: 600;
}

/* The product stage: glow bloom + a perspective-tilted shot + a spec chip. */
.hero__visual {
	perspective: 2000px;
}
.hero__stage {
	position: relative;
}
.hero__glow {
	position: absolute;
	inset: -14% -10% -22%;
	background:
		radial-gradient(60% 60% at 60% 35%, oklch(0.66 0.13 263 / 55%) 0%, transparent 62%),
		radial-gradient(55% 55% at 25% 70%, oklch(0.8 0.09 255 / 32%) 0%, transparent 60%);
	filter: blur(28px);
	z-index: 0;
}
.hero__shot {
	position: relative;
	z-index: 1;
	width: 100%;
	border-radius: 16px;
	border: 1px solid oklch(0.45 0.02 255 / 50%);
	box-shadow:
		0 40px 90px oklch(0.04 0.02 260 / 70%),
		0 8px 24px oklch(0.04 0.02 260 / 50%);
	transform: rotateY(-11deg) rotateX(5deg) rotate(0.4deg);
	transform-origin: 60% 50%;
	transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.hero__stage:hover .hero__shot {
	transform: rotateY(-4deg) rotateX(2deg);
}
.hero__chip {
	position: absolute;
	z-index: 2;
	left: -14px;
	bottom: 26px;
	display: inline-flex;
	align-items: center;
	gap: 9px;
	padding: 10px 15px;
	font-family: var(--font-mono);
	font-size: 0.875rem;
	letter-spacing: 0.04em;
	color: var(--foreground);
	background: oklch(0.2 0.01 256 / 82%);
	backdrop-filter: blur(8px);
	border: 1px solid var(--hairline);
	border-radius: 11px;
	box-shadow: 0 14px 40px oklch(0.04 0.02 260 / 55%);
}
.dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--primary);
	box-shadow: 0 0 12px var(--primary);
}

/* The hero is intentionally instant (no opacity entrance) so the LCP shot and
 * headline render immediately. Life comes from the drifting aurora + the
 * shot's perspective and hover, not a load-time fade. */

/* ----------------------------------------------------------------------------
 * Section scaffold + editorial index header.
 * ------------------------------------------------------------------------- */
.section {
	padding: clamp(64px, 10vw, 120px) 0;
	position: relative;
}
.section + .section,
#features,
#uses,
#gallery,
#faq {
	border-top: 1px solid var(--hairline);
}

/* Use cases — intent-rich landing paths without turning the page into a keyword list. */
.use-cases {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
}
.use-cases li {
	padding: 28px;
	background: var(--card-2);
	border: 1px solid var(--hairline);
	border-radius: 14px;
}
.use-cases h3 {
	font-size: 1.25rem;
	margin-bottom: 12px;
}
.use-cases p {
	color: var(--muted-foreground);
}

/* FAQ — visible content mirrors the FAQ structured data in the document head. */
.faq {
	max-width: 860px;
	border-top: 1px solid var(--hairline);
}
.faq details {
	border-bottom: 1px solid var(--hairline);
	padding: 0 4px;
}
.faq summary {
	cursor: pointer;
	font-family: var(--font-display);
	font-size: 1.2rem;
	font-weight: 600;
	padding: 24px 42px 24px 0;
}
.faq p {
	color: var(--muted-foreground);
	max-width: 72ch;
	padding: 0 42px 24px 0;
}

.section__head {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 18px 30px;
	align-items: start;
	margin-bottom: clamp(40px, 6vw, 64px);
}
.section__index {
	grid-row: 1 / span 2;
	font-family: var(--font-mono);
	font-weight: 500;
	font-size: clamp(2.4rem, 5vw, 3.6rem);
	line-height: 0.9;
	color: transparent;
	-webkit-text-stroke: 1px oklch(0.5 0.03 258 / 60%);
}
.section__head .kicker {
	grid-column: 2;
	align-self: end;
}
.section__head h2 {
	grid-column: 2;
	font-size: clamp(2rem, 4.2vw, 3.05rem);
	max-width: 20ch;
}

/* ----------------------------------------------------------------------------
 * How it works — editorial steps with ghost numerals + accent tick.
 * ------------------------------------------------------------------------- */
.steps {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0;
}
.step {
	position: relative;
	padding: 34px 30px 36px;
	border-left: 1px solid var(--hairline);
}
.step:first-child {
	border-left: 0;
}
.step::before {
	/* accent tick */
	content: "";
	position: absolute;
	top: 0;
	left: -1px;
	width: 40px;
	height: 2px;
	background: linear-gradient(to right, var(--primary), transparent);
}
.step__n {
	display: block;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 3.4rem;
	line-height: 1;
	color: transparent;
	-webkit-text-stroke: 1.2px oklch(0.55 0.06 258 / 55%);
	margin-bottom: 20px;
}
.step h3 {
	font-size: 1.4rem;
	margin-bottom: 10px;
}
.step p {
	color: var(--muted-foreground);
	max-width: 34ch;
}

/* ----------------------------------------------------------------------------
 * Features — spec-sheet grid sharing hairlines, accent glow on hover.
 * ------------------------------------------------------------------------- */
/* Hairlines are drawn by a 1px grid gap revealing the container's hairline
 * background — self-managing at any column count, no per-cell border math. */
.features {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1px;
	border: 1px solid var(--hairline);
	border-radius: 16px;
	overflow: hidden;
	background: var(--hairline);
}
.feature {
	position: relative;
	padding: 30px 28px 34px;
	background: var(--card-2);
	transition: background-color 0.2s ease;
}
.feature__idx {
	font-family: var(--font-mono);
	font-size: 0.875rem;
	letter-spacing: 0.12em;
	color: var(--primary);
	opacity: 0.85;
}
.feature h3 {
	font-size: 1.2rem;
	margin: 14px 0 9px;
}
.feature p {
	color: var(--muted-foreground);
}
.feature::after {
	/* top accent line grows on hover */
	content: "";
	position: absolute;
	left: 0;
	top: -1px;
	height: 2px;
	width: 0;
	background: linear-gradient(to right, var(--primary), var(--accent2));
	transition: width 0.3s ease;
}
.feature:hover {
	background: oklch(0.22 0.012 258 / 60%);
}
.feature:hover::after {
	width: 100%;
}

/* ----------------------------------------------------------------------------
 * Gallery — bento with overlaid mono captions + hover zoom.
 * ------------------------------------------------------------------------- */
.gallery {
	display: grid;
	grid-template-columns: 1.5fr 1fr;
	grid-auto-rows: 1fr;
	gap: 18px;
}
.gallery__item {
	position: relative;
	margin: 0;
	overflow: hidden;
	background: var(--card);
	border-radius: 14px;
	border: 1px solid oklch(0.42 0.02 255 / 60%);
	box-shadow:
		0 18px 50px oklch(0.04 0.02 260 / 50%),
		inset 0 0 0 1px oklch(1 0 0 / 4%);
}
.gallery__item--lead {
	grid-row: span 2;
}
.gallery__item--wide {
	grid-column: 1 / -1;
}
.gallery__item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.gallery__item:hover img {
	transform: scale(1.04);
}
.gallery__item figcaption {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	align-items: center;
	gap: 9px;
	padding: 30px 18px 16px;
	font-family: var(--font-mono);
	font-size: 0.875rem;
	letter-spacing: 0.05em;
	color: var(--foreground);
	background: linear-gradient(to top, oklch(0.08 0.01 258 / 88%), transparent);
}

/* ----------------------------------------------------------------------------
 * Pricing — one card. The service is free-only, so the grid collapses to a
 * single accented spec card (.plans--single) instead of the old Free/Pro pair.
 * Checks are drawn in CSS (no icon font), notes get a dash.
 * ------------------------------------------------------------------------- */
.plans {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 22px;
	align-items: stretch;
	max-width: 940px;
}
/* Single-plan layout: keep the card at a readable measure rather than letting
 * it stretch across the full 940px the two-card grid was sized for. */
.plans--single {
	grid-template-columns: minmax(0, 560px);
}
.plan {
	position: relative;
	display: flex;
	flex-direction: column;
	padding: 34px 30px 30px;
	background: var(--card-2);
	border: 1px solid var(--hairline);
	border-radius: 18px;
}
.plan--feature {
	background:
		radial-gradient(90% 70% at 80% -10%, oklch(0.66 0.16 264 / 26%) 0%, transparent 60%),
		linear-gradient(180deg, oklch(0.21 0.015 260 / 85%) 0%, oklch(0.175 0.01 258 / 85%) 100%);
	border-color: oklch(0.55 0.08 262 / 55%);
	box-shadow: 0 24px 70px oklch(0.5 0.13 263 / 22%);
}
.plan--feature::before {
	/* accent hairline glow along the top edge, echoing the CTA band */
	content: "";
	position: absolute;
	inset: 0 0 auto 0;
	height: 1px;
	background: linear-gradient(to right, transparent, var(--primary), transparent);
	opacity: 0.7;
}
.plan__badge {
	position: absolute;
	top: 22px;
	right: 22px;
	font-family: var(--font-mono);
	font-size: 0.875rem;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.16em;
	color: var(--primary);
	border: 1px solid oklch(0.8 0.09 255 / 45%);
	border-radius: 6px;
	padding: 4px 10px;
	background: oklch(0.8 0.09 255 / 8%);
}
.plan__head h3 {
	font-size: 1.75rem;
	letter-spacing: -0.02em;
}
.plan__price {
	margin-top: 8px;
	font-family: var(--font-mono);
	font-size: 0.875rem;
	letter-spacing: 0.06em;
	color: var(--muted-foreground);
}
.plan__amount {
	color: var(--foreground);
	font-weight: 600;
	font-size: 1rem;
}
.plan__blurb {
	margin-top: 16px;
	color: var(--muted-foreground);
	max-width: 40ch;
}
.plan__list {
	list-style: none;
	margin: 22px 0 26px;
	padding: 22px 0 0;
	border-top: 1px solid var(--hairline);
	display: flex;
	flex-direction: column;
	gap: 12px;
	flex: 1;
}
.plan__list li {
	position: relative;
	padding-left: 28px;
}
.plan__list li::before {
	/* check mark */
	content: "";
	position: absolute;
	left: 2px;
	top: 0.42em;
	width: 10px;
	height: 6px;
	border-left: 2px solid var(--primary);
	border-bottom: 2px solid var(--primary);
	transform: rotate(-45deg);
}
.plan__list .plan__note {
	color: var(--muted-foreground);
}
.plan__list .plan__note::before {
	/* dash instead of a check — a caveat, not a feature */
	border-left: 0;
	border-bottom: 2px solid var(--muted-foreground);
	transform: none;
	top: 0.65em;
	opacity: 0.8;
}
.plan__cta {
	justify-content: center;
}

@media (max-width: 860px) {
	.plans,
	.plans--single {
		grid-template-columns: 1fr;
	}
}

/* ----------------------------------------------------------------------------
 * Closing CTA — full-bleed aurora panel.
 * ------------------------------------------------------------------------- */
.cta-band {
	padding: clamp(64px, 10vw, 120px) 0;
}
.cta-band__inner {
	position: relative;
	overflow: hidden;
	text-align: center;
	padding: clamp(48px, 8vw, 88px) 28px;
	border-radius: 24px;
	border: 1px solid oklch(0.55 0.08 262 / 55%);
	background:
		radial-gradient(75% 120% at 50% -10%, oklch(0.66 0.16 264 / 60%) 0%, transparent 58%),
		radial-gradient(90% 120% at 50% 130%, oklch(0.72 0.11 256 / 38%) 0%, transparent 62%),
		linear-gradient(180deg, oklch(0.22 0.02 260) 0%, oklch(0.165 0.01 258) 100%);
	box-shadow:
		0 30px 90px oklch(0.5 0.13 263 / 30%),
		0 0 0 1px oklch(0.5 0.1 263 / 20%),
		inset 0 1px 0 oklch(1 0 0 / 14%);
}
/* Accent hairline glow along the top edge of the panel. */
.cta-band__inner::before {
	content: "";
	position: absolute;
	inset: 0 0 auto 0;
	height: 1px;
	background: linear-gradient(to right, transparent, var(--primary), transparent);
	opacity: 0.7;
}
.cta-band__inner .kicker {
	justify-content: center;
	margin-bottom: 18px;
}
.cta-band__inner h2 {
	font-size: clamp(2.1rem, 5vw, 3.4rem);
}
.cta-band__inner p {
	color: var(--muted-foreground);
	margin: 16px auto 32px;
	max-width: 46ch;
	font-size: 1.0625rem;
}

/* ----------------------------------------------------------------------------
 * Footer.
 * ------------------------------------------------------------------------- */
.site-footer {
	border-top: 1px solid var(--hairline);
	padding: 44px 0;
}
.site-footer__inner {
	display: flex;
	align-items: center;
	gap: 22px;
	flex-wrap: wrap;
}
.site-footer .brand__word {
	font-size: 1.1rem;
}
.site-footer__links {
	display: flex;
	gap: 24px;
	margin-left: auto;
}
.site-footer__links a {
	color: var(--muted-foreground);
	text-decoration: none;
	transition: color 0.15s ease;
}
.site-footer__links a:hover {
	color: var(--foreground);
}
.site-footer__copy {
	color: var(--muted-foreground);
	font-family: var(--font-mono);
	font-size: 0.875rem;
	letter-spacing: 0.04em;
}

/* ----------------------------------------------------------------------------
 * Responsive.
 * ------------------------------------------------------------------------- */
@media (max-width: 920px) {
	.features,
	.use-cases {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 860px) {
	.hero__grid {
		grid-template-columns: 1fr;
		gap: 44px;
	}
	.hero__visual {
		order: 2;
	}
	.hero__shot {
		transform: rotateY(-6deg) rotateX(3deg);
	}
	.steps {
		grid-template-columns: 1fr;
	}
	.step {
		border-left: 0;
		border-top: 1px solid var(--hairline);
		padding: 28px 0 30px;
	}
	.step:first-child {
		border-top: 0;
	}
	.step::before {
		left: 0;
	}
	.gallery {
		grid-template-columns: 1fr;
	}
	.gallery__item--lead {
		grid-row: auto;
	}
	.section__head h2 {
		max-width: none;
	}
}

@media (max-width: 560px) {
	.features,
	.use-cases {
		grid-template-columns: 1fr;
	}
	.hero__chip {
		left: 0;
	}
}
