/* Arkalys — design system: dark premium SaaS waitlist (neutral-950 + orange + teal process) */
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Sora:wght@400;500;600;700;800&display=swap");

:root {
	--bg: #0a0a0a;
	--bg-2: #171717;
	--bg-elevated: rgba(255, 255, 255, 0.04);
	--surface: rgba(255, 255, 255, 0.05);
	--surface-2: rgba(255, 255, 255, 0.06);
	--ink: #fafafa;
	--ink-secondary: #a3a3a3;
	--ink-muted: #a3a3a3;
	--ink-faint: #737373;
	--ink-subtle: #525252;
	--line: rgba(255, 255, 255, 0.06);
	--line-mid: rgba(255, 255, 255, 0.08);
	--line-bright: rgba(255, 255, 255, 0.1);
	--accent-200: #fed7aa;
	--accent-300: #fdba74;
	--accent-400: #fb923c;
	--accent-500: #f97316;
	--accent-glow: rgba(251, 146, 60, 0.24);
	--accent-glow-soft: rgba(251, 146, 60, 0.2);
	--teal-200: #99f6e4;
	--cyan-300: #67e8f9;
	--ember: var(--accent-400);
	--ember-bright: var(--accent-200);
	--ember-mute: rgba(251, 146, 60, 0.1);
	--tide: #2dd4bf;
	--tide-mute: rgba(45, 212, 191, 0.08);
	--gutter: clamp(1.1rem, 3vw, 1.5rem);
	--content-max: 72rem;
	--radius: 0.75rem;
	--radius-md: 1rem;
	--radius-lg: 1.25rem;
	--radius-xl: 1.5rem;
	--shadow-in: inset 0 1px 0 rgba(255, 255, 255, 0.05);
	--shadow-soft: 0 24px 50px -24px rgba(0, 0, 0, 0.55);
	--shadow-cta: 0 32px 64px -32px rgba(0, 0, 0, 0.5);
	--ease-out: cubic-bezier(0.16, 1, 0.3, 1);
	--font-display: "Sora", system-ui, sans-serif;
	--font-body: "Manrope", system-ui, sans-serif;
	--font: var(--font-body);
	--surface-cta: linear-gradient(150deg, rgba(255, 255, 255, 0.05) 0%, rgba(12, 12, 12, 0.97) 55%, #0a0a0a 100%);
	--btn-ink: #0c0a09;
	--btn-grad: linear-gradient(168deg, var(--accent-200) 0%, var(--accent-400) 100%);
	--btn-outer: var(--shadow-in), 0 12px 32px -10px var(--accent-glow-soft);
	--btn-outer-hover: var(--shadow-in), 0 20px 40px -12px var(--accent-glow);
}

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

html {
	scroll-behavior: smooth;
}

.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;
}

::selection {
	background: rgba(251, 146, 60, 0.35);
	color: var(--ink);
}

body {
	margin: 0;
	min-height: 100vh;
	position: relative;
	color: var(--ink);
	background-color: var(--bg);
	font-family: var(--font-body);
	font-size: 1.0625rem;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-feature-settings: "kern" 1;
	background-image:
		radial-gradient(120% 80% at 50% -15%, rgba(251, 146, 60, 0.09) 0%, transparent 50%),
		radial-gradient(90% 50% at 10% 20%, rgba(255, 255, 255, 0.04) 0%, transparent 45%),
		radial-gradient(60% 40% at 90% 60%, rgba(251, 146, 60, 0.05) 0%, transparent 50%),
		linear-gradient(180deg, #0a0a0a 0%, #050505 100%);
}

body::before {
	content: "";
	position: fixed;
	inset: 0;
	pointer-events: none;
	z-index: 0;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
	background-size: 56px 56px, 56px 56px;
	opacity: 0.45;
}

/* Stack page chrome above the grid */
.msgs-list,
.site-header,
section,
footer {
	position: relative;
	z-index: 1;
}

a {
	color: var(--accent-400);
	font-weight: 600;
	text-decoration: none;
	font-family: var(--font-body);
	transition: color 0.2s var(--ease-out);
}

a:hover {
	color: var(--accent-200);
}

/* Don’t recolor primary buttons that look like .wl button */
a.nav-cta,
a.nav-cta:hover,
a.nav-cta:visited,
a.nav-cta:active {
	color: var(--btn-ink);
}

.wrap {
	width: 100%;
	max-width: var(--content-max);
	margin-left: auto;
	margin-right: auto;
	padding-left: var(--gutter);
	padding-right: var(--gutter);
}

section {
	padding: clamp(3.25rem, 8vw, 5.5rem) 0;
}

/* —— Messages —— */
.msgs-list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.msgs {
	margin: 0;
	padding: 0.8rem var(--gutter);
	font-size: 0.9rem;
	font-weight: 600;
	text-align: center;
	letter-spacing: 0.01em;
}

.msgs--success {
	background: var(--tide-mute);
	color: #c5eceb;
	border-bottom: 1px solid rgba(106, 168, 166, 0.2);
}

.msgs--error {
	background: var(--ember-mute);
	color: #ffd0c4;
	border-bottom: 1px solid rgba(223, 143, 112, 0.2);
}

.msgs--info,
.msgs--debug {
	background: rgba(255, 255, 255, 0.04);
	color: var(--ink-muted);
	border-bottom: 1px solid var(--line);
}

.msgs--warning {
	background: rgba(200, 170, 100, 0.1);
	color: #e8e0d0;
	border-bottom: 1px solid rgba(200, 170, 100, 0.2);
}

/* —— Header (glass) —— */
.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	border-bottom: 1px solid var(--line);
	background: rgba(10, 10, 10, 0.72);
	backdrop-filter: blur(24px) saturate(1.2);
	-webkit-backdrop-filter: blur(24px) saturate(1.2);
	box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04);
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	padding-top: 0.85rem;
	padding-bottom: 0.85rem;
}

.brand {
	font-family: var(--font-display);
	display: flex;
	align-items: center;
	gap: 0.65rem;
	font-size: 0.95rem;
	font-weight: 700;
	letter-spacing: -0.04em;
	color: var(--ink);
}

.brand__mark {
	font-family: var(--font-display);
	width: 1.95rem;
	height: 1.95rem;
	border-radius: 0.6rem;
	background: transparent;
	color: var(--btn-ink);
	font-size: 0.6rem;
	font-weight: 800;
	letter-spacing: 0.04em;
	display: grid;
	place-items: center;
	box-shadow: none;
}

.nav {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.35rem 1.35rem;
	font-size: 0.875rem;
}

/* Text links: muted → white (zinc-400 / neutral-500 → primary text) */
.nav .nav-link {
	color: var(--ink-secondary);
	font-weight: 500;
	padding: 0.4rem 0.1rem;
	transition: color 0.2s var(--ease-out);
}

.nav .nav-link:hover {
	color: var(--ink);
}

/* Nav CTA — same primary as .wl button (form submit), at pill size */
.nav .nav-cta {
	font-family: var(--font-body);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 2.5rem;
	padding: 0.55rem 1.2rem;
	margin-left: 0.1rem;
	border-radius: 9999px;
	font-size: 0.8125rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	font-feature-settings: "kern" 1, "lnum" 1;
	background: var(--btn-grad);
	color: var(--btn-ink);
	border: 1px solid rgba(255, 255, 255, 0.15);
	box-shadow: var(--btn-outer);
	transition: filter 0.2s var(--ease-out), transform 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out);
	text-decoration: none;
	-webkit-tap-highlight-color: transparent;
}

.nav .nav-cta:hover,
.nav .nav-cta:focus-visible {
	filter: brightness(1.05);
	box-shadow: var(--btn-outer-hover);
	transform: translateY(-1px);
}

.nav .nav-cta:focus {
	outline: none;
}

.nav .nav-cta:focus-visible {
	box-shadow: 0 0 0 2px var(--bg), 0 0 0 4px rgba(251, 146, 60, 0.5);
}

.nav .nav-cta:active {
	filter: brightness(0.98);
	transform: scale(0.98);
}

.nav-cta__label {
	white-space: nowrap;
}

/* —— Hero —— */
.hero {
	position: relative;
	padding: 2.25rem 0 4rem;
	overflow: hidden;
}

.hero::before {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	background:
		radial-gradient(ellipse 90% 65% at 20% 5%, rgba(255, 255, 255, 0.06) 0%, transparent 50%),
		radial-gradient(ellipse 80% 50% at 80% 40%, rgba(251, 146, 60, 0.1) 0%, transparent 55%),
		radial-gradient(ellipse 50% 40% at 50% 100%, rgba(251, 146, 60, 0.06) 0%, transparent 50%);
}

.hero__inner {
	position: relative;
	z-index: 1;
}

.hero__grid {
	display: grid;
	gap: 2.5rem 3.5rem;
	align-items: start;
	grid-template-columns: 1fr;
}

@media (min-width: 960px) {
	.hero__grid {
		grid-template-columns: 1.1fr 0.9fr;
		gap: 3.25rem;
		align-items: center;
		min-height: min(32rem, calc(100vh - 8.5rem));
	}
}

.hero__eyebrow {
	font-family: var(--font-body);
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	margin-bottom: 1.1rem;
	padding: 0.45rem 1rem;
	font-size: 0.65rem;
	font-weight: 700;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	color: var(--ink-secondary);
	border: 1px solid var(--line-bright);
	border-radius: 9999px;
	background: rgba(255, 255, 255, 0.04);
	backdrop-filter: blur(8px);
}

/* Exclusivity / status dot — orange, subtle pulse via shadow */
.hero__eyebrow::before {
	content: "";
	width: 0.35rem;
	height: 0.35rem;
	border-radius: 50%;
	background: var(--accent-400);
	box-shadow: 0 0 8px 1px var(--accent-glow-soft);
	flex-shrink: 0;
}

.hero h1 {
	font-family: var(--font-display);
	margin: 0 0 1.2rem;
	font-size: clamp(2.4rem, 4.5vw, 3.75rem);
	line-height: 1.05;
	letter-spacing: -0.045em;
	font-weight: 800;
	font-feature-settings: "ss01" 1;
	max-width: 16ch;
}

.hero__lead {
	font-family: var(--font-body);
	margin: 0 0 1.75rem;
	max-width: 40ch;
	color: var(--ink-secondary);
	font-size: 1.02rem;
	line-height: 1.75;
}

/* Hero value rail — glassmorphism + soft lift */
.hero__side {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	padding: 1.2rem 1.25rem;
	background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(10, 10, 10, 0.65) 100%);
	border: 1px solid var(--line-bright);
	border-radius: var(--radius-xl);
	box-shadow: var(--shadow-cta), var(--shadow-in);
	backdrop-filter: blur(20px) saturate(1.15);
	-webkit-backdrop-filter: blur(20px) saturate(1.15);
	position: relative;
}

.hero__side::after {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	pointer-events: none;
	background: linear-gradient(130deg, rgba(251, 146, 60, 0.05) 0%, transparent 45%, rgba(255, 255, 255, 0.04) 100%);
}

.hero__side>* {
	position: relative;
	z-index: 1;
}

.hero__metric {
	padding: 0.65rem 0.75rem;
	border-radius: var(--radius);
	border: 1px solid transparent;
	background: rgba(255, 255, 255, 0.02);
}

.hero__metric--accent {
	border-color: rgba(251, 146, 60, 0.22);
	background: rgba(251, 146, 60, 0.08);
}

.hero__metric-k {
	display: block;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--ink-faint);
	margin-bottom: 0.25rem;
}

.hero__metric-v {
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--ink);
	letter-spacing: -0.01em;
}

/* —— Section primitives (Manrope micro-labels + Sora display) —— */
.section-kicker {
	font-family: var(--font-body);
	margin: 0 0 0.7rem;
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.26em;
	text-transform: uppercase;
	color: var(--ink-faint);
}

.section-kicker--on-dark {
	color: #a3a3a3;
}

.section-title,
.outcome__title,
.card h3,
.how__body h3,
.cta__panel .section-title,
h1,
h2 {
	font-family: var(--font-display);
}

.section-title {
	margin: 0 0 0.45rem;
	font-size: clamp(1.75rem, 2.8vw, 2.45rem);
	letter-spacing: -0.04em;
	font-weight: 700;
	line-height: 1.2;
	text-wrap: balance;
}

/* Highlight fragments: orange-200 (not italic — geometric display reads cleaner) */
.section-title em,
.outcome__title em {
	color: var(--accent-200);
	font-style: normal;
	font-weight: 700;
	font-synthesis: none;
}

.why__title {
	max-width: min(100%, 32rem);
}

.why__title em {
	letter-spacing: -0.02em;
}

.section-sub {
	font-family: var(--font-body);
	margin: 0 0 2.1rem;
	color: var(--ink-secondary);
	max-width: 42ch;
	font-size: 0.95rem;
	line-height: 1.7;
}

.section-sub--center {
	margin-left: auto;
	margin-right: auto;
}

.section-sub--on-dark {
	color: #d4d4d4;
}

/* —— Waitlist form —— */
.wl {
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem;
	align-items: stretch;
	width: 100%;
	max-width: 26rem;
}

.wl--hero {
	max-width: 30rem;
}

.wl input[type="email"] {
	flex: 1 1 11rem;
	min-width: 0;
	padding: 0.9rem 1.05rem;
	font-family: var(--font-body);
	font-size: 0.9rem;
	font-weight: 500;
	letter-spacing: 0.01em;
	color: var(--ink);
	background: rgba(255, 255, 255, 0.03);
	border: 1.5px solid var(--line-mid);
	border-radius: var(--radius-md);
	outline: none;
	box-shadow: var(--shadow-in);
	transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}

.wl input::placeholder {
	color: var(--ink-faint);
}

.wl input:focus,
.wl input:focus-visible {
	outline: none;
	border-color: rgba(251, 146, 60, 0.45);
	background: rgba(0, 0, 0, 0.35);
	box-shadow: var(--shadow-in), 0 0 0 1px rgba(251, 146, 60, 0.15);
}

.wl button {
	cursor: pointer;
	font-family: var(--font-body);
	font-size: 0.9rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	padding: 0.9rem 1.35rem;
	border-radius: var(--radius-md);
	color: var(--btn-ink);
	border: 1px solid rgba(255, 255, 255, 0.12);
	background: var(--btn-grad);
	box-shadow: var(--btn-outer);
	transition: filter 0.2s var(--ease-out), transform 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out);
}

.wl button:hover {
	filter: brightness(1.04);
	transform: translateY(-1px);
	box-shadow: var(--btn-outer-hover);
}

.wl button:active {
	transform: scale(0.98);
}

.wl button:focus,
.wl button:focus-visible {
	outline: none;
	box-shadow: 0 0 0 2px var(--bg), 0 0 0 4px rgba(251, 146, 60, 0.5);
}

.wl__hint {
	margin: 0.7rem 0 0;
	width: 100%;
	flex: 1 0 100%;
	font-size: 0.78rem;
	color: var(--ink-faint);
	letter-spacing: 0.04em;
}

/* —— Why (bento) —— */
.why {
	border-top: 1px solid var(--line);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, transparent 40%, transparent 100%);
}

.why .section-sub {
	max-width: 48ch;
}

.why__grid {
	display: grid;
	gap: 0.9rem;
	grid-template-columns: 1fr;
}

@media (min-width: 700px) {
	.why__grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 1.05rem;
	}

	.why__grid .card:nth-child(2) {
		margin-top: 0.5rem;
	}

	.why__grid .card:nth-child(3) {
		margin-top: 0.35rem;
	}
}

.card {
	position: relative;
	padding: 1.4rem 1.35rem 1.5rem;
	background: linear-gradient(160deg, rgba(255, 255, 255, 0.04) 0%, rgba(10, 10, 10, 0.6) 100%);
	border: 1px solid var(--line);
	border-radius: var(--radius-xl);
	overflow: hidden;
	transition: border-color 0.3s, transform 0.3s var(--ease-out), box-shadow 0.3s;
	backdrop-filter: blur(8px);
}

.card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.06), transparent);
	opacity: 0.7;
}

.card:hover {
	border-color: rgba(251, 146, 60, 0.2);
	box-shadow: 0 20px 50px -28px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(251, 146, 60, 0.08);
	transform: translateY(-3px);
}

.card__n {
	display: block;
	margin-bottom: 0.85rem;
	font-size: 0.65rem;
	font-weight: 800;
	letter-spacing: 0.18em;
	color: var(--ink-faint);
}

.card h3 {
	margin: 0 0 0.5rem;
	font-size: 1.05rem;
	letter-spacing: -0.025em;
	font-weight: 700;
	line-height: 1.25;
}

.card h3 em {
	color: var(--accent-200);
	font-style: normal;
	font-weight: 700;
}

.card p {
	margin: 0;
	color: var(--ink-muted);
	font-size: 0.94rem;
	line-height: 1.58;
}

/* —— How: bento (teal index pills; rest = neutral + orange on hover) —— */
.how {
	border-top: 1px solid var(--line);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, transparent 50%);
}

.how__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.9rem;
	grid-template-columns: 1fr;
}

@media (min-width: 700px) {
	.how__list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

.how__card {
	display: flex;
	gap: 0.9rem 1.1rem;
	margin: 0;
	padding: 1.1rem 1.2rem 1.25rem;
	font-family: var(--font-body);
	border-radius: var(--radius-md);
	background: linear-gradient(155deg, rgba(255, 255, 255, 0.04) 0%, rgba(10, 10, 10, 0.5) 100%);
	border: 1px solid var(--line);
	border-left: 2px solid rgba(45, 212, 191, 0.35);
	box-shadow: var(--shadow-in);
	transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s var(--ease-out);
	backdrop-filter: blur(6px);
}

.how__card:hover {
	border-color: var(--line-bright);
	border-left-color: rgba(251, 146, 60, 0.4);
	box-shadow: 0 12px 40px -20px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(251, 146, 60, 0.06);
	transform: translateY(-2px);
}

.how__n {
	font-family: var(--font-display);
	flex: 0 0 auto;
	width: 1.9rem;
	height: 1.9rem;
	display: grid;
	place-items: center;
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 0.02em;
	color: #042f2e;
	background: linear-gradient(145deg, var(--teal-200) 0%, #5eead4 45%, var(--cyan-300) 100%);
	border-radius: 0.4rem;
	box-shadow: 0 2px 8px -3px rgba(6, 182, 212, 0.35);
}

.how__body {
	min-width: 0;
}

.how__body h3 {
	margin: 0 0 0.35rem;
	font-size: 1.02rem;
	font-weight: 700;
	letter-spacing: -0.02em;
	line-height: 1.2;
}

.how__body p {
	margin: 0;
	color: var(--ink-muted);
	font-size: 0.92rem;
	line-height: 1.55;
}

/* —— Outcome: split, editorial feel —— */
.outcome {
	border-top: 1px solid var(--line);
	background:
		radial-gradient(ellipse 85% 60% at 0% 40%, rgba(251, 146, 60, 0.07) 0%, transparent 50%),
		radial-gradient(ellipse 70% 50% at 100% 20%, rgba(255, 255, 255, 0.04) 0%, transparent 45%),
		linear-gradient(180deg, #0a0a0a 0%, #050505 100%);
}

.outcome__shell {
	display: grid;
	gap: 2rem 3rem;
	align-items: start;
}

@media (min-width: 880px) {
	.outcome__shell {
		grid-template-columns: 1.05fr 0.95fr;
		gap: 0 2.5rem;
		align-items: stretch;
	}
}

.outcome__intro {
	max-width: 44ch;
}

@media (min-width: 880px) {
	.outcome__intro {
		padding-right: 2.25rem;
		border-right: 1px solid var(--line);
	}
}

.outcome__title {
	font-size: clamp(1.6rem, 2.5vw, 2.05rem);
	line-height: 1.2;
	letter-spacing: -0.035em;
}

.outcome__lead {
	font-family: var(--font-body);
	margin: 0;
	font-size: 1.02rem;
	line-height: 1.75;
	color: var(--ink-secondary);
}

.outcome__aside {
	padding: 1.5rem 1.4rem 1.6rem;
	border-radius: var(--radius-xl);
	border: 1px solid var(--line-bright);
	background: var(--surface-cta);
	box-shadow: var(--shadow-cta), 0 0 0 1px rgba(0, 0, 0, 0.2) inset;
	backdrop-filter: blur(20px) saturate(1.1);
	-webkit-backdrop-filter: blur(20px) saturate(1.1);
	position: relative;
	overflow: hidden;
}

.outcome__aside::before {
	content: "";
	position: absolute;
	top: 0;
	left: 4%;
	right: 4%;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
	pointer-events: none;
}

.outcome__aside>* {
	position: relative;
	z-index: 1;
}

.outcome__pull {
	font-family: var(--font-display);
	margin: 0 0 1.2rem;
	font-size: 1.12rem;
	font-weight: 600;
	letter-spacing: -0.02em;
	line-height: 1.45;
	color: var(--ink);
}

.outcome__list {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.outcome__list li {
	font-family: var(--font-body);
	display: flex;
	gap: 0.65rem;
	align-items: flex-start;
	margin: 0;
	font-size: 0.94rem;
	line-height: 1.55;
	color: var(--ink-secondary);
}

.outcome__tick {
	flex: 0 0 auto;
	margin-top: 0.12rem;
	color: var(--accent-400);
	font-size: 0.8rem;
	font-weight: 800;
	line-height: 1;
}

/* —— FAQ —— */
.faq__list {
	display: flex;
	flex-direction: column;
	gap: 0.55rem;
}

.faq details {
	background: var(--bg-elevated);
	border: 1px solid var(--line);
	border-radius: var(--radius-md);
	overflow: hidden;
	transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
}

.faq details:hover {
	border-color: var(--line-bright);
}

.faq details[open] {
	background: rgba(255, 255, 255, 0.03);
	border-color: rgba(251, 146, 60, 0.22);
	box-shadow: 0 12px 32px -24px rgba(0, 0, 0, 0.4);
}

.faq summary {
	font-family: var(--font-body);
	cursor: pointer;
	padding: 1.05rem 1.2rem 1.05rem 1.2rem;
	padding-right: 2.75rem;
	font-weight: 600;
	font-size: 0.95rem;
	letter-spacing: -0.01em;
	color: var(--ink);
	list-style: none;
	position: relative;
}

.faq summary::-webkit-details-marker {
	display: none;
}

.faq summary::after {
	content: "";
	position: absolute;
	right: 1.15rem;
	top: 50%;
	margin-top: -0.3rem;
	width: 0.5rem;
	height: 0.5rem;
	border-right: 2px solid var(--ink-faint);
	border-bottom: 2px solid var(--ink-faint);
	transform: rotate(45deg);
	transition: border-color 0.2s, transform 0.3s var(--ease-out);
}

.faq details[open] summary::after {
	margin-top: -0.1rem;
	transform: rotate(225deg);
	border-color: var(--accent-400);
}

.faq__body {
	padding: 0 1.2rem 1.15rem;
}

.faq__body p {
	margin: 0;
	color: var(--ink-muted);
	font-size: 0.93rem;
	line-height: 1.6;
}

/* —— CTA —— */
.cta {
	border-top: 1px solid var(--line);
	padding: clamp(3.5rem, 10vw, 6.5rem) 0 5.5rem;
	background: linear-gradient(180deg, #0a0a0a 0%, #050505 100%);
}

.cta__inner {
	display: flex;
	justify-content: center;
}

.cta__panel {
	width: 100%;
	max-width: 40rem;
	padding: 2.25rem 1.9rem 2.5rem;
	text-align: center;
	background: var(--surface-cta);
	border: 1px solid var(--line-bright);
	border-radius: var(--radius-xl);
	box-shadow: var(--shadow-cta), var(--shadow-in);
	backdrop-filter: blur(24px) saturate(1.1);
	-webkit-backdrop-filter: blur(24px) saturate(1.1);
	position: relative;
	overflow: hidden;
}

/* Same top hairline language as the nav CTA, at panel scale */
.cta__panel::before {
	content: "";
	position: absolute;
	top: 0;
	left: 4%;
	right: 4%;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
	pointer-events: none;
}

.cta__panel .wl {
	margin: 0 auto;
	justify-content: center;
}

.cta__panel .section-title {
	color: var(--ink);
}

/* —— Footer —— */
.site-footer {
	padding: 2.5rem 0 3.5rem;
	background: #0a0a0a;
	border-top: 1px solid var(--line);
}

.site-footer__inner {
	display: grid;
	gap: 1.75rem 2.5rem;
	align-items: center;
	grid-template-columns: 1fr;
}

@media (min-width: 720px) {
	.site-footer__inner {
		grid-template-columns: 1.15fr 1fr auto;
	}
}

.site-footer__brand {
	display: flex;
	align-items: center;
	gap: 0.7rem;
}

.site-footer__mark {
	font-family: var(--font-display);
	width: 1.6rem;
	height: 1.6rem;
	border-radius: 0.5rem;
	background: transparent;
	color: var(--btn-ink);
	font-size: 0.5rem;
	font-weight: 800;
	display: grid;
	place-items: center;
	box-shadow: none;
}

.site-footer__name {
	font-family: var(--font-display);
	margin: 0;
	font-size: 0.9rem;
	font-weight: 700;
	letter-spacing: -0.02em;
}

.site-footer__tagline {
	margin: 0.1rem 0 0;
	font-size: 0.78rem;
	color: var(--ink-faint);
}

.site-footer__legal {
	margin: 0;
	font-size: 0.8rem;
	color: var(--ink-faint);
}

.app-links {
	display: flex;
	gap: 1.25rem;
}

.app-links a {
	font-family: var(--font-body);
	font-size: 0.86rem;
	color: var(--ink-secondary);
}

.app-links a:hover {
	color: var(--ink);
}

@media (max-width: 640px) {
	.wrap {
		padding-left: max(1rem, 4vw);
		padding-right: max(1rem, 4vw);
	}

	section {
		padding: clamp(2.5rem, 7vw, 3.75rem) 0;
	}

	.site-header__inner {
		padding-top: 0.72rem;
		padding-bottom: 0.72rem;
	}

	.hero {
		padding-top: 1.5rem;
		padding-bottom: 2.75rem;
	}

	.hero__grid {
		gap: 1.75rem;
	}

	.nav {
		display: none;
	}

	.wl--hero {
		flex-direction: column;
		align-items: stretch;
	}

	/* Column flex + flex-grow on input/hint was stretching them vertically */
	.wl--hero input[type="email"] {
		flex: 0 0 auto;
		width: 100%;
		min-height: 0;
	}

	.wl--hero .wl__hint {
		flex: 0 0 auto;
		width: 100%;
	}

	.wl button {
		width: 100%;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	.card:hover,
	.how__card:hover,
	.wl button:hover,
	.wl button:active,
	.nav .nav-cta:hover,
	.nav .nav-cta:active {
		transform: none;
	}
}