/**
 * Velyra Flow — Velyra design system
 *
 * ASSIGNMENT: Accessibility — colour contrast, focus-visible, skip-link, rem units,
 * prefers-reduced-motion, distinguishable buttons/links.
 * ASSIGNMENT: Brand — Velyra colour tokens (Orbit Void, Ion Magenta, etc.).
 */

/* --------------------------------------------------------------------------
   Design tokens
   -------------------------------------------------------------------------- */
:root {
	--orbit-void: #070A12;
	--deep-space: #0D1322;
	--ion-magenta: #F25BC8;
	--aura-violet: #8B5CFF;
	--glacier-cyan: #66E7FF;
	--stellar-white: #F5F7FF;
	--mist-blue: #AAB6D3;
	--velora-gradient: linear-gradient(135deg, var(--ion-magenta), var(--aura-violet), var(--glacier-cyan));

	--bg-base: var(--orbit-void);
	--bg-elevated: var(--deep-space);
	--bg-glass: rgba(13, 19, 34, 0.62);
	--border-glass: rgba(245, 247, 255, 0.08);
	--text-primary: var(--stellar-white);
	--text-muted: var(--mist-blue);
	--text-dim: #8a97b8;
	--accent-primary: var(--ion-magenta);
	--accent-secondary: var(--glacier-cyan);
	--accent-violet: var(--aura-violet);
	--gradient-brand: var(--velora-gradient);
	--gradient-glow:
		radial-gradient(ellipse 80% 60% at 20% 10%, rgba(242, 91, 200, 0.14) 0%, transparent 55%),
		radial-gradient(ellipse 70% 50% at 80% 70%, rgba(102, 231, 255, 0.1) 0%, transparent 50%);

	--font-sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	--font-mono: ui-monospace, "Cascadia Code", "Segoe UI Mono", monospace;

	--space-xs: 0.25rem;
	--space-sm: 0.5rem;
	--space-md: 1rem;
	--space-lg: 1.5rem;
	--space-xl: 2rem;
	--space-2xl: 2.5rem;
	--space-3xl: 3.5rem;
	--space-4xl: 4.5rem;

	--radius-sm: 0.5rem;
	--radius-md: 0.75rem;
	--radius-lg: 1rem;
	--radius-xl: 1.25rem;

	--shadow-glass: 0 0.25rem 1.5rem rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(245, 247, 255, 0.04) inset;
	--shadow-glow: 0 0.5rem 2rem rgba(139, 92, 255, 0.2);
	--shadow-btn: 0 1px 2px rgba(7, 10, 18, 0.5), 0 0.5rem 1.25rem rgba(139, 92, 255, 0.18);

	--header-height: 4rem;
	--container-max: 87.5rem;
	--transition: 0.2s ease;
}

/* --------------------------------------------------------------------------
   Reset & base
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	font-size: 100%;
	scroll-behavior: smooth;
}

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

	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
}

body {
	margin: 0;
	font-family: var(--font-sans);
	font-size: 1rem;
	line-height: 1.6;
	color: var(--text-primary);
	background-color: var(--bg-base);
	background-image: var(--gradient-glow);
	background-attachment: fixed;
	min-height: 100vh;
	-webkit-font-smoothing: antialiased;
}

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

a {
	color: var(--glacier-cyan);
	text-decoration: underline;
	text-decoration-thickness: 0.125rem;
	text-underline-offset: 0.2em;
}

.site-brand,
.site-brand--wordmark,
.custom-logo-link,
.btn,
.nav-menu a,
.header-login {
	text-decoration: none;
}

a:hover {
	color: var(--ion-magenta);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
	outline: 0.1875rem solid var(--glacier-cyan);
	outline-offset: 0.1875rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	line-height: 1.2;
	margin-top: 0;
	color: var(--text-primary);
	font-weight: 700;
}

h1 {
	font-size: clamp(2rem, 4.5vw, 2.875rem);
	letter-spacing: -0.02em;
}

h2 {
	font-size: clamp(1.5rem, 3vw, 2rem);
	letter-spacing: -0.015em;
}

h3 {
	font-size: clamp(1.0625rem, 2vw, 1.25rem);
}

p {
	margin: 0 0 var(--space-md);
}

ul,
ol {
	padding-left: 1.25rem;
}

/* ASSIGNMENT: Accessibility — skip-to-content link */
.skip-link {
	position: absolute;
	top: -100%;
	left: var(--space-md);
	z-index: 10000;
	padding: var(--space-sm) var(--space-md);
	background: var(--glacier-cyan);
	color: var(--orbit-void);
	font-weight: 700;
	border-radius: var(--radius-sm);
	text-decoration: none;
}

.skip-link:focus,
.skip-link:focus-visible {
	top: var(--space-md);
}

.site-main:focus {
	outline: none;
}

.container {
	width: min(var(--container-max), calc(100% - 2.5rem));
	max-width: 100%;
	margin-inline: auto;
	box-sizing: border-box;
}

/* Landing & site frame — centered max-width, never edge-to-edge */
.velora-container {
	width: min(1200px, calc(100% - 48px));
	max-width: 100%;
	margin-inline: auto;
	padding-inline: 0;
	box-sizing: border-box;
}

@media (max-width: 48rem) {
	.velora-container {
		width: calc(100% - 32px);
		max-width: 100%;
	}
}

/* --------------------------------------------------------------------------
   Header & navigation
   -------------------------------------------------------------------------- */
.site-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	background: var(--deep-space);
	border-bottom: 1px solid var(--border-glass);
	box-shadow: 0 0.25rem 1.5rem rgba(0, 0, 0, 0.25);
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: var(--header-height);
	gap: var(--space-md);
}

.header-brand {
	display: flex;
	align-items: center;
	flex-shrink: 0;
}

.header-end {
	display: flex;
	align-items: center;
	gap: var(--space-lg);
	margin-left: auto;
}

.site-brand,
.site-brand--wordmark,
.custom-logo-link {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	color: var(--text-primary);
}

.site-brand:hover,
.site-brand--wordmark:hover,
.custom-logo-link:hover {
	color: var(--text-primary);
}

.site-brand--wordmark {
	flex-direction: row;
	align-items: baseline;
	gap: 0.4rem;
	line-height: 1;
}

.brand-wordmark {
	font-size: 1.35rem;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
}

.brand-product {
	font-size: 0.8125rem;
	font-weight: 500;
	color: var(--mist-blue);
	letter-spacing: 0.04em;
}

.custom-logo-link img,
.custom-logo {
	max-height: 2.25rem;
	width: auto;
}

.nav-toggle {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 0.35rem;
	width: 2.75rem;
	height: 2.75rem;
	padding: 0;
	border: 1px solid var(--border-glass);
	border-radius: var(--radius-sm);
	background: var(--bg-glass);
	cursor: pointer;
	flex-shrink: 0;
}

.nav-toggle-bar {
	display: block;
	width: 1.25rem;
	height: 2px;
	margin-inline: auto;
	background: var(--text-primary);
	border-radius: 1px;
	transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
	transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
	opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
	transform: translateY(-6px) rotate(-45deg);
}

.primary-nav {
	display: none;
	position: fixed;
	inset: var(--header-height) 0 0 0;
	flex-direction: column;
	padding: var(--space-xl);
	background: rgba(7, 10, 18, 0.97);
	backdrop-filter: blur(16px);
	overflow-y: auto;
	z-index: 999;
}

.primary-nav.is-open {
	display: flex;
}

.primary-nav > ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.nav-menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: var(--space-xs);
}

/* Prevent duplicate menus if both custom + fallback ever render */
.primary-nav > ul + ul {
	display: none !important;
}

.nav-menu a {
	display: block;
	padding: var(--space-sm) var(--space-md);
	color: var(--text-primary);
	font-weight: 500;
	border-radius: var(--radius-sm);
	transition: background var(--transition), color var(--transition);
}

.nav-menu a:hover,
.nav-menu .current-menu-item > a,
.nav-menu .current_page_item > a,
.nav-menu .current-menu-ancestor > a {
	background: rgba(102, 231, 255, 0.08);
	color: var(--glacier-cyan);
}

.nav-menu .sub-menu {
	display: none;
}

.header-actions {
	display: flex;
	align-items: center;
	gap: var(--space-sm);
	flex-shrink: 0;
}

.header-login {
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--mist-blue);
	padding: var(--space-xs) var(--space-sm);
	border-radius: var(--radius-sm);
	transition: color var(--transition);
}

.header-login:hover {
	color: var(--stellar-white);
}

@media (min-width: 64rem) {
	.nav-toggle {
		display: none;
	}

	.primary-nav {
		display: flex;
		position: static;
		flex-direction: row;
		align-items: center;
		padding: 0;
		background: transparent;
		backdrop-filter: none;
		overflow: visible;
		inset: auto;
	}

	.nav-menu {
		flex-direction: row;
		align-items: center;
		gap: 0.125rem;
	}

	.nav-menu a {
		font-size: 0.875rem;
		padding: var(--space-xs) var(--space-sm);
	}
}

@media (max-width: 63.99rem) {
	.header-end .header-actions .btn-sm {
		display: none;
	}

	.header-end .header-actions .header-login {
		font-size: 0.8125rem;
	}
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: var(--space-sm);
	padding: 0.6875rem 1.375rem;
	font-size: 0.9375rem;
	font-weight: 600;
	font-family: inherit;
	line-height: 1.25;
	border-radius: var(--radius-md);
	border: 1px solid transparent;
	cursor: pointer;
	text-decoration: none;
	transition:
		background var(--transition),
		border-color var(--transition),
		box-shadow var(--transition),
		color var(--transition),
		transform var(--transition);
}

.btn-sm {
	padding: 0.5rem 1rem;
	font-size: 0.8125rem;
}

.btn-primary {
	color: var(--stellar-white);
	background-color: var(--deep-space);
	background-image:
		linear-gradient(135deg, rgba(242, 91, 200, 0.28) 0%, rgba(139, 92, 255, 0.32) 48%, rgba(102, 231, 255, 0.22) 100%),
		linear-gradient(180deg, rgba(245, 247, 255, 0.06) 0%, transparent 100%);
	border-color: rgba(139, 92, 255, 0.4);
	box-shadow: var(--shadow-btn);
}

.btn-primary:hover {
	color: var(--stellar-white);
	border-color: rgba(139, 92, 255, 0.55);
	box-shadow:
		0 1px 2px rgba(7, 10, 18, 0.5),
		0 0.75rem 1.75rem rgba(139, 92, 255, 0.28);
	transform: translateY(-1px);
}

.btn-primary:focus-visible {
	outline-color: var(--glacier-cyan);
}

.btn-secondary {
	background: transparent;
	color: var(--text-primary);
	border-color: var(--border-glass);
}

.btn-secondary:hover {
	border-color: rgba(102, 231, 255, 0.35);
	color: var(--glacier-cyan);
	background: rgba(102, 231, 255, 0.06);
}

.btn-ghost {
	background: rgba(245, 247, 255, 0.04);
	color: var(--text-primary);
	border-color: var(--border-glass);
}

.btn-ghost:hover {
	background: rgba(102, 231, 255, 0.08);
	border-color: rgba(102, 231, 255, 0.2);
	color: var(--glacier-cyan);
}

/* --------------------------------------------------------------------------
   Glass cards & sections
   -------------------------------------------------------------------------- */
.glass-card {
	background: var(--bg-glass);
	border: 1px solid rgba(245, 247, 255, 0.08);
	border-radius: var(--radius-lg);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	box-shadow: var(--shadow-glass);
}

.section {
	padding-block: var(--space-2xl);
}

.section-header {
	text-align: center;
	max-width: 40rem;
	margin-inline: auto;
	margin-bottom: var(--space-xl);
}

.section-label {
	display: inline-block;
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--aura-violet);
	margin-bottom: var(--space-sm);
}

.section-desc {
	color: var(--text-muted);
	font-size: 1.0625rem;
	line-height: 1.55;
}

body.velora-landing-page .section-features {
	padding-top: 0;
}

.section-cta-link {
	text-align: center;
	margin-top: var(--space-xl);
}

/* Hero */
.section-hero,
.hero {
	padding-top: 2.5rem;
	padding-bottom: 3rem;
	position: relative;
	overflow: hidden;
}

.hero-grid {
	display: grid;
	gap: var(--space-xl);
	align-items: center;
}

@media (min-width: 56rem) {
	.hero-grid {
		grid-template-columns: 1fr 1fr;
		gap: var(--space-lg);
	}
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: var(--space-sm);
	padding: var(--space-xs) var(--space-md);
	font-size: 0.75rem;
	font-weight: 600;
	border-radius: 999px;
	background: rgba(139, 92, 255, 0.1);
	border: 1px solid rgba(139, 92, 255, 0.28);
	color: var(--mist-blue);
	margin-bottom: var(--space-lg);
}

.hero-badge-dot {
	width: 0.5rem;
	height: 0.5rem;
	border-radius: 50%;
	background: var(--velora-gradient);
	flex-shrink: 0;
}

.hero h1 {
	margin-bottom: var(--space-md);
}

.hero-lead {
	font-size: clamp(1rem, 1.8vw, 1.125rem);
	color: var(--text-muted);
	max-width: 32rem;
	margin-bottom: var(--space-xl);
	line-height: 1.65;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-md);
}

.hero-actions--center {
	justify-content: center;
}

.dashboard-mockup {
	position: relative;
	z-index: 1;
	padding: 0;
	overflow: hidden;
}

.dash-chrome {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--space-md);
	padding: var(--space-sm) var(--space-md);
	border-bottom: 1px solid var(--border-glass);
	background: rgba(7, 10, 18, 0.5);
}

.dash-chrome .mockup-toolbar {
	display: flex;
	gap: 0.35rem;
	margin-bottom: 0;
}

.mockup-dot {
	width: 0.5rem;
	height: 0.5rem;
	border-radius: 50%;
	background: var(--text-dim);
}

.mockup-dot:nth-child(1) {
	background: #ff5f57;
}

.mockup-dot:nth-child(2) {
	background: #febc2e;
}

.mockup-dot:nth-child(3) {
	background: #28c840;
}

.dash-title {
	font-size: 0.6875rem;
	font-weight: 600;
	color: var(--mist-blue);
	letter-spacing: 0.06em;
}

.dash-layout {
	display: flex;
	min-height: 14rem;
}

.dash-sidebar {
	width: 3.25rem;
	flex-shrink: 0;
	padding: var(--space-sm);
	display: flex;
	flex-direction: column;
	gap: var(--space-xs);
	border-right: 1px solid var(--border-glass);
	background: rgba(7, 10, 18, 0.35);
}

.dash-nav-item {
	height: 1.75rem;
	border-radius: var(--radius-sm);
	background: rgba(245, 247, 255, 0.04);
}

.dash-nav-item.is-active {
	background: linear-gradient(135deg, rgba(242, 91, 200, 0.2), rgba(139, 92, 255, 0.25));
	border: 1px solid rgba(139, 92, 255, 0.35);
}

.dash-main {
	flex: 1;
	padding: var(--space-sm);
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--space-xs);
	align-content: start;
}

.dash-card {
	padding: var(--space-sm);
	border-radius: var(--radius-sm);
	background: rgba(7, 10, 18, 0.45);
	border: 1px solid var(--border-glass);
}

.dash-card-label {
	display: block;
	font-size: 0.5625rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--mist-blue);
	margin-bottom: 0.25rem;
}

.dash-card-text {
	font-size: 0.625rem;
	line-height: 1.4;
	color: var(--stellar-white);
	margin: 0 0 0.35rem;
}

.dash-pill {
	display: inline-block;
	font-size: 0.5625rem;
	font-weight: 600;
	padding: 0.125rem 0.375rem;
	border-radius: 999px;
	background: rgba(139, 92, 255, 0.25);
	color: var(--glacier-cyan);
	border: 1px solid rgba(139, 92, 255, 0.35);
}

.dash-card--ai {
	grid-column: span 2;
}

.dash-flow-mini {
	display: flex;
	align-items: center;
	gap: 0.25rem;
	margin-top: 0.25rem;
}

.dash-flow-mini span {
	flex: 1;
	height: 0.375rem;
	border-radius: 2px;
	background: rgba(102, 231, 255, 0.25);
}

.dash-flow-mini span:nth-child(2) {
	background: rgba(139, 92, 255, 0.35);
}

.dash-list {
	list-style: none;
	margin: 0;
	padding: 0;
	font-size: 0.5625rem;
	color: var(--mist-blue);
	line-height: 1.5;
}

.dash-list li {
	padding: 0.1rem 0;
}

.dash-score {
	font-size: 1.125rem;
	font-weight: 800;
	color: var(--stellar-white);
	margin: 0;
	line-height: 1;
}

.dash-score span {
	font-size: 0.625rem;
	font-weight: 500;
	color: var(--mist-blue);
}

.dash-score-bar {
	height: 0.25rem;
	border-radius: 999px;
	background: rgba(245, 247, 255, 0.08);
	margin-top: 0.35rem;
	overflow: hidden;
}

.dash-score-bar span {
	display: block;
	height: 100%;
	border-radius: inherit;
	background: var(--velora-gradient);
}

/* Feature grid */
.feature-grid {
	display: grid;
	gap: var(--space-md);
	grid-template-columns: 1fr;
}

@media (min-width: 40rem) {
	.feature-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 64rem) {
	.feature-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.feature-card {
	padding: var(--space-lg);
	transition:
		border-color var(--transition),
		box-shadow var(--transition),
		transform var(--transition);
}

.feature-card:hover {
	border-color: rgba(139, 92, 255, 0.22);
	box-shadow:
		var(--shadow-glass),
		0 0.5rem 2rem rgba(139, 92, 255, 0.08);
	transform: translateY(-2px);
}

.feature-icon {
	width: 2.25rem;
	height: 2.25rem;
	margin-bottom: var(--space-md);
	color: var(--glacier-cyan);
}

.feature-card h3 {
	margin-bottom: var(--space-sm);
	font-size: 1.0625rem;
}

.feature-card p {
	color: var(--text-muted);
	margin-bottom: 0;
	font-size: 0.9375rem;
	line-height: 1.55;
}

/* Steps */
.steps {
	display: grid;
	gap: var(--space-md);
}

@media (min-width: 48rem) {
	.steps {
		grid-template-columns: repeat(3, 1fr);
	}
}

.step-card {
	padding: var(--space-lg);
}

.step-number {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.75rem;
	height: 1.75rem;
	border-radius: 50%;
	background: rgba(139, 92, 255, 0.2);
	border: 1px solid rgba(139, 92, 255, 0.4);
	color: var(--stellar-white);
	font-weight: 700;
	font-size: 0.8125rem;
	margin-bottom: var(--space-md);
}

.step-card p {
	color: var(--text-muted);
	font-size: 0.9375rem;
	margin-bottom: 0;
}

/* Pricing */
.pricing-grid {
	display: grid;
	gap: var(--space-md);
	grid-template-columns: 1fr;
}

@media (min-width: 40rem) {
	.pricing-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 72rem) {
	.pricing-grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

.pricing-card {
	padding: var(--space-lg);
	display: flex;
	flex-direction: column;
}

.pricing-card.featured,
.pricing-card.is-recommended {
	border-color: rgba(139, 92, 255, 0.35);
	box-shadow: var(--shadow-glow);
}

.pricing-tier {
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--glacier-cyan);
}

.pricing-price {
	font-size: 1.875rem;
	font-weight: 800;
	margin: var(--space-sm) 0;
	letter-spacing: -0.02em;
}

.pricing-price span {
	font-size: 0.9375rem;
	font-weight: 400;
	color: var(--text-muted);
}

.pricing-features {
	list-style: none;
	padding: 0;
	margin: var(--space-lg) 0;
	flex-grow: 1;
}

.pricing-features li {
	padding: var(--space-xs) 0;
	padding-left: 1.5rem;
	position: relative;
	color: var(--text-muted);
	font-size: 0.875rem;
	line-height: 1.5;
}

.pricing-features li::before {
	content: "✓";
	position: absolute;
	left: 0;
	color: var(--glacier-cyan);
	font-weight: 700;
}

/* Trust section */
.trust-grid {
	display: grid;
	gap: var(--space-md);
}

@media (min-width: 48rem) {
	.trust-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

.trust-item {
	padding: var(--space-lg);
}

.trust-item h3 {
	font-size: 1.0625rem;
	margin-bottom: var(--space-sm);
}

.trust-item p {
	color: var(--text-muted);
	font-size: 0.9375rem;
	margin-bottom: 0;
	line-height: 1.55;
}

/* CTA band */
.cta-band {
	text-align: center;
	padding: var(--space-2xl) var(--space-xl);
}

.cta-band h2 {
	margin-bottom: var(--space-md);
}

.cta-band p {
	color: var(--text-muted);
	max-width: 32rem;
	margin-inline: auto;
	margin-bottom: var(--space-xl);
}

/* Page templates */
.page-hero {
	padding-block: var(--space-xl) var(--space-lg);
	border-bottom: 1px solid var(--border-glass);
	margin-bottom: var(--space-xl);
}

.page-hero h1 {
	margin-bottom: var(--space-sm);
}

.page-hero .lead {
	color: var(--text-muted);
	font-size: 1.0625rem;
	max-width: 40rem;
	line-height: 1.6;
}

.content-area {
	padding-bottom: var(--space-2xl);
}

.prose {
	max-width: 48rem;
}

.prose h2 {
	margin-top: var(--space-xl);
	margin-bottom: var(--space-md);
}

.prose h3 {
	margin-top: var(--space-lg);
	margin-bottom: var(--space-sm);
}

.prose ul,
.prose ol {
	margin-bottom: var(--space-md);
	color: var(--text-muted);
}

.prose li {
	margin-bottom: var(--space-xs);
}

.prose strong {
	color: var(--text-primary);
}

.prose a {
	color: var(--glacier-cyan);
	text-decoration: underline;
}

.prose a:hover {
	color: var(--ion-magenta);
}

.prose a:focus-visible {
	outline-color: var(--glacier-cyan);
}

.prose dl {
	margin: 0 0 var(--space-lg);
}

.prose dt {
	font-weight: 700;
	color: var(--text-primary);
	margin-top: var(--space-md);
}

.prose dd {
	margin: var(--space-xs) 0 0;
	color: var(--text-muted);
}

/* Tables */
.data-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.875rem;
	margin-block: var(--space-lg);
}

.data-table caption {
	text-align: left;
	font-weight: 700;
	margin-bottom: var(--space-md);
}

.data-table th,
.data-table td {
	padding: var(--space-sm) var(--space-md);
	border: 1px solid var(--border-glass);
	text-align: left;
	vertical-align: top;
}

.data-table th {
	background: rgba(102, 231, 255, 0.06);
	color: var(--text-primary);
}

.data-table tbody tr:nth-child(even) {
	background: rgba(245, 247, 255, 0.02);
}

/* Contact form */
.contact-form {
	max-width: 32rem;
	padding: var(--space-xl);
}

.form-group {
	margin-bottom: var(--space-lg);
}

.form-group label {
	display: block;
	font-weight: 600;
	margin-bottom: var(--space-xs);
}

.form-group .hint {
	font-size: 0.875rem;
	color: var(--text-dim);
	font-weight: 400;
}

.form-group input,
.form-group textarea,
.form-group select {
	width: 100%;
	padding: 0.75rem 1rem;
	font-family: inherit;
	font-size: 1rem;
	color: var(--text-primary);
	background: rgba(7, 10, 18, 0.65);
	border: 1px solid var(--border-glass);
	border-radius: var(--radius-sm);
}

.form-group input[aria-invalid="true"],
.form-group textarea[aria-invalid="true"] {
	border-color: var(--ion-magenta);
	box-shadow: 0 0 0 1px var(--ion-magenta);
}

.form-group textarea {
	min-height: 8rem;
	resize: vertical;
}

.form-status {
	padding: var(--space-md);
	border-radius: var(--radius-sm);
	margin-top: var(--space-md);
	display: none;
}

.form-status.is-visible {
	display: block;
}

.form-status.success {
	background: rgba(102, 231, 255, 0.1);
	border: 1px solid rgba(102, 231, 255, 0.35);
	color: var(--stellar-white);
}

.form-status.error {
	background: rgba(242, 91, 200, 0.1);
	border: 1px solid rgba(242, 91, 200, 0.4);
	color: var(--stellar-white);
}

/* Brand marks */
.brand-marks {
	display: grid;
	gap: var(--space-md);
}

@media (min-width: 48rem) {
	.brand-marks {
		grid-template-columns: repeat(3, 1fr);
	}
}

.brand-mark-card {
	padding: var(--space-lg);
	text-align: center;
}

.brand-mark-card p {
	color: var(--text-muted);
	font-size: 0.9375rem;
}

.brand-preview {
	height: 6rem;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: var(--space-md);
	border-radius: var(--radius-md);
	background: var(--orbit-void);
	border: 1px solid var(--border-glass);
	overflow: hidden;
}

.wordmark-preview {
	font-size: 2rem;
	font-weight: 900;
	letter-spacing: 0.2em;
	background: var(--velora-gradient);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.brand-symbol-preview {
	font-size: 3rem;
	font-weight: 800;
	line-height: 1;
	background: var(--velora-gradient);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.colormark-preview {
	width: 100%;
	height: 100%;
	border: none;
	background: var(--orbit-void);
	background-image:
		radial-gradient(ellipse 90% 70% at 25% 20%, rgba(242, 91, 200, 0.35) 0%, transparent 55%),
		radial-gradient(ellipse 80% 60% at 75% 75%, rgba(102, 231, 255, 0.28) 0%, transparent 50%),
		radial-gradient(ellipse 60% 50% at 50% 50%, rgba(139, 92, 255, 0.2) 0%, transparent 60%);
	box-shadow: inset 0 0 3rem rgba(139, 92, 255, 0.15);
}

/* Integrations */
.integration-list {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-md);
}

.integration-badge {
	padding: var(--space-sm) var(--space-md);
	border-radius: var(--radius-sm);
	background: rgba(245, 247, 255, 0.04);
	border: 1px solid var(--border-glass);
	font-size: 0.875rem;
	color: var(--text-muted);
}

/* Modal */
body.nav-open {
	overflow: hidden;
}

body.modal-open {
	overflow: hidden;
}

.modal[hidden] {
	display: none;
}

.modal:not([hidden]) {
	display: flex;
	align-items: center;
	justify-content: center;
	position: fixed;
	inset: 0;
	z-index: 2000;
}

.modal-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(7, 10, 18, 0.82);
}

.modal-panel {
	position: relative;
	max-width: 28rem;
	margin: var(--space-md);
	padding: var(--space-xl);
	z-index: 1;
}

.modal-panel h2 {
	margin-bottom: var(--space-sm);
}

.modal-panel p {
	color: var(--text-muted);
	margin-bottom: var(--space-lg);
}

/* Footer */
.site-footer {
	margin-top: var(--space-2xl);
	padding-block: var(--space-2xl) var(--space-xl);
	border-top: 1px solid var(--border-glass);
	background: var(--deep-space);
}

.footer-grid {
	display: grid;
	gap: var(--space-xl);
}

@media (min-width: 48rem) {
	.footer-grid {
		grid-template-columns: 2fr 1fr 1fr;
	}
}

.footer-desc {
	color: var(--text-muted);
	font-size: 0.9375rem;
	max-width: 24rem;
	line-height: 1.6;
	margin-top: var(--space-md);
}

.footer-heading {
	font-size: 0.8125rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	margin-bottom: var(--space-md);
	color: var(--text-primary);
}

.footer-links,
.footer-legal {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-links li,
.footer-legal li {
	margin-bottom: var(--space-xs);
}

.footer-links a,
.footer-legal a {
	color: var(--text-muted);
	text-decoration: none;
}

.footer-links a:hover,
.footer-legal a:hover {
	color: var(--glacier-cyan);
}

.footer-bottom {
	margin-top: var(--space-xl);
	padding-top: var(--space-lg);
	border-top: 1px solid var(--border-glass);
}

.copyright,
.footer-meta {
	font-size: 0.8125rem;
	color: var(--text-dim);
	margin-bottom: var(--space-xs);
}

/* Utility */
.text-gradient {
	background: var(--velora-gradient);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

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

.badge {
	display: inline-block;
	padding: 0.125rem 0.5rem;
	font-size: 0.75rem;
	font-weight: 600;
	border-radius: var(--radius-sm);
	background: rgba(102, 231, 255, 0.12);
	color: var(--glacier-cyan);
}

.checkout-section {
	margin-top: var(--space-2xl);
	padding: var(--space-xl);
}

/* ==========================================================================
   Landing page — full-screen sections, scroll snap, premium layout
   ========================================================================== */

html.velora-landing-page {
	scroll-snap-type: none;
}

body.velora-landing-page {
	overflow-x: hidden;
}

body.velora-landing-page .site-main {
	background: transparent;
}

.landing-section {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: auto;
	padding-block: clamp(6.25rem, 12vh, 10rem);
	scroll-margin-top: var(--header-height);
	overflow: hidden;
}

body.velora-landing-page .landing-section .section-header {
	margin-bottom: 3.75rem;
}

.landing-section__inner {
	position: relative;
	z-index: 1;
	box-sizing: border-box;
}

.landing-section__glow {
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 0;
}

.landing-section__glow--hero {
	background:
		radial-gradient(ellipse 90% 70% at 15% 20%, rgba(242, 91, 200, 0.18) 0%, transparent 55%),
		radial-gradient(ellipse 80% 60% at 85% 75%, rgba(139, 92, 255, 0.16) 0%, transparent 50%);
}

.landing-section__glow--product {
	background:
		radial-gradient(ellipse 85% 65% at 70% 30%, rgba(102, 231, 255, 0.14) 0%, transparent 55%),
		radial-gradient(ellipse 70% 50% at 20% 80%, rgba(13, 19, 34, 0.9) 0%, transparent 60%);
}

.landing-section__glow--features {
	background: radial-gradient(ellipse 100% 80% at 50% 50%, rgba(13, 19, 34, 0.5) 0%, transparent 70%);
}

.landing-section__glow--pricing {
	background:
		radial-gradient(ellipse 70% 55% at 20% 40%, rgba(242, 91, 200, 0.12) 0%, transparent 55%),
		radial-gradient(ellipse 75% 60% at 80% 60%, rgba(102, 231, 255, 0.12) 0%, transparent 55%);
}

.landing-section__glow--trust {
	background: radial-gradient(ellipse 90% 70% at 50% 0%, rgba(139, 92, 255, 0.08) 0%, transparent 60%);
}

.landing-section__glow--contact {
	background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(13, 19, 34, 0.85) 0%, transparent 65%);
}

.landing-section__divider {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: min(1200px, calc(100% - 48px));
	height: 1px;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(139, 92, 255, 0.25),
		transparent
	);
	z-index: 2;
	pointer-events: none;
}

.landing-section--hero {
	padding-block: clamp(4rem, 8vh, 6rem);
	padding-inline: 0;
	min-height: calc(100vh - var(--header-height));
	min-height: calc(100dvh - var(--header-height));
	background: linear-gradient(180deg, rgba(242, 91, 200, 0.05) 0%, var(--orbit-void) 42%);
}

.landing-section--product {
	background: linear-gradient(180deg, var(--orbit-void) 0%, var(--deep-space) 50%, var(--orbit-void) 100%);
}

.landing-section--features {
	background: var(--orbit-void);
}

.landing-section--how {
	background: linear-gradient(180deg, var(--deep-space) 0%, var(--orbit-void) 100%);
}

.landing-section--pricing {
	background:
		linear-gradient(180deg, var(--orbit-void) 0%, rgba(13, 19, 34, 0.95) 40%, var(--orbit-void) 100%);
}

.landing-section--trust {
	background: var(--deep-space);
}

.landing-section--contact {
	background: var(--orbit-void);
}

.landing-title,
.landing-heading {
	font-size: clamp(2rem, 4.5vw, 3.25rem);
	line-height: 1.12;
	letter-spacing: -0.03em;
	font-weight: 800;
}

.landing-heading {
	font-size: clamp(1.75rem, 3.5vw, 2.5rem);
}

.section-header--left {
	text-align: left;
	margin-inline: 0;
	max-width: 36rem;
}

/* Hero — shared container & balanced grid */
.landing-section__inner--hero {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	flex: 1;
	min-height: 0;
}

.landing-section--hero .hero-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: clamp(2rem, 5vw, 3rem);
	align-items: center;
	width: 100%;
	max-width: 100%;
	min-height: 0;
}

@media (min-width: 61.25rem) {
	.landing-section--hero .hero-grid {
		grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
		gap: clamp(2.5rem, 5vw, 5rem);
	}
}

.landing-section--hero .hero-content {
	min-width: 0;
}

.landing-section--hero .hero-preview {
	min-width: 0;
	max-width: 100%;
	overflow: hidden;
}

.hero-headline {
	font-size: clamp(2.25rem, 4.5vw, 3.5rem);
	line-height: 0.95;
	letter-spacing: -0.05em;
	font-weight: 800;
	max-width: 42.5rem;
	margin: 0 0 var(--space-md);
}

.hero-headline__accent {
	display: block;
	margin-top: 0.15em;
}

.landing-section--hero .hero-lead {
	font-size: clamp(1rem, 1.6vw, 1.125rem);
	max-width: 35rem;
	line-height: 1.6;
	margin-bottom: var(--space-lg);
}

.landing-section--hero .hero-actions {
	gap: var(--space-sm);
}

.landing-section--hero .btn {
	padding: 0.625rem 1.25rem;
	font-size: 0.875rem;
}

.btn-hero-primary {
	color: var(--orbit-void);
	background: var(--velora-gradient);
	border-color: transparent;
	box-shadow:
		0 0.25rem 1rem rgba(139, 92, 255, 0.35),
		0 0 1.5rem rgba(242, 91, 200, 0.15);
}

.btn-hero-primary:hover {
	color: var(--orbit-void);
	filter: brightness(1.06);
	box-shadow:
		0 0.35rem 1.25rem rgba(139, 92, 255, 0.45),
		0 0 2rem rgba(102, 231, 255, 0.2);
}

.btn-hero-secondary {
	background: rgba(255, 255, 255, 0.04);
	border-color: rgba(255, 255, 255, 0.12);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
}

.btn-hero-secondary:hover {
	background: rgba(255, 255, 255, 0.07);
	border-color: rgba(102, 231, 255, 0.28);
}

/* Dashboard — soft glass frame */
.hero-dashboard-wrap {
	position: relative;
	max-width: 100%;
	margin: 0;
}

.hero-dashboard-glow {
	position: absolute;
	inset: 5% 0;
	background:
		radial-gradient(ellipse 65% 50% at 50% 50%, rgba(139, 92, 255, 0.22) 0%, transparent 65%),
		radial-gradient(ellipse 50% 40% at 30% 60%, rgba(242, 91, 200, 0.14) 0%, transparent 60%),
		radial-gradient(ellipse 45% 35% at 70% 40%, rgba(102, 231, 255, 0.12) 0%, transparent 58%);
	filter: blur(2.5rem);
	pointer-events: none;
	z-index: 0;
}

.dashboard-frame {
	position: relative;
	z-index: 1;
	padding: 0;
	border-radius: 1.75rem;
	background: transparent;
	border: none;
	backdrop-filter: none;
	-webkit-backdrop-filter: none;
	box-shadow: none;
	overflow: hidden;
}

.dashboard-frame::before {
	content: "";
	position: absolute;
	inset: -15%;
	z-index: -1;
	border-radius: 50%;
	background: radial-gradient(
		circle at center,
		rgba(139, 92, 255, 0.22),
		transparent 68%
	);
	filter: blur(4rem);
	opacity: 0.75;
	pointer-events: none;
}

.hero-dashboard-figure {
	margin: 0;
	overflow: hidden;
	border-radius: 1.75rem;
	background: none;
	border: none;
	box-shadow: none;
	-webkit-mask-image: radial-gradient(ellipse 96% 96% at 50% 50%, #000 72%, transparent 100%);
	mask-image: radial-gradient(ellipse 96% 96% at 50% 50%, #000 72%, transparent 100%);
}

.hero-dashboard-image {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 1.75rem;
	border: none;
	outline: none;
}

.hero-scroll-hint {
	position: absolute;
	bottom: 0.75rem;
	left: 50%;
	transform: translateX(-50%);
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	gap: var(--space-xs);
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--mist-blue);
	text-decoration: none;
	z-index: 2;
	transition: color var(--transition), transform var(--transition);
}

.hero-scroll-hint:hover {
	color: var(--glacier-cyan);
	transform: translateX(-50%) translateY(2px);
}

.hero-scroll-hint:focus-visible {
	outline: 2px solid var(--glacier-cyan);
	outline-offset: 4px;
	border-radius: var(--radius-sm);
}

.hero-scroll-hint__icon {
	opacity: 0.85;
	animation: hero-scroll-bounce 2s ease-in-out infinite;
}

@keyframes hero-scroll-bounce {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(4px); }
}

@media (prefers-reduced-motion: reduce) {
	.hero-scroll-hint__icon {
		animation: none;
	}
}

/* Product preview */
.product-preview-stage {
	width: 100%;
	max-width: 100%;
	margin-inline: auto;
}

/* Landing content — stay inside .velora-container */
body.velora-landing-page .velora-container .feature-mosaic,
body.velora-landing-page .velora-container .pricing-grid--landing,
body.velora-landing-page .velora-container .steps--landing,
body.velora-landing-page .velora-container .trust-grid--landing,
body.velora-landing-page .velora-container .contact-landing-grid,
body.velora-landing-page .velora-container .hero-grid {
	width: 100%;
	max-width: 100%;
	margin-inline: auto;
}

/* Feature mosaic */
.feature-mosaic {
	display: grid;
	gap: 1.5rem;
	grid-template-columns: 1fr;
	width: 100%;
	max-width: 100%;
}

@media (min-width: 48rem) {
	.feature-mosaic {
		grid-template-columns: repeat(4, 1fr);
		grid-auto-rows: minmax(7.5rem, auto);
	}
}

.feature-mosaic .feature-card {
	padding: var(--space-lg);
	transition:
		border-color var(--transition),
		box-shadow var(--transition),
		transform var(--transition);
}

.feature-mosaic .feature-card:hover {
	border-color: rgba(139, 92, 255, 0.25);
	transform: translateY(-3px);
	box-shadow: var(--shadow-glass), 0 0.75rem 2rem rgba(0, 0, 0, 0.35);
}

.feature-card--large {
	position: relative;
}

@media (min-width: 48rem) {
	.feature-card--large {
		grid-column: 1 / 3;
		grid-row: 1 / 3;
		padding: var(--space-xl);
	}

	.feature-card--medium:nth-of-type(2) {
		grid-column: 3 / 5;
		grid-row: 1 / 2;
	}

	.feature-card--medium:nth-of-type(3) {
		grid-column: 3 / 5;
		grid-row: 2 / 3;
	}

	.feature-card--small {
		grid-column: span 1;
		grid-row: 3;
	}
}

.feature-card--large h3 {
	font-size: 1.375rem;
}

.feature-card--large p {
	font-size: 1rem;
	max-width: 28rem;
}

.feature-card__decor {
	position: absolute;
	inset: 0;
	pointer-events: none;
	overflow: hidden;
	border-radius: inherit;
}

.feature-card__decor--nodes::before,
.feature-card__decor--nodes::after {
	content: "";
	position: absolute;
	border-radius: 50%;
	border: 1px solid rgba(102, 231, 255, 0.25);
}

.feature-card__decor--nodes::before {
	width: 8rem;
	height: 8rem;
	right: -2rem;
	top: -1rem;
	background: radial-gradient(circle, rgba(139, 92, 255, 0.2) 0%, transparent 70%);
}

.feature-card__decor--nodes::after {
	width: 5rem;
	height: 5rem;
	right: 3rem;
	bottom: 1rem;
	border-color: rgba(242, 91, 200, 0.3);
	background: radial-gradient(circle, rgba(242, 91, 200, 0.15) 0%, transparent 70%);
}

.feature-mosaic .feature-icon {
	width: 2.5rem;
	height: 2.5rem;
	position: relative;
	z-index: 1;
}

.feature-card--small h3 {
	font-size: 0.9375rem;
}

.feature-card--small p {
	font-size: 0.8125rem;
	margin-bottom: 0;
}

/* Steps landing */
.steps--landing {
	gap: 1.5rem;
}

.steps--landing .step-card {
	padding: var(--space-xl);
}

.steps--landing h3 {
	font-size: 1.125rem;
}

/* Pricing landing */
.pricing-grid--landing {
	gap: 1.5rem;
	width: 100%;
	max-width: 100%;
	margin-inline: auto;
}

@media (min-width: 40rem) {
	.pricing-grid--landing {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 64rem) {
	.pricing-grid--landing {
		grid-template-columns: repeat(4, 1fr);
		align-items: stretch;
	}
}

.pricing-grid--landing .pricing-card {
	padding: var(--space-xl) var(--space-lg);
	min-height: 22rem;
	min-width: 0;
}

.pricing-grid--landing .pricing-price {
	font-size: clamp(2rem, 3vw, 2.5rem);
}

.pricing-grid--landing .pricing-features li {
	font-size: 0.9375rem;
}

.pricing-badge {
	display: inline-block;
	margin: 0 0 var(--space-sm);
	padding: 0.25rem 0.65rem;
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--orbit-void);
	background: var(--velora-gradient);
	border-radius: 999px;
}

.pricing-card.is-recommended {
	position: relative;
	background:
		linear-gradient(165deg, rgba(139, 92, 255, 0.18) 0%, rgba(13, 19, 34, 0.85) 45%, rgba(7, 10, 18, 0.95) 100%);
	border-color: rgba(139, 92, 255, 0.55);
	box-shadow:
		0 0 0 1px rgba(242, 91, 200, 0.15) inset,
		0 1rem 3rem rgba(139, 92, 255, 0.25);
	z-index: 1;
}

@media (min-width: 64rem) {
	.pricing-card.is-recommended {
		transform: translateY(-0.25rem) scale(1.02);
	}
}

@media (prefers-reduced-motion: reduce) {
	.pricing-card.is-recommended {
		transform: none;
	}
}

.pricing-card.is-enterprise {
	border-color: rgba(102, 231, 255, 0.22);
	background: linear-gradient(180deg, rgba(102, 231, 255, 0.06) 0%, rgba(13, 19, 34, 0.7) 100%);
}

.pricing-card.is-recommended .btn-primary {
	box-shadow: 0 0.5rem 1.5rem rgba(242, 91, 200, 0.35);
}

/* Trust landing */
.trust-grid--landing {
	gap: 1.5rem;
}

@media (min-width: 56rem) {
	.trust-grid--landing {
		grid-template-columns: repeat(2, 1fr);
	}
}

.trust-grid--landing .trust-item {
	padding: var(--space-xl);
}

/* Contact landing */
.contact-landing-grid {
	display: grid;
	gap: 1.5rem;
	align-items: start;
	width: 100%;
}

@media (min-width: 56rem) {
	.contact-landing-grid {
		grid-template-columns: 1fr 1fr;
		gap: clamp(2rem, 4vw, 3rem);
	}
}

.home-contact-form {
	max-width: none;
	padding: var(--space-xl);
}

.form-row--split {
	display: grid;
	gap: var(--space-md);
}

@media (min-width: 40rem) {
	.form-row--split {
		grid-template-columns: 1fr 1fr;
	}
}

.form-group--checkbox {
	display: flex;
	align-items: flex-start;
	gap: var(--space-sm);
}

.form-group--checkbox input {
	width: auto;
	margin-top: 0.25rem;
	flex-shrink: 0;
}

.form-group--checkbox label {
	margin-bottom: 0;
	font-weight: 400;
	font-size: 0.9375rem;
	color: var(--text-muted);
}

.form-group--checkbox label a {
	color: var(--glacier-cyan);
}

.required {
	color: var(--ion-magenta);
}

.form-demo-note {
	font-size: 0.875rem;
	color: var(--text-dim);
	margin-bottom: var(--space-lg);
	line-height: 1.5;
}

@media (max-width: 61.24rem) {
	.landing-section--hero .hero-grid {
		text-align: center;
	}

	.landing-section--hero .hero-content {
		margin-inline: auto;
	}

	.landing-section--hero .hero-headline,
	.landing-section--hero .hero-lead {
		margin-inline: auto;
	}

	.landing-section--hero .hero-badge {
		margin-inline: auto;
	}

	.landing-section--hero .hero-actions {
		justify-content: center;
	}

	.landing-section--hero .hero-preview {
		width: 100%;
		max-width: 36rem;
		margin-inline: auto;
	}

	.hero-headline {
		font-size: clamp(1.875rem, 7vw, 2.5rem);
	}
}

@media (max-width: 47.99rem) {
	.landing-section--hero {
		min-height: auto;
		padding-bottom: 4rem;
	}

	body.velora-landing-page .landing-section .section-header {
		margin-bottom: 2.5rem;
	}

	.hero-scroll-hint {
		bottom: 0.5rem;
		font-size: 0.6875rem;
	}
}

/* ==========================================================================
   Designed page templates (.velora-page)
   ========================================================================== */

body.velora-page .site-main {
	background: var(--orbit-void);
}

.page-hero-block {
	position: relative;
	overflow: hidden;
	padding-block: clamp(5rem, 12vh, 7rem) clamp(3rem, 6vh, 4rem);
}

.page-section {
	position: relative;
	padding-block: clamp(4rem, 8vh, 6rem);
}

.page-section--alt {
	background: linear-gradient(180deg, rgba(13, 19, 34, 0.45) 0%, transparent 100%);
}

.page-section--cta {
	padding-block: clamp(3rem, 6vh, 5rem);
}

.page-section__glow {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background:
		radial-gradient(ellipse 70% 50% at 20% 20%, rgba(242, 91, 200, 0.1) 0%, transparent 55%),
		radial-gradient(ellipse 60% 45% at 80% 70%, rgba(102, 231, 255, 0.08) 0%, transparent 50%);
}

.page-hero-block--product .page-section__glow {
	background: radial-gradient(ellipse 80% 60% at 70% 30%, rgba(139, 92, 255, 0.12) 0%, transparent 60%);
}

.page-hero-block--features .page-section__glow {
	background: radial-gradient(ellipse 75% 55% at 30% 40%, rgba(102, 231, 255, 0.1) 0%, transparent 58%);
}

.page-hero-block--pricing .page-section__glow {
	background: radial-gradient(ellipse 70% 50% at 50% 30%, rgba(242, 91, 200, 0.1) 0%, transparent 55%);
}

.page-hero {
	max-width: 40rem;
}

.page-hero__title {
	font-size: clamp(2rem, 4vw, 3rem);
	line-height: 1.08;
	letter-spacing: -0.03em;
	font-weight: 800;
	margin: 0 0 var(--space-md);
}

.page-hero__lead {
	font-size: 1.0625rem;
	line-height: 1.6;
	color: var(--text-muted);
	max-width: 36rem;
	margin: 0;
}

.page-section-head {
	text-align: center;
	max-width: 40rem;
	margin: 0 auto var(--space-xl);
}

.page-section-head--left {
	text-align: left;
	margin-inline: 0;
}

.page-section-head__title {
	font-size: clamp(1.5rem, 3vw, 2rem);
	font-weight: 800;
	letter-spacing: -0.02em;
	margin: 0 0 var(--space-sm);
}

.page-section-head__desc {
	color: var(--text-muted);
	margin: 0;
	line-height: 1.6;
}

.page-card-grid {
	display: grid;
	gap: 1.5rem;
	grid-template-columns: 1fr;
}

@media (min-width: 40rem) {
	.page-card-grid--2 {
		grid-template-columns: repeat(2, 1fr);
	}

	.page-card-grid--4 {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 64rem) {
	.page-card-grid--4 {
		grid-template-columns: repeat(4, 1fr);
	}
}

.page-card {
	padding: var(--space-lg);
}

.page-card h3 {
	font-size: 1.0625rem;
	margin-bottom: var(--space-sm);
}

.page-card p {
	color: var(--text-muted);
	font-size: 0.9375rem;
	margin: 0;
	line-height: 1.55;
}

.page-dashboard-stage {
	max-width: 100%;
	margin-inline: auto;
}

.page-split {
	display: grid;
	gap: var(--space-xl);
	align-items: start;
}

@media (min-width: 56rem) {
	.page-split {
		grid-template-columns: 1fr 1fr;
		align-items: center;
	}

	.page-split--ai {
		grid-template-columns: 1.1fr 0.9fr;
	}
}

.page-checklist {
	list-style: none;
	padding: var(--space-xl);
	margin: 0;
}

.page-checklist li {
	position: relative;
	padding-left: 1.5rem;
	margin-bottom: var(--space-md);
	color: var(--text-muted);
	line-height: 1.55;
}

.page-checklist li::before {
	content: "✓";
	position: absolute;
	left: 0;
	color: var(--glacier-cyan);
	font-weight: 700;
}

.page-checklist li:last-child {
	margin-bottom: 0;
}

.page-story {
	padding: var(--space-xl);
}

.page-story p {
	color: var(--text-muted);
	line-height: 1.65;
}

.page-legal-grid {
	display: grid;
	gap: 1.5rem;
}

.page-legal-card {
	padding: var(--space-xl);
}

.page-legal-card h2 {
	font-size: 1.25rem;
	margin-bottom: var(--space-md);
}

.page-legal-card__body p,
.page-legal-card__body li {
	color: var(--text-muted);
	line-height: 1.65;
}

.page-faq {
	display: grid;
	gap: 1.5rem;
}

@media (min-width: 48rem) {
	.page-faq {
		grid-template-columns: repeat(2, 1fr);
	}
}

.page-faq__item {
	padding: var(--space-lg);
}

.page-faq__item h3 {
	font-size: 1rem;
	margin-bottom: var(--space-sm);
}

.page-faq__item p {
	margin: 0;
	color: var(--text-muted);
	font-size: 0.9375rem;
	line-height: 1.55;
}

.page-demo-notice {
	padding: var(--space-md) var(--space-lg);
	color: var(--mist-blue);
	font-size: 0.875rem;
	line-height: 1.55;
	margin: var(--space-lg) 0 0;
}

.page-cta-band {
	text-align: center;
	padding: var(--space-2xl) var(--space-xl);
}

.page-cta-band__title {
	font-size: clamp(1.5rem, 3vw, 2rem);
	margin-bottom: var(--space-md);
}

.page-cta-band__text {
	color: var(--text-muted);
	max-width: 32rem;
	margin: 0 auto var(--space-lg);
}

.page-integrations {
	padding: var(--space-xl);
	display: grid;
	gap: var(--space-lg);
}

@media (min-width: 48rem) {
	.page-integrations {
		grid-template-columns: 1fr auto;
		align-items: center;
	}
}

.page-ai-visual {
	padding: var(--space-xl);
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-sm);
	justify-content: center;
	min-height: 12rem;
}

.page-ai-visual__node {
	padding: var(--space-sm) var(--space-md);
	border-radius: var(--radius-md);
	background: rgba(245, 247, 255, 0.04);
	border: 1px solid var(--border-glass);
	font-size: 0.8125rem;
	font-weight: 600;
	color: var(--mist-blue);
}

.page-ai-visual__node--accent {
	background: linear-gradient(135deg, rgba(242, 91, 200, 0.2), rgba(139, 92, 255, 0.25));
	border-color: rgba(139, 92, 255, 0.35);
	color: var(--stellar-white);
}

.page-bullet-list {
	margin: var(--space-lg) 0 0;
	padding-left: 1.25rem;
	color: var(--text-muted);
	line-height: 1.65;
}

.page-bullet-list li {
	margin-bottom: var(--space-sm);
}

.page-contact-cards {
	display: grid;
	gap: 1.5rem;
}

.page-contact-form-wrap .contact-form {
	max-width: none;
}

.page-table-wrap {
	padding: var(--space-md);
	overflow-x: auto;
}

.page-editor-content {
	padding: var(--space-xl);
}

body.velora-page .velora-container .prose h2 {
	margin-top: var(--space-xl);
}

body.velora-page .velora-container .brand-marks {
	margin-top: var(--space-lg);
}

/* ==========================================================================
   Velyra Flow product page (.velora-product-page)
   ========================================================================== */

body.velora-product-page {
	overflow-x: hidden;
}

body.velora-product-page .site-main {
	background: var(--orbit-void);
}

.velora-product-page {
	overflow-x: hidden;
}

.product-section {
	position: relative;
	padding-block: clamp(4rem, 8vh, 6rem);
	overflow: hidden;
}

.product-section__glow {
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 0;
}

.product-section__glow--hero {
	background:
		radial-gradient(ellipse 85% 65% at 12% 25%, rgba(242, 91, 200, 0.16) 0%, transparent 55%),
		radial-gradient(ellipse 75% 55% at 88% 70%, rgba(139, 92, 255, 0.14) 0%, transparent 52%);
}

.product-section__glow--showcase {
	background: radial-gradient(ellipse 80% 60% at 75% 40%, rgba(102, 231, 255, 0.1) 0%, transparent 58%);
}

.product-section__glow--features {
	background: radial-gradient(ellipse 90% 70% at 50% 50%, rgba(13, 19, 34, 0.6) 0%, transparent 70%);
}

.product-section__glow--use {
	background: radial-gradient(ellipse 70% 50% at 20% 80%, rgba(242, 91, 200, 0.08) 0%, transparent 55%);
}

.product-section__glow--cta {
	background:
		radial-gradient(ellipse 70% 55% at 30% 50%, rgba(139, 92, 255, 0.14) 0%, transparent 55%),
		radial-gradient(ellipse 65% 50% at 70% 50%, rgba(102, 231, 255, 0.1) 0%, transparent 52%);
}

.product-section__divider {
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: min(1160px, calc(100% - clamp(3rem, 8vw, 7.5rem)));
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(139, 92, 255, 0.28), transparent);
	pointer-events: none;
	z-index: 2;
}

.product-section--hero {
	padding-block: clamp(4.5rem, 10vh, 6.5rem);
	background: linear-gradient(180deg, rgba(242, 91, 200, 0.05) 0%, var(--orbit-void) 48%);
}

.product-section--showcase {
	background: linear-gradient(180deg, var(--orbit-void) 0%, var(--deep-space) 50%, var(--orbit-void) 100%);
}

.product-section--benefits {
	background: var(--orbit-void);
}

.product-section--features {
	background: linear-gradient(180deg, var(--deep-space) 0%, var(--orbit-void) 100%);
}

.product-section--integrations {
	background: var(--orbit-void);
}

.product-section--use-cases {
	background: var(--deep-space);
}

.product-section--privacy {
	background: linear-gradient(180deg, var(--orbit-void) 0%, rgba(13, 19, 34, 0.85) 100%);
}

.product-section--cta {
	padding-block: clamp(3.5rem, 7vh, 5.5rem);
	background: var(--orbit-void);
}

.product-section__inner {
	position: relative;
	z-index: 1;
}

.product-hero-grid {
	display: grid;
	gap: clamp(2rem, 5vw, 3.5rem);
	align-items: center;
	width: 100%;
	min-width: 0;
}

@media (min-width: 61.25rem) {
	.product-hero-grid {
		grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
		gap: clamp(2.5rem, 5vw, 5rem);
	}
}

.product-hero-content {
	min-width: 0;
}

.product-hero__title {
	font-size: clamp(2rem, 4.2vw, 3.125rem);
	line-height: 1.08;
	letter-spacing: -0.03em;
	font-weight: 800;
	color: var(--stellar-white);
	margin: 0 0 var(--space-md);
	max-width: 36rem;
}

.product-hero__lead {
	font-size: clamp(1rem, 1.6vw, 1.125rem);
	line-height: 1.65;
	color: var(--mist-blue);
	max-width: 34rem;
	margin: 0 0 var(--space-lg);
}

.product-hero-preview {
	min-width: 0;
	max-width: 100%;
	overflow: hidden;
}

.product-heading {
	font-size: clamp(1.75rem, 3.2vw, 2.375rem);
	line-height: 1.12;
	letter-spacing: -0.02em;
	font-weight: 800;
	color: var(--stellar-white);
	margin: 0 0 var(--space-md);
}

.product-heading--center {
	text-align: center;
	max-width: 40rem;
	margin-inline: auto;
}

.product-lead {
	font-size: 1.0625rem;
	line-height: 1.65;
	color: var(--mist-blue);
	margin: 0;
	max-width: 32rem;
}

.product-section-header {
	text-align: center;
	max-width: 40rem;
	margin: 0 auto var(--space-xl);
}

.product-split {
	display: grid;
	gap: clamp(2.5rem, 5vw, 4rem);
	align-items: center;
}

@media (min-width: 56rem) {
	.product-split {
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	}
}

.product-split__copy {
	min-width: 0;
}

.product-showcase-stage {
	position: relative;
	min-width: 0;
	padding: clamp(1rem, 3vw, 2rem) 0;
}

.product-showcase-mockup {
	position: relative;
	z-index: 1;
}

.product-float-card {
	position: absolute;
	z-index: 3;
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
	padding: 0.75rem 1rem;
	min-width: 10.5rem;
	border-radius: var(--radius-md);
	background: rgba(13, 19, 34, 0.75);
	border: 1px solid rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	box-shadow:
		0 0.5rem 2rem rgba(0, 0, 0, 0.35),
		0 0 1.5rem rgba(139, 92, 255, 0.12);
	font-size: 0.8125rem;
	color: var(--mist-blue);
	transition: transform var(--transition), box-shadow var(--transition);
}

.product-float-card strong {
	color: var(--stellar-white);
	font-size: 0.875rem;
	font-weight: 600;
}

.product-float-card__dot {
	width: 0.5rem;
	height: 0.5rem;
	border-radius: 50%;
	background: var(--ion-magenta);
	margin-bottom: 0.125rem;
}

.product-float-card__dot--violet {
	background: var(--aura-violet);
}

.product-float-card__dot--cyan {
	background: var(--glacier-cyan);
}

.product-float-card--ai {
	top: 4%;
	left: max(0%, -2%);
}

.product-float-card--workflow {
	top: 38%;
	right: max(0%, -1%);
}

.product-float-card--team {
	bottom: 6%;
	left: 6%;
}

.product-benefits-grid {
	display: grid;
	gap: 1.5rem;
	grid-template-columns: 1fr;
}

@media (min-width: 40rem) {
	.product-benefits-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 64rem) {
	.product-benefits-grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

.product-benefit-card {
	display: flex;
	flex-direction: column;
	height: 100%;
	padding: var(--space-lg);
	transition:
		transform var(--transition),
		border-color var(--transition),
		box-shadow var(--transition);
}

.product-benefit-card:hover {
	transform: translateY(-4px);
	border-color: rgba(139, 92, 255, 0.35);
	box-shadow:
		0 1rem 2.5rem rgba(0, 0, 0, 0.35),
		0 0 2rem rgba(242, 91, 200, 0.1);
}

.product-benefit-card .feature-icon {
	margin-bottom: var(--space-md);
	color: var(--glacier-cyan);
}

.product-benefit-card h3 {
	font-size: 1.0625rem;
	font-weight: 700;
	color: var(--stellar-white);
	margin: 0 0 var(--space-sm);
}

.product-benefit-card p {
	margin: 0;
	font-size: 0.9375rem;
	line-height: 1.55;
	color: var(--mist-blue);
	flex: 1;
}

.product-features-editorial {
	display: grid;
	gap: 1.5rem;
	grid-template-columns: 1fr;
}

@media (min-width: 64rem) {
	.product-features-editorial {
		grid-template-columns: 1.12fr 1fr;
		grid-template-rows: auto auto;
		align-items: stretch;
	}

	.product-feature-card--large {
		grid-row: 1 / span 2;
	}
}

.product-feature-card {
	position: relative;
	overflow: hidden;
	padding: var(--space-xl);
	min-height: 12rem;
	display: flex;
	flex-direction: column;
}

.product-feature-card--large {
	min-height: 100%;
}

.product-feature-card__decor {
	position: absolute;
	right: -5%;
	bottom: -10%;
	width: min(55%, 220px);
	opacity: 0.55;
	pointer-events: none;
}

.product-feature-card--large .product-feature-card__decor {
	width: min(70%, 280px);
	right: -8%;
	bottom: -5%;
}

.product-decor-svg {
	width: 100%;
	height: auto;
	display: block;
}

.product-feature-card .feature-icon {
	position: relative;
	z-index: 1;
	margin-bottom: var(--space-md);
	color: var(--glacier-cyan);
}

.product-feature-card h3 {
	position: relative;
	z-index: 1;
	font-size: clamp(1.125rem, 2vw, 1.375rem);
	font-weight: 700;
	color: var(--stellar-white);
	margin: 0 0 var(--space-sm);
	max-width: 20rem;
}

.product-feature-card p {
	position: relative;
	z-index: 1;
	margin: 0;
	font-size: 0.9375rem;
	line-height: 1.6;
	color: var(--mist-blue);
	max-width: 28rem;
}

.product-integrations-grid {
	display: grid;
	gap: 1rem;
	grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 40rem) {
	.product-integrations-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (min-width: 56rem) {
	.product-integrations-grid {
		grid-template-columns: repeat(5, 1fr);
	}
}

.product-integration-card {
	padding: var(--space-lg);
	text-align: center;
	transition: transform var(--transition), border-color var(--transition);
}

.product-integration-card:hover {
	transform: translateY(-3px);
	border-color: rgba(102, 231, 255, 0.3);
}

.product-integration-card__mark {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.5rem;
	height: 2.5rem;
	margin: 0 auto var(--space-sm);
	border-radius: var(--radius-md);
	font-size: 1.125rem;
	font-weight: 800;
	color: var(--stellar-white);
	background: var(--velora-gradient);
}

.product-integration-card h3 {
	font-size: 1rem;
	font-weight: 700;
	color: var(--stellar-white);
	margin: 0 0 0.25rem;
}

.product-integration-card p {
	margin: 0;
	font-size: 0.75rem;
	color: var(--text-dim);
}

.product-integration-notice {
	margin-top: var(--space-lg);
	padding: var(--space-md) var(--space-lg);
	text-align: center;
	font-size: 0.875rem;
	color: var(--mist-blue);
	line-height: 1.55;
}

.product-use-cases-grid {
	display: grid;
	gap: 1.5rem;
	grid-template-columns: 1fr;
}

@media (min-width: 40rem) {
	.product-use-cases-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 64rem) {
	.product-use-cases-grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

.product-use-case-card {
	padding: var(--space-lg);
	height: 100%;
	border-left: 3px solid transparent;
	transition:
		transform var(--transition),
		border-color var(--transition),
		box-shadow var(--transition);
}

.product-use-case-card:hover {
	transform: translateY(-3px);
	border-left-color: var(--aura-violet);
	box-shadow: 0 0.75rem 2rem rgba(139, 92, 255, 0.15);
}

.product-use-case-card h3 {
	font-size: 1.0625rem;
	font-weight: 700;
	color: var(--stellar-white);
	margin: 0 0 var(--space-sm);
}

.product-use-case-card p {
	margin: 0;
	font-size: 0.9375rem;
	line-height: 1.55;
	color: var(--mist-blue);
}

.product-privacy-panel {
	position: relative;
	overflow: hidden;
	display: grid;
	gap: var(--space-xl);
	padding: var(--space-2xl);
	align-items: center;
}

@media (min-width: 48rem) {
	.product-privacy-panel {
		grid-template-columns: 1fr auto;
	}
}

.product-privacy-panel__glow {
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse 80% 70% at 0% 50%, rgba(102, 231, 255, 0.12) 0%, transparent 60%);
	pointer-events: none;
}

.product-privacy-panel__content {
	position: relative;
	z-index: 1;
}

.product-privacy-panel__icon {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
}

.product-privacy-panel__icon .feature-icon {
	width: 4rem;
	height: 4rem;
	color: var(--glacier-cyan);
	opacity: 0.9;
}

.product-privacy-list {
	list-style: none;
	margin: var(--space-lg) 0 0;
	padding: 0;
	display: grid;
	gap: var(--space-md);
}

.product-privacy-list li {
	position: relative;
	padding-left: 1.5rem;
	font-size: 1rem;
	line-height: 1.5;
	color: var(--mist-blue);
}

.product-privacy-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.45em;
	width: 0.5rem;
	height: 0.5rem;
	border-radius: 50%;
	background: var(--velora-gradient);
}

.product-cta-panel {
	position: relative;
	text-align: center;
	padding: clamp(2.5rem, 6vw, 4rem) var(--space-xl);
	overflow: hidden;
}

.product-cta-panel::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse 60% 80% at 50% 0%, rgba(242, 91, 200, 0.12) 0%, transparent 55%),
		radial-gradient(ellipse 50% 60% at 80% 100%, rgba(102, 231, 255, 0.08) 0%, transparent 50%);
	pointer-events: none;
}

.product-cta-panel__title {
	position: relative;
	font-size: clamp(1.75rem, 3.5vw, 2.5rem);
	font-weight: 800;
	letter-spacing: -0.02em;
	color: var(--stellar-white);
	margin: 0 0 var(--space-md);
}

.product-cta-panel__text {
	position: relative;
	max-width: 32rem;
	margin: 0 auto var(--space-lg);
	font-size: 1.0625rem;
	line-height: 1.6;
	color: var(--mist-blue);
}

@media (max-width: 61.24rem) {
	.product-hero-grid {
		text-align: center;
	}

	.product-hero-content {
		margin-inline: auto;
	}

	.product-hero__title,
	.product-hero__lead {
		margin-inline: auto;
	}

	.product-hero-content .hero-badge {
		margin-inline: auto;
	}

	.product-hero-content .hero-actions {
		justify-content: center;
	}

	.product-hero-preview {
		max-width: 36rem;
		margin-inline: auto;
	}
}

@media (max-width: 47.99rem) {
	.product-float-card {
		position: relative;
		top: auto;
		right: auto;
		bottom: auto;
		left: auto;
		min-width: 0;
		margin-bottom: 0.75rem;
	}

	.product-showcase-stage {
		display: flex;
		flex-direction: column;
	}

	.product-float-card--ai,
	.product-float-card--workflow,
	.product-float-card--team {
		order: -1;
	}

	.product-showcase-mockup {
		order: 0;
	}

	.product-integrations-grid {
		grid-template-columns: 1fr;
	}
}

@media (prefers-reduced-motion: reduce) {
	.product-benefit-card:hover,
	.product-integration-card:hover,
	.product-use-case-card:hover {
		transform: none;
	}
}
