/* Design tokens + reset (shared with the sec-ui component library) */
/* sec-ui design tokens — single source of truth. Custom properties inherit through
   shadow DOM boundaries, so every sec-ui component reads these without redeclaring them. */

:root {
  color-scheme: dark;

  /* surfaces */
  --sec-bg-0: #05070a;
  --sec-bg-1: #0a0e15;
  --sec-bg-2: #10151f;
  --sec-bg-field: #0d1219;
  --sec-overlay: rgba(4, 6, 10, 0.72);

  /* borders */
  --sec-line: rgba(255, 255, 255, 0.09);
  --sec-line-soft: rgba(255, 255, 255, 0.05);
  --sec-line-strong: rgba(255, 255, 255, 0.18);

  /* text */
  --sec-text: #eef2f6;
  --sec-text-secondary: #a9b3c1;
  --sec-text-muted: #6b7484;
  --sec-text-inverse: #05070a;

  /* accent (signal cyan) */
  --sec-accent: #2dd4ee;
  --sec-accent-hover: #5fe1f4;
  --sec-accent-press: #17b8d1;
  --sec-accent-subtle: rgba(45, 212, 238, 0.1);
  --sec-accent-line: rgba(45, 212, 238, 0.35);

  /* status */
  --sec-success: #3ddc84;
  --sec-warning: #f1c21b;
  --sec-danger: #fa4d56;
  --sec-purple: #a56eff;

  /* type */
  --sec-font-sans: "IBM Plex Sans", system-ui, -apple-system, sans-serif;
  --sec-font-mono: "IBM Plex Mono", ui-monospace, "SFMono-Regular", monospace;

  --sec-fs-display: clamp(2.5rem, 5.25vw, 4.75rem);
  --sec-fs-h1: clamp(2.25rem, 4vw, 3.25rem);
  --sec-fs-h2: clamp(1.75rem, 3vw, 2.5rem);
  --sec-fs-h3: 1.25rem;
  --sec-fs-body-lg: 1.125rem;
  --sec-fs-body: 1rem;
  --sec-fs-sm: 0.875rem;
  --sec-fs-xs: 0.75rem;

  --sec-lh-tight: 1.1;
  --sec-lh-body: 1.6;

  /* spacing scale */
  --sec-space-1: 4px;
  --sec-space-2: 8px;
  --sec-space-3: 12px;
  --sec-space-4: 16px;
  --sec-space-5: 24px;
  --sec-space-6: 32px;
  --sec-space-7: 48px;
  --sec-space-8: 64px;
  --sec-space-9: 96px;

  --sec-radius-sm: 3px;
  --sec-radius-md: 6px;
  --sec-radius-lg: 10px;

  --sec-shadow-card: 0 1px 0 rgba(255, 255, 255, 0.04) inset, 0 12px 32px rgba(0, 0, 0, 0.35);

  --sec-ease: cubic-bezier(0.2, 0.6, 0.2, 1);
  --sec-transition-fast: 0.12s var(--sec-ease);
  --sec-transition-med: 0.22s var(--sec-ease);

  --sec-header-h: 88px;
  --sec-content-max: 1200px;
}

html, body {
  background: var(--sec-bg-0);
  color: var(--sec-text);
  font-family: var(--sec-font-sans);
}

::-moz-selection {
  background: var(--sec-accent);
  color: var(--sec-text-inverse);
}

::selection {
  background: var(--sec-accent);
  color: var(--sec-text-inverse);
}
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--sec-ease, ease), transform 0.7s var(--sec-ease, ease);
  transition-delay: var(--reveal-delay, 0s);
  will-change: opacity, transform;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
/* CrucibleOS brand overrides on top of sec-ui's shared tokens (imported before this file).
   Same component library as Sing Security and LFAM, deliberately distinct identity: the kernel
   is named "Forge" and its desktop compositor "ember" — so the brand leans into that literally,
   a forge/molten-metal palette (near-black charcoal + hot ember-orange) instead of Sing
   Security's cyan-glass-neon or LFAM's gunmetal-brass. A second cool "verified" cyan is reserved
   for cryptographic/attestation callouts so PQC and capability content reads distinctly from
   the primary marketing accent. */
:root {
	--sec-bg-0: #0b0908;
	--sec-bg-1: #151210;
	--sec-bg-2: #1e1a17;

	--sec-line: rgba(255, 255, 255, 0.1);
	--sec-line-soft: rgba(255, 255, 255, 0.06);
	--sec-line-strong: rgba(255, 255, 255, 0.2);

	--sec-accent: #ff6a3d;
	--sec-accent-hover: #ff8a63;
	--sec-accent-press: #e2502a;
	--sec-accent-subtle: rgba(255, 106, 61, 0.1);
	--sec-accent-line: rgba(255, 106, 61, 0.38);

	/* reserved for cryptographic/attestation content (PQC signatures, verified-boot chain) —
	   kept distinct from the ember marketing accent so "this is cryptographically checked"
	   reads as a different signal than "this is the brand color" */
	--crucible-verify: #49d6c8;
	--crucible-verify-line: rgba(73, 214, 200, 0.35);
	--crucible-verify-subtle: rgba(73, 214, 200, 0.1);
}
/* Self-hosted IBM Plex (Sans + Mono), copied from sec-ui into web-folder/fonts by
   scripts/copy-assets.js — paths here are relative to the built web-folder/css/app-bundle.css. */

@font-face {
	font-family: "IBM Plex Sans";
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url("../fonts/IBMPlexSans-Regular.woff2") format("woff2");
}
@font-face {
	font-family: "IBM Plex Sans";
	font-style: normal;
	font-weight: 500;
	font-display: swap;
	src: url("../fonts/IBMPlexSans-Medium.woff2") format("woff2");
}
@font-face {
	font-family: "IBM Plex Sans";
	font-style: normal;
	font-weight: 600;
	font-display: swap;
	src: url("../fonts/IBMPlexSans-SemiBold.woff2") format("woff2");
}
@font-face {
	font-family: "IBM Plex Sans";
	font-style: normal;
	font-weight: 700;
	font-display: swap;
	src: url("../fonts/IBMPlexSans-Bold.woff2") format("woff2");
}
@font-face {
	font-family: "IBM Plex Mono";
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url("../fonts/IBMPlexMono-Regular.woff2") format("woff2");
}
@font-face {
	font-family: "IBM Plex Mono";
	font-style: normal;
	font-weight: 500;
	font-display: swap;
	src: url("../fonts/IBMPlexMono-Medium.woff2") format("woff2");
}
@font-face {
	font-family: "IBM Plex Mono";
	font-style: normal;
	font-weight: 600;
	font-display: swap;
	src: url("../fonts/IBMPlexMono-SemiBold.woff2") format("woff2");
}
html,
body {
	height: 100%;
	margin: 0;
	padding: 0;
}

html {
	overflow: hidden;
}

body {
	box-sizing: border-box;
	display: grid;
	font-family: var(--sec-font-sans);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

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

h1, h2, h3, h4, p {
	margin: 0;
}

/* App-specific view styles */
root-v {
	min-height: 100vh;
	display: grid;
	grid-template-rows: auto 1fr;
	background: var(--sec-bg-0);
	color: var(--sec-text);
	overflow: hidden;

	/* Without this, .bg-magma's fixed + z-index:-1 has no ancestor stacking context to scope
	   against, so it's compared at the document root level — where it loses to <body>'s own
	   opaque background (set by tokens.css's `html, body { background: var(--sec-bg-0) }`),
	   which paints *after* negative-z-index descendants in root stacking order. Establishing a
	   stacking context here scopes the negative z-index to root-v's own children instead. */
	isolation: isolate;
}
/* Mounted once here (not per-page like sec-ember-field) so it persists across route
	   changes. Pinned behind every page's content — each page-view's own background was made
	   transparent (see e.g. landing-v.pcss) specifically so this shows through. */
root-v .bg-magma {
		position: fixed;
		inset: 0;
		z-index: -1;
		pointer-events: none;
	}
root-v main:has(notfound-v) {
		display: grid;
		place-items: center;
		overflow: auto;
	}
root-v main {
		overflow-y: auto;
		min-height: 0; /* important for grid children */
		display: block;
	}

cr-header .brand-mark {
	color: var(--sec-accent);
	flex: none;
}
landing-v {
	display: block;
}

landing-v > main {
	display: flex;
	flex-direction: column;
}

/* ================= HERO ================= */

.hero-section {
	position: relative;
	display: grid;
	grid-template-columns: 1.05fr 1fr;
	gap: var(--sec-space-8);
	align-items: center;
	max-width: var(--sec-content-max);
	margin: 0 auto;
	padding: var(--sec-space-9) var(--sec-space-8) var(--sec-space-7);
	overflow: hidden;
}

.hero-backdrop,
.hero-embers {
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
}

.hero-left {
	position: relative;
	z-index: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: var(--sec-space-4);
}

.hero-section h1 {
	max-width: 100%;
	font-size: clamp(2.1rem, 4vw, 3.5rem);
	font-weight: 600;
	letter-spacing: -0.03em;
	line-height: 1.1;
}

.hero-description {
	max-width: 38rem;
	font-size: var(--sec-fs-body-lg);
	color: var(--sec-text-secondary);
	line-height: var(--sec-lh-body);
}

.hero-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: var(--sec-space-3);
	margin-top: var(--sec-space-2);
}

.hero-right {
	position: relative;
	z-index: 1;
	min-width: 0;
	width: 100%;
}

.boot-terminal {
	width: 100%;
}

/* ================= STATUS CALLOUT ================= */

.status-section {
	max-width: var(--sec-content-max);
	margin: 0 auto;
	padding: 0 var(--sec-space-8) var(--sec-space-7);
	width: 100%;
	box-sizing: border-box;
}

.status-section a {
	color: inherit;
	text-decoration: underline;
}

/* ================= SHARED SECTION HEADER ================= */

.section-header {
	display: flex;
	align-items: center;
	gap: var(--sec-space-3);
}

.section-header .accent-line {
	width: 3rem;
	height: 2px;
	background: var(--sec-accent);
	flex: none;
}

.section-header h2 {
	font-size: var(--sec-fs-h2);
	font-weight: 600;
	letter-spacing: 0.01em;
}

.section-lead {
	max-width: 46rem;
	color: var(--sec-text-secondary);
	line-height: var(--sec-lh-body);
	margin-top: var(--sec-space-3);
}

/* ================= EXECUTION MODELS ================= */

.models-section {
	display: flex;
	flex-direction: column;
	gap: var(--sec-space-6);
	max-width: var(--sec-content-max);
	margin: 0 auto;
	padding: var(--sec-space-8);
	border-top: 1px solid var(--sec-line);
	width: 100%;
	box-sizing: border-box;
}

.model-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--sec-space-4);
}

.model-grid p code,
.pillar-copy code {
	font-family: var(--sec-font-mono);
	font-size: 0.92em;
	color: var(--sec-text);
	background: rgba(255, 255, 255, 0.06);
	padding: 1px 5px;
	border-radius: var(--sec-radius-sm);
}

/* ================= SECURITY PILLARS ================= */

.pillars-section {
	display: flex;
	flex-direction: column;
	gap: var(--sec-space-6);
	max-width: var(--sec-content-max);
	margin: 0 auto;
	padding: var(--sec-space-8);
	border-top: 1px solid var(--sec-line);
	width: 100%;
	box-sizing: border-box;
}

.pillar-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: var(--sec-space-4);
}

.pillar-copy {
	max-width: 52rem;
}

.pillar-copy p {
	color: var(--sec-text-secondary);
	line-height: var(--sec-lh-body);
}

/* SIEGE TEASER */

.siege-teaser {
	display: grid;
	grid-template-columns: 1.3fr 1fr;
	gap: var(--sec-space-6);
	align-items: center;
	margin-top: var(--sec-space-4);
}

.siege-demo-sm {
	display: block;
	width: 100%;
	height: 22rem;
	border: 1px solid var(--sec-line);
	border-radius: var(--sec-radius-lg);
	background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.025), transparent 70%), var(--sec-bg-1);
}

.siege-teaser-copy {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: var(--sec-space-3);
}

.siege-teaser-label {
	font-family: var(--sec-font-mono);
	font-size: var(--sec-fs-xs);
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--sec-accent);
}

.siege-teaser-copy p:not(.siege-teaser-label) {
	color: var(--sec-text-secondary);
	line-height: var(--sec-lh-body);
}

/* ================= CTA ================= */

.cta {
	position: relative;
	max-width: var(--sec-content-max);
	margin: 0 auto;
	padding: var(--sec-space-9) var(--sec-space-8);
	text-align: center;
	border-top: 1px solid var(--sec-line);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: var(--sec-space-4);
	overflow: hidden;
}

.cta-embers {
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
}

.cta > *:not(.cta-embers) {
	position: relative;
	z-index: 1;
}

.cta h2 {
	font-size: var(--sec-fs-h2);
	font-weight: 600;
	letter-spacing: -0.02em;
}

.cta p {
	color: var(--sec-text-secondary);
	max-width: 42rem;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {
	.hero-section {
		grid-template-columns: 1fr;
	}

	.model-grid {
		grid-template-columns: 1fr;
	}

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

	.siege-teaser {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 600px) {
	.hero-section,
	.status-section,
	.models-section,
	.pillars-section,
	.cta {
		padding: var(--sec-space-6) var(--sec-space-4);
	}

	.pillar-grid {
		grid-template-columns: 1fr;
	}

	.siege-demo-sm {
		height: 18rem;
	}
}
docs-v {
	display: block;
}

docs-v > main {
	display: flex;
	flex-direction: column;
	gap: var(--sec-space-6);
	max-width: var(--sec-content-max);
	margin: 0 auto;
	padding: var(--sec-space-6) var(--sec-space-8) var(--sec-space-8);
	box-sizing: border-box;
	width: 100%;
}

/* HERO — a compact document title, not a marketing hero: real docs sites spend vertical space
   on content, not on a display-sized headline sitting in an otherwise-empty band. */

.docs-hero {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: var(--sec-space-3);
	max-width: 46rem;
	padding-bottom: var(--sec-space-5);
	border-bottom: 1px solid var(--sec-line);
	overflow: hidden;
}

.docs-hero .hero-embers {
	position: absolute;
	inset: -20% -10%;
	z-index: 0;
	pointer-events: none;
	opacity: 0.6;
}

.docs-hero > *:not(.hero-embers) {
	position: relative;
	z-index: 1;
}

.docs-hero h1 {
	font-size: var(--sec-fs-h1);
	font-weight: 600;
	line-height: var(--sec-lh-tight);
	letter-spacing: -0.02em;
	max-width: 100%;
}

.docs-hero p {
	color: var(--sec-text-secondary);
	font-size: var(--sec-fs-body);
	line-height: var(--sec-lh-body);
	max-width: 56ch;
}

/* LAYOUT */

.docs-layout {
	display: grid;
	grid-template-columns: 13rem 1fr;
	gap: var(--sec-space-7);
	align-items: start;
}

.docs-content {
	display: flex;
	flex-direction: column;
	gap: var(--sec-space-7);
	min-width: 0;
}

.docs-content section {
	display: flex;
	flex-direction: column;
	gap: var(--sec-space-3);
	scroll-margin-top: calc(var(--sec-header-h) + var(--sec-space-4));
}

.docs-content h2 {
	font-size: var(--sec-fs-h2);
	font-weight: 600;
	letter-spacing: -0.01em;
	color: var(--sec-text);
}

.docs-content h3 {
	font-size: var(--sec-fs-h3);
	font-weight: 600;
	color: var(--sec-text);
}

.docs-content p {
	color: var(--sec-text-secondary);
	line-height: var(--sec-lh-body);
	max-width: 60ch;
}

.docs-content ul {
	display: flex;
	flex-direction: column;
	gap: var(--sec-space-2);
	margin: 0;
	padding-left: 1.25rem;
	color: var(--sec-text-secondary);
	line-height: var(--sec-lh-body);
	max-width: 60ch;
}

.docs-content a {
	color: var(--sec-accent);
	text-decoration: none;
}

.docs-content a:hover {
	color: var(--sec-accent-hover);
}

.docs-content code {
	font-family: var(--sec-font-mono);
	font-size: 0.92em;
	color: var(--sec-text);
	background: rgba(255, 255, 255, 0.06);
	padding: 1px 5px;
	border-radius: var(--sec-radius-sm);
}

/* SUBSYSTEM GRID */

.subsystem-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: var(--sec-space-4);
}

.subsystem {
	display: flex;
	flex-direction: column;
	gap: var(--sec-space-2);
	padding: var(--sec-space-4);
	border: 1px solid var(--sec-line);
	border-radius: var(--sec-radius-md);
	background: rgba(255, 255, 255, 0.02);
}

.subsystem p {
	max-width: none;
	font-size: var(--sec-fs-sm);
}

/* RESPONSIVE */

@media (max-width: 900px) {
	.docs-layout {
		grid-template-columns: 1fr;
	}

	.docs-sidebar::part(nav) {
		position: static;
		flex-direction: row;
		flex-wrap: wrap;
		border-left: none;
		border-bottom: 1px solid var(--sec-line);
		padding-left: 0;
		padding-bottom: var(--sec-space-3);
		gap: var(--sec-space-4);
	}

	.subsystem-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 600px) {
	docs-v > main {
		padding: var(--sec-space-7) var(--sec-space-4);
	}
}
security-v {
	display: block;
}

security-v > main {
	display: flex;
	flex-direction: column;
	gap: var(--sec-space-7);
	max-width: var(--sec-content-max);
	margin: 0 auto;
	padding: var(--sec-space-9) var(--sec-space-8);
	box-sizing: border-box;
	width: 100%;
}

.security-hero {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: var(--sec-space-4);
	max-width: 46rem;
	overflow: hidden;
}

.security-hero .hero-embers {
	position: absolute;
	inset: -20% -10%;
	z-index: 0;
	pointer-events: none;
}

.security-hero > *:not(.hero-embers) {
	position: relative;
	z-index: 1;
}

.security-hero h1 {
	font-size: var(--sec-fs-display);
	font-weight: 600;
	line-height: var(--sec-lh-tight);
	letter-spacing: -0.03em;
	max-width: 100%;
}

.security-hero p {
	color: var(--sec-text-secondary);
	font-size: var(--sec-fs-body-lg);
	line-height: var(--sec-lh-body);
}

security-v section {
	display: flex;
	flex-direction: column;
	gap: var(--sec-space-4);
	padding-top: var(--sec-space-7);
	border-top: 1px solid var(--sec-line);
}

.security-hero {
	padding-top: 0;
	border-top: none;
}

.section-header {
	display: flex;
	align-items: center;
	gap: var(--sec-space-3);
}

.section-header .accent-line {
	width: 3rem;
	height: 2px;
	background: var(--sec-accent);
	flex: none;
}

.section-header h2 {
	font-size: var(--sec-fs-h2);
	font-weight: 600;
	letter-spacing: 0.01em;
}

.section-lead {
	max-width: 52rem;
	color: var(--sec-text-secondary);
	line-height: var(--sec-lh-body);
}

.section-lead code {
	font-family: var(--sec-font-mono);
	font-size: 0.92em;
	color: var(--sec-text);
	background: rgba(255, 255, 255, 0.06);
	padding: 1px 5px;
	border-radius: var(--sec-radius-sm);
}

/* CAPABILITY DOMAINS */

.domain-row {
	display: flex;
	align-items: stretch;
	gap: var(--sec-space-3);
}

.domain {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: var(--sec-space-2);
	padding: var(--sec-space-4);
	border: 1px solid var(--sec-line);
	border-radius: var(--sec-radius-md);
	background: rgba(255, 255, 255, 0.02);
}

.domain-tag {
	align-self: flex-start;
	font-family: var(--sec-font-mono);
	font-size: var(--sec-fs-xs);
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--sec-accent);
	padding: 3px 9px;
	border-radius: var(--sec-radius-sm);
	border: 1px solid var(--sec-accent-line);
	background: var(--sec-accent-subtle);
}

.domain p {
	color: var(--sec-text-secondary);
	font-size: var(--sec-fs-sm);
	line-height: var(--sec-lh-body);
}

.domain-arrow {
	display: flex;
	align-items: center;
	color: var(--sec-text-muted);
	flex: none;
}

/* SIEGE DEMO */

.siege-wrap {
	margin-top: var(--sec-space-2);
	display: flex;
	flex-direction: column;
	gap: var(--sec-space-3);
}

.siege-demo {
	width: 100%;
	height: 26rem;
	border: 1px solid var(--sec-line);
	border-radius: var(--sec-radius-lg);
	background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.025), transparent 70%), var(--sec-bg-1);
}

.siege-caption {
	max-width: 46rem;
	color: var(--sec-text-muted);
	font-size: var(--sec-fs-sm);
	line-height: var(--sec-lh-body);
}

/* CRYPTO GRID */

.crypto-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: var(--sec-space-4);
}

/* RESPONSIVE */

@media (max-width: 900px) {
	.domain-row {
		flex-direction: column;
	}

	.domain-arrow {
		transform: rotate(90deg);
		align-self: center;
	}

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

@media (max-width: 600px) {
	security-v > main {
		padding: var(--sec-space-7) var(--sec-space-4);
	}

	.crypto-grid {
		grid-template-columns: 1fr;
	}

	.siege-demo {
		height: 20rem;
	}
}
roadmap-v {
	display: block;
}

roadmap-v > main {
	display: flex;
	flex-direction: column;
	gap: var(--sec-space-7);
	max-width: var(--sec-content-max);
	margin: 0 auto;
	padding: var(--sec-space-9) var(--sec-space-8);
	box-sizing: border-box;
	width: 100%;
}

.roadmap-hero {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: var(--sec-space-4);
	max-width: 46rem;
	overflow: hidden;
}

.roadmap-hero .hero-embers {
	position: absolute;
	inset: -20% -10%;
	z-index: 0;
	pointer-events: none;
}

.roadmap-hero > *:not(.hero-embers) {
	position: relative;
	z-index: 1;
}

.roadmap-hero h1 {
	font-size: var(--sec-fs-display);
	font-weight: 600;
	line-height: var(--sec-lh-tight);
	letter-spacing: -0.03em;
	max-width: 100%;
}

.roadmap-hero p {
	color: var(--sec-text-secondary);
	font-size: var(--sec-fs-body-lg);
	line-height: var(--sec-lh-body);
}

roadmap-v section:not(.roadmap-hero) {
	padding-top: var(--sec-space-7);
	border-top: 1px solid var(--sec-line);
	display: flex;
	flex-direction: column;
	gap: var(--sec-space-4);
}

/* STATUS COLUMNS */

.status-columns {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--sec-space-6);
}

.col-heading {
	font-size: var(--sec-fs-h3);
	font-weight: 600;
}

.col-heading.working {
	color: var(--sec-success);
}

.col-heading.not-yet {
	color: var(--sec-danger);
}

.status-col ul {
	display: flex;
	flex-direction: column;
	gap: var(--sec-space-3);
	margin: 0;
	padding-left: 1.25rem;
	color: var(--sec-text-secondary);
	line-height: var(--sec-lh-body);
	font-size: var(--sec-fs-sm);
}

/* SECTION HEADER (shared pattern) */

.section-header {
	display: flex;
	align-items: center;
	gap: var(--sec-space-3);
}

.section-header .accent-line {
	width: 3rem;
	height: 2px;
	background: var(--sec-accent);
	flex: none;
}

.section-header h2 {
	font-size: var(--sec-fs-h2);
	font-weight: 600;
	letter-spacing: 0.01em;
}

.section-lead {
	max-width: 52rem;
	color: var(--sec-text-secondary);
	line-height: var(--sec-lh-body);
}

/* RESPONSIVE */

@media (max-width: 900px) {
	.status-columns {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 600px) {
	roadmap-v > main {
		padding: var(--sec-space-7) var(--sec-space-4);
	}
}
contact-v {
	display: block;
}

contact-v > main {
	display: flex;
	flex-direction: column;
	gap: var(--sec-space-7);
	max-width: 44rem;
	margin: 0 auto;
	padding: var(--sec-space-9) var(--sec-space-8);
	box-sizing: border-box;
	width: 100%;
}

contact-v > main > section {
	display: flex;
	flex-direction: column;
	gap: var(--sec-space-4);
}

.contact-hero {
	position: relative;
	overflow: hidden;
}

.contact-hero .hero-embers {
	position: absolute;
	inset: -20% -10%;
	z-index: 0;
	pointer-events: none;
}

.contact-hero > *:not(.hero-embers) {
	position: relative;
	z-index: 1;
}

.contact-hero p {
	color: var(--sec-text-secondary);
	font-size: var(--sec-fs-body-lg);
	line-height: var(--sec-lh-body);
	max-width: 34rem;
}

contact-v h3 {
	font-size: var(--sec-fs-h2);
	font-weight: 600;
	letter-spacing: -0.01em;
	color: var(--sec-text);
}

/* CONTACT TILES */

.tile-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--sec-space-3);
}

.tile-container sec-card header {
	display: flex;
	align-items: center;
	gap: var(--sec-space-2);
	font-size: var(--sec-fs-h3);
	font-weight: 600;
}

.tile-container sec-card svg {
	width: 1.25rem;
	height: 1.25rem;
	flex-shrink: 0;
	color: var(--sec-accent);
}

.tile-container sec-card a {
	color: var(--sec-text-secondary);
	text-decoration: none;
}

.tile-container sec-card a:hover {
	color: var(--sec-accent);
}

.tile-container sec-card p {
	margin: 0;
	color: var(--sec-text-secondary);
}

/* FORM */

.contact-form {
	display: flex;
	flex-direction: column;
	gap: var(--sec-space-4);
}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--sec-space-4);
}

.contact-form .send {
	align-self: flex-end;
}

.status {
	min-height: 1.2em;
	font-size: var(--sec-fs-sm);
	color: var(--sec-text-secondary);
}

/* RESPONSIVE */
@media (max-width: 768px) {
	contact-v > main {
		padding: var(--sec-space-7) var(--sec-space-4);
	}

	.tile-container {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 508px) {
	.form-row {
		grid-template-columns: 1fr;
	}
}
footer-c {
	display: block;
}

.footer-title {
	font-size: var(--sec-fs-h3);
	font-weight: 600;
	letter-spacing: -0.01em;
	margin-bottom: var(--sec-space-2);
	color: var(--sec-text);
}

.footer-subtitle {
	font-size: var(--sec-fs-sm);
	line-height: var(--sec-lh-body);
	color: var(--sec-text-secondary);
	max-width: 28rem;
	margin-bottom: var(--sec-space-3);
}

.footer-meta {
	font-size: var(--sec-fs-xs);
	color: var(--sec-text-muted);
}

.footer-year {
	font-family: var(--sec-font-mono);
	font-size: var(--sec-fs-xs);
	color: var(--sec-text-muted);
}
notfound-v {
	position: relative;
	display: grid;
	justify-content: center;
	background: var(--sec-bg-0);
	overflow: hidden;
	min-height: 100%;
}

.nf-field {
	position: absolute;
	inset: 0;
	z-index: 0;
	opacity: 0.5;
}

.nf-vignette {
	position: absolute;
	inset: 0;
	z-index: 0;
	background: radial-gradient(50% 60% at 50% 45%, transparent, var(--sec-bg-0) 78%);
	pointer-events: none;
}

notfound-v > main {
	position: relative;
	z-index: 1;
	display: grid;
	align-items: center;
	justify-content: center;
	gap: var(--sec-space-6);
	width: 80vw;
	max-width: 40rem;
}

notfound-v > main > section {
	display: grid;
	gap: var(--sec-space-3);
	text-align: center;
}

notfound-v h2.main {
	font-size: var(--sec-fs-h1);
	font-weight: 600;
	color: var(--sec-text);
}

notfound-v p.shadow {
	color: var(--sec-text-secondary);
	font-size: var(--sec-fs-body);
	line-height: var(--sec-lh-body);
}

notfound-v > main > section.buttons {
	display: flex;
	justify-content: center;
	gap: var(--sec-space-3);
}

@media (max-width: 576px) {
	notfound-v > main > section.buttons {
		flex-direction: column;
	}
}

/*# sourceMappingURL=app-bundle.css.map */