/* =====================================================
   NONFORM — Web Renovation & AI Implementation
   Clean, dark, technical + friendly. DM Sans / DM Mono.
   ===================================================== */

/* ---------------------------------------------------
   Fonts (local)
   --------------------------------------------------- */
@font-face {
	font-family: "DM Sans";
	src: url("../fonts/dm_sans/static/DMSans-Regular.ttf") format("truetype");
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: "DM Sans";
	src: url("../fonts/dm_sans/static/DMSans-Medium.ttf") format("truetype");
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: "DM Sans";
	src: url("../fonts/dm_sans/static/DMSans-SemiBold.ttf") format("truetype");
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: "DM Sans";
	src: url("../fonts/dm_sans/static/DMSans-Bold.ttf") format("truetype");
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: "DM Mono";
	src: url("../fonts/dm_mono/DMMono-Regular.ttf") format("truetype");
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: "DM Mono";
	src: url("../fonts/dm_mono/DMMono-Medium.ttf") format("truetype");
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}

/* GC Nordix — used exclusively for the NONFORM logo/wordmark */
@font-face {
	font-family: "GC Nordix";
	src: url("../fonts/gc_nordix/WOFF/GCNordix-Regular.woff2") format("woff2"),
	     url("../fonts/gc_nordix/WOFF/GCNordix-Regular.woff") format("woff");
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: "GC Nordix";
	src: url("../fonts/gc_nordix/WOFF/GCNordix-Medium.woff2") format("woff2"),
	     url("../fonts/gc_nordix/WOFF/GCNordix-Medium.woff") format("woff");
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: "GC Nordix";
	src: url("../fonts/gc_nordix/WOFF/GCNordix-SemiBold.woff2") format("woff2"),
	     url("../fonts/gc_nordix/WOFF/GCNordix-SemiBold.woff") format("woff");
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: "GC Nordix";
	src: url("../fonts/gc_nordix/WOFF/GCNordix-Bold.woff2") format("woff2"),
	     url("../fonts/gc_nordix/WOFF/GCNordix-Bold.woff") format("woff");
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

/* ---------------------------------------------------
   Tokens
   --------------------------------------------------- */
:root {
	--bg: #0d0d0d;
	--panel: #141414;
	--panel-2: #191919;
	--tile: #1c1c1c;
	--text: #f5f5f5;
	--muted: #8c8c8c;
	--faint: #5a5a5a;
	--accent: #ffffff;
	--accent-ink: #0a0a0a;
	--border: rgba(255, 255, 255, 0.1);
	--border-strong: rgba(255, 255, 255, 0.22);
	--sans: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	--mono: "DM Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
	--logo: "GC Nordix", "DM Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
	--maxw: 1240px;
	--ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------------------------------------------------
   Reset / base
   --------------------------------------------------- */
*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background-color: #111111;
	color: var(--text);
	font-family: var(--sans);
	font-size: 17px;
	line-height: 1.6;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

img {
	max-width: 100%;
	display: block;
}

a {
	color: inherit;
	text-decoration: none;
}

h1,
h2,
h3,
h4,
p {
	margin: 0;
}

::selection {
	background: var(--accent);
	color: var(--accent-ink);
}

/* ---------------------------------------------------
   Static TV noise background (ambient grain overlay)
   --------------------------------------------------- */
.static-bg {
	position: absolute;
	inset: 0;
	background: transparent url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E") repeat 0 0;
	background-repeat: repeat;
	animation: bg-animation 0.2s infinite;
	opacity: 0.16;
	visibility: visible;
	pointer-events: none;
	z-index: -1;
}

@keyframes bg-animation {
	0% { background-position: 0 0; }
	10% { background-position: -15px -15px; }
	20% { background-position: -30px 15px; }
	30% { background-position: 15px -30px; }
	40% { background-position: -15px 45px; }
	50% { background-position: -30px 15px; }
	60% { background-position: 45px 0; }
	70% { background-position: 0 30px; }
	80% { background-position: -45px 0; }
	90% { background-position: 30px 15px; }
	100% { background-position: 15px 0; }
}

@media (prefers-reduced-motion: reduce) {
	.static-bg { animation: none; }
}

/* ---------------------------------------------------
   Layout helpers
   --------------------------------------------------- */
.page {
	position: relative;
	z-index: 1;
	background: var(--bg);
}

.wrap {
	width: 100%;
	max-width: var(--maxw);
	margin: 0 auto;
	padding: 0 28px;
}

.eyebrow {
	font-family: var(--mono);
	font-size: 0.72rem;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	color: var(--muted);
}

/* ---------------------------------------------------
   Header (peekaboo)
   --------------------------------------------------- */
header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 100;
	transition: transform 0.45s var(--ease), background-color 0.35s ease, border-color 0.35s ease, backdrop-filter 0.35s ease;
	border-bottom: 1px solid transparent;
}

header.scrolled {
	background: rgba(13, 13, 13, 0.72);
	backdrop-filter: blur(14px) saturate(140%);
	-webkit-backdrop-filter: blur(14px) saturate(140%);
	border-bottom-color: var(--border);
}

header.nav-hidden {
	transform: translateY(-100%);
}

header nav {
	max-width: var(--maxw);
	margin: 0 auto;
	padding: 18px 28px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.brand {
	display: inline-flex;
	align-items: center;
}

.brand__logo {
	height: 1.25rem;
	width: auto;
	display: block;
}

/* Buttons */
.btn {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	font-family: var(--mono);
	font-size: 0.82rem;
	letter-spacing: 0.04em;
	line-height: 1;
	padding: 13px 20px;
	border-radius: 999px;
	border: 1px solid var(--border-strong);
	background: transparent;
	color: var(--text);
	cursor: pointer;
	transition: transform 0.22s var(--ease), background-color 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}
.btn:hover {
	transform: translateY(-2px);
}
.btn--solid {
	background: var(--accent);
	color: var(--accent-ink);
	border-color: var(--accent);
	font-weight: 500;
}
.btn--solid:hover {
	background: #e6e6e6;
}
.btn__arrow {
	width: 7px;
	height: 7px;
	border-top: 1.5px solid currentColor;
	border-right: 1.5px solid currentColor;
	transform: rotate(45deg);
	transition: transform 0.22s var(--ease);
}
.btn:hover .btn__arrow {
	transform: rotate(45deg) translate(1px, -1px);
}

/* ---------------------------------------------------
   Hero
   --------------------------------------------------- */
.hero {
	min-height: 100svh;
	display: flex;
	align-items: center;
	padding: 140px 0 100px;
}

.hero__inner {
	max-width: 980px;
}

.hero__eyebrow {
	display: inline-block;
	margin-bottom: 30px;
}

.hero h1 {
	font-weight: 500;
	font-size: clamp(2rem, 5.4vw, 4.4rem);
	line-height: 1.08;
	letter-spacing: -0.02em;
}

.hero h1 .dim {
	color: var(--muted);
}

.hero__sub {
	margin-top: 30px;
	max-width: 620px;
	color: var(--muted);
	font-size: clamp(1rem, 1.4vw, 1.18rem);
}

.hero__actions {
	margin-top: 40px;
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
}

.hero__scroll {
	margin-top: 74px;
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-family: var(--mono);
	font-size: 0.72rem;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	color: var(--faint);
}
.hero__scroll span.line {
	width: 46px;
	height: 1px;
	background: var(--faint);
	position: relative;
	overflow: hidden;
}
.hero__scroll span.line::after {
	content: "";
	position: absolute;
	inset: 0;
	background: var(--accent);
	transform: translateX(-100%);
	animation: scroll-line 2.4s var(--ease) infinite;
}
@keyframes scroll-line {
	0% { transform: translateX(-100%); }
	60%, 100% { transform: translateX(100%); }
}

/* ---------------------------------------------------
   Gap section — HUMAN [image] TECHNOLOGY
   --------------------------------------------------- */
.gap {
	position: relative;
	height: 260vh;
}

.gap__sticky {
	position: sticky;
	top: 0;
	height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.gap__words {
	position: relative;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	pointer-events: none;
}

.gap__word {
	font-weight: 700;
	font-size: clamp(2.4rem, 11vw, 9rem);
	line-height: 0.95;
	letter-spacing: -0.03em;
	white-space: nowrap;
	will-change: transform;
}
.gap__word--l {
	color: var(--text);
}
.gap__word--r {
	color: var(--muted);
}

.gap__media {
	position: absolute;
	top: 50%;
	left: 50%;
	width: min(46vw, 560px);
	aspect-ratio: 4 / 3;
	transform: translate(-50%, -50%) scale(0.55);
	transform-origin: center;
	border-radius: 14px;
	overflow: hidden;
	border: 1px solid var(--border);
	will-change: transform;
	z-index: 2;
}
.gap__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.gap__media::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(13, 13, 13, 0) 40%, rgba(13, 13, 13, 0.5));
}

.gap__lede {
	position: relative;
	max-width: 720px;
	margin: 40px auto 0;
	padding: 0 28px;
	text-align: center;
	color: var(--muted);
	font-size: clamp(1.05rem, 1.8vw, 1.4rem);
	line-height: 1.5;
	z-index: 3;
	will-change: transform, opacity;
}
.gap__lede strong {
	color: var(--text);
	font-weight: 500;
}

/* ---------------------------------------------------
   Process stack (fourmula list__wrap) — sticky 100vh cards
   --------------------------------------------------- */
.stack {
	position: relative;
	padding-top: 12vh;
}

.stack__head {
	text-align: center;
	margin-bottom: 4vh;
}
.stack__head h2 {
	margin-top: 14px;
	font-weight: 500;
	font-size: clamp(1.8rem, 4vw, 3rem);
	letter-spacing: -0.02em;
}

.stack__card {
	position: sticky;
	top: 0;
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	will-change: transform;
}

.stack__panel {
	position: relative;
	width: min(92vw, 1100px);
	height: min(74vh, 660px);
	border-radius: 22px;
	border: 1px solid var(--border);
	background: var(--panel);
	overflow: hidden;
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	box-shadow: 0 40px 90px rgba(0, 0, 0, 0.55);
}

.stack__body {
	padding: clamp(28px, 4vw, 60px);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.stack__num {
	font-family: var(--mono);
	font-size: 0.8rem;
	letter-spacing: 0.2em;
	color: var(--muted);
}

.stack__title {
	font-weight: 600;
	font-size: clamp(2rem, 4.4vw, 3.4rem);
	line-height: 1.02;
	letter-spacing: -0.02em;
	margin-top: 22px;
}

.stack__desc {
	margin-top: 18px;
	max-width: 44ch;
	color: var(--muted);
	font-size: 1.02rem;
}

.stack__tags {
	margin-top: 28px;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}
.stack__tags span {
	font-family: var(--mono);
	font-size: 0.7rem;
	letter-spacing: 0.06em;
	color: var(--muted);
	padding: 7px 12px;
	border: 1px solid var(--border);
	border-radius: 999px;
}

.stack__visual {
	position: relative;
	background: var(--panel-2);
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}
.stack__ghost {
	font-weight: 700;
	font-size: clamp(6rem, 18vw, 15rem);
	line-height: 1;
	color: rgba(255, 255, 255, 0.04);
	user-select: none;
}
.stack__visual img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.5;
}




/* ---------------------------------------------------
   Approach (bymonolog process) — big numbered reveal list
   --------------------------------------------------- */
.approach {
	padding: 16vh 0 12vh;
}
.approach__head {
	max-width: 720px;
	margin-bottom: 60px;
}
.approach__head h2 {
	margin-top: 16px;
	font-weight: 500;
	font-size: clamp(1.9rem, 4.2vw, 3.2rem);
	letter-spacing: -0.02em;
}

.plist {
	border-top: 1px solid var(--border);
}
.pitem {
	display: grid;
	grid-template-columns: 90px 1fr;
	gap: 24px;
	align-items: start;
	padding: 42px 0;
	border-bottom: 1px solid var(--border);
	opacity: 0;
	transform: translateY(36px);
	transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.pitem.in {
	opacity: 1;
	transform: none;
}
.pitem__num {
	font-family: var(--mono);
	font-size: 0.9rem;
	color: var(--muted);
	padding-top: 10px;
}
.pitem__title {
	font-weight: 500;
	font-size: clamp(1.5rem, 3.4vw, 2.6rem);
	letter-spacing: -0.02em;
	line-height: 1.05;
	transition: color 0.3s ease;
}
.pitem__desc {
	margin-top: 14px;
	max-width: 60ch;
	color: var(--muted);
}
.pitem:hover .pitem__title {
	color: #fff;
}

/* ---------------------------------------------------
   Pricing
   --------------------------------------------------- */
.pricing {
	padding: 16vh 0 12vh;
}
.pricing__head {
	max-width: 760px;
	margin-bottom: 56px;
}
.pricing__head h2 {
	margin-top: 16px;
	font-weight: 500;
	font-size: clamp(1.9rem, 4.2vw, 3.2rem);
	letter-spacing: -0.02em;
}
.pricing__head p {
	margin-top: 18px;
	color: var(--muted);
	max-width: 56ch;
}

.pricing__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	align-items: stretch;
}

.price-card {
	position: relative;
	display: flex;
	flex-direction: column;
	padding: 34px 30px 30px;
	border: 1px solid var(--border);
	border-radius: 20px;
	background: var(--panel);
	cursor: pointer;
	opacity: 0;
	transform: translateY(34px);
	transition: opacity 0.7s var(--ease), transform 0.7s var(--ease), border-color 0.3s ease, background-color 0.3s ease;
}
.price-card.in {
	opacity: 1;
	transform: none;
}
.price-card:hover {
	border-color: var(--border-strong);
}
.price-card:focus-visible {
	outline: 2px solid var(--accent);
	outline-offset: 3px;
}
.price-card--featured:focus-visible {
	outline-color: var(--accent-ink);
}

.price-card--featured {
	background: var(--accent);
	color: var(--accent-ink);
	border-color: var(--accent);
}
.price-card--featured .price-card__tier,
.price-card--featured .price-card__per,
.price-card--featured .price-card__fit,
.price-card--featured .price-card__desc {
	color: rgba(10, 10, 10, 0.66);
}
.price-card--featured .price-card__feat li {
	color: rgba(10, 10, 10, 0.9);
}
.price-card--featured .price-card__feat svg {
	stroke: var(--accent-ink);
}

.price-card__badge {
	position: absolute;
	top: 20px;
	right: 20px;
	font-family: var(--mono);
	font-size: 0.62rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	padding: 6px 10px;
	border-radius: 999px;
	background: var(--accent-ink);
	color: var(--accent);
}

.price-card__tier {
	font-family: var(--mono);
	font-size: 0.78rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--muted);
}

.price-card__price {
	margin-top: 16px;
	display: flex;
	align-items: baseline;
	gap: 8px;
}
.price-card__amount {
	font-weight: 600;
	font-size: clamp(2.2rem, 4vw, 2.9rem);
	letter-spacing: -0.02em;
	line-height: 1;
}
.price-card__per {
	font-family: var(--mono);
	font-size: 0.8rem;
	color: var(--muted);
}

.price-card__fit {
	margin-top: 16px;
	font-family: var(--mono);
	font-size: 0.72rem;
	letter-spacing: 0.04em;
	line-height: 1.45;
	color: var(--faint);
}

.price-card__desc {
	margin-top: 10px;
	font-size: 0.96rem;
	color: var(--muted);
	min-height: 4.2em;
}

.price-card__feat {
	list-style: none;
	margin: 24px 0 0;
	padding: 24px 0 0;
	border-top: 1px solid var(--border);
	display: flex;
	flex-direction: column;
	gap: 13px;
	flex: 1;
}
.price-card--featured .price-card__feat {
	border-top-color: rgba(10, 10, 10, 0.15);
}
.price-card__feat li {
	display: flex;
	align-items: flex-start;
	gap: 11px;
	font-size: 0.94rem;
	line-height: 1.4;
}
.price-card__feat svg {
	flex: none;
	width: 15px;
	height: 15px;
	margin-top: 3px;
	fill: none;
	stroke: var(--accent);
	stroke-width: 2.4;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.price-card .btn {
	margin-top: 28px;
	justify-content: center;
	width: 100%;
}
.price-card:hover .btn {
	transform: translateY(-2px);
}
.price-card--featured .btn {
	background: var(--accent-ink);
	color: var(--accent);
	border-color: var(--accent-ink);
}
.price-card--featured .btn:hover {
	background: #000;
}

.pricing__note {
	margin-top: 28px;
	text-align: center;
	font-family: var(--mono);
	font-size: 0.76rem;
	letter-spacing: 0.04em;
	color: var(--faint);
}

/* ---------------------------------------------------
   CTA band
   --------------------------------------------------- */
.cta {
	padding: 12vh 0 20vh;
	text-align: center;
}
.cta h2 {
	font-weight: 500;
	font-size: clamp(2rem, 6vw, 4.2rem);
	letter-spacing: -0.03em;
	line-height: 1.05;
	max-width: 16ch;
	margin: 20px auto 0;
}
.cta__actions {
	margin-top: 40px;
	display: flex;
	justify-content: center;
	gap: 14px;
	flex-wrap: wrap;
}

/* ---------------------------------------------------
   Legal (terms, privacy, cookies)
   --------------------------------------------------- */
.legal {
	padding: 22vh 0 14vh;
}
.legal__wrap {
	max-width: 900px;
}
.legal__head h1 {
	margin-top: 16px;
	font-weight: 500;
	font-size: clamp(2rem, 5vw, 3.4rem);
	letter-spacing: -0.02em;
	line-height: 1.1;
}
.legal__meta {
	margin-top: 16px;
	font-family: var(--mono);
	font-size: 0.76rem;
	letter-spacing: 0.04em;
	color: var(--faint);
}
.legal__intro {
	margin-top: 22px;
	color: var(--muted);
	max-width: 68ch;
}
.legal__intro a {
	color: var(--text);
	text-decoration: underline;
	text-underline-offset: 3px;
	text-decoration-color: var(--border-strong);
}
.legal__toc {
	margin: 44px 0 8px;
	padding: 26px 30px;
	border: 1px solid var(--border);
	border-radius: 16px;
	background: var(--panel);
}
.legal__toc h2 {
	font-family: var(--mono);
	font-size: 0.72rem;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--muted);
	margin-bottom: 18px;
}
.legal__toc ol {
	margin: 0;
	padding: 0;
	list-style: none;
	counter-reset: toc;
	columns: 2;
	column-gap: 44px;
}
.legal__toc li {
	counter-increment: toc;
	margin-bottom: 11px;
	break-inside: avoid;
}
.legal__toc a {
	color: var(--muted);
	font-size: 0.94rem;
	transition: color 0.2s ease;
}
.legal__toc a::before {
	content: counter(toc, decimal-leading-zero);
	font-family: var(--mono);
	font-size: 0.74rem;
	color: var(--faint);
	margin-right: 10px;
}
.legal__toc a:hover {
	color: var(--text);
}
.legal__block {
	margin-top: 46px;
	scroll-margin-top: 100px;
}
.legal__block > h2 {
	font-weight: 500;
	font-size: clamp(1.3rem, 2.6vw, 1.85rem);
	letter-spacing: -0.01em;
	padding-bottom: 16px;
	border-bottom: 1px solid var(--border);
}
.legal__block h3 {
	margin-top: 26px;
	font-weight: 600;
	font-size: 1.02rem;
	color: var(--text);
}
.legal__block p,
.legal__block li {
	color: var(--muted);
	margin-top: 14px;
	font-size: 0.98rem;
	line-height: 1.7;
}
.legal__block ul {
	margin: 6px 0 0;
	padding-left: 20px;
}
.legal__block li {
	margin-top: 9px;
}
.legal__block strong {
	color: var(--text);
	font-weight: 600;
}
.legal__block a {
	color: var(--text);
	text-decoration: underline;
	text-underline-offset: 3px;
	text-decoration-color: var(--border-strong);
}
.legal__toplink {
	display: inline-block;
	margin-top: 22px;
	font-family: var(--mono);
	font-size: 0.7rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--faint);
	transition: color 0.2s ease;
}
.legal__toplink:hover {
	color: var(--text);
}
@media (max-width: 640px) {
	.legal__toc ol {
		columns: 1;
	}
}

/* ---------------------------------------------------
   Parallax reveal footer
   --------------------------------------------------- */
.site-footer {
	position: fixed;
	left: 0;
	bottom: 0;
	width: 100%;
	min-height: 100vh;
	z-index: 0;
	background: #070707;
	color: var(--text);
	display: flex;
	align-items: center;
}
.site-footer__inner {
	width: 100%;
	max-width: var(--maxw);
	margin: 0 auto;
	padding: 90px 28px 48px;
}
.site-footer__grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr;
	gap: 50px;
	align-items: start;
}
.site-footer h2 {
	font-weight: 500;
	font-size: clamp(1.6rem, 3.4vw, 2.6rem);
	letter-spacing: -0.02em;
	line-height: 1.1;
	max-width: 18ch;
}
.site-footer__copy {
	margin-top: 22px;
	color: var(--muted);
	max-width: 52ch;
}
.site-footer__aside {
	display: flex;
	flex-direction: column;
	gap: 22px;
}
.site-footer__label {
	font-family: var(--mono);
	font-size: 0.72rem;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--faint);
}
.site-footer__links {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.site-footer__links a {
	color: var(--muted);
	transition: color 0.2s ease;
	width: fit-content;
}
.site-footer__links a:hover {
	color: var(--text);
}
.site-footer__bottom {
	margin-top: 70px;
	padding-top: 26px;
	border-top: 1px solid var(--border);
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
	flex-wrap: wrap;
	font-family: var(--mono);
	font-size: 0.74rem;
	color: var(--faint);
	letter-spacing: 0.04em;
}
.site-footer__bottom a {
	color: var(--muted);
	transition: color 0.2s ease;
}
.site-footer__bottom a:hover {
	color: var(--text);
}
.site-footer__mark {
	margin-top: 40px;
	user-select: none;
	pointer-events: none;
}

.site-footer__mark img {
	width: 100%;
	max-width: 100%;
	height: auto;
	display: block;
	opacity: 0.05;
}

/* The spacer reserves room so the fixed footer reveals underneath */
.footer-spacer {
	position: relative;
	z-index: 0;
}

/* ---------------------------------------------------
   Responsive
   --------------------------------------------------- */
@media (max-width: 900px) {
	.stack__panel {
		grid-template-columns: 1fr;
		height: min(80vh, 640px);
	}
	/* Keep the visual as a subtle full-card backdrop so cards don't feel empty */
	.stack__visual {
		position: absolute;
		inset: 0;
		z-index: 0;
		justify-content: flex-end;
		align-items: flex-end;
	}
	.stack__visual::after {
		content: "";
		position: absolute;
		inset: 0;
		background: linear-gradient(180deg, var(--panel) 0%, rgba(0, 0, 0, 0.55) 55%, rgba(0, 0, 0, 0.85) 100%);
	}
	.stack__visual img {
		opacity: 0.22;
	}
	.stack__ghost {
		position: relative;
		z-index: 1;
		padding: 0 clamp(18px, 5vw, 40px) clamp(10px, 3vw, 24px) 0;
		font-size: clamp(6rem, 30vw, 12rem);
		color: rgba(255, 255, 255, 0.06);
	}
	.stack__body {
		position: relative;
		z-index: 1;
	}
	.site-footer__grid {
		grid-template-columns: 1fr;
		gap: 30px;
	}
	/* Keep the reveal, but the footer must fit within the viewport or a
	   bottom-pinned fixed element can never show its top. Use the small viewport
	   height (accounts for mobile toolbars), anchor content to the top, and
	   compact the spacing so everything stays on screen. */
	.site-footer {
		min-height: 100svh;
		align-items: flex-start;
	}
	.site-footer__inner {
		padding: 72px 22px 36px;
	}
	.site-footer__bottom {
		margin-top: 44px;
	}
	.site-footer__mark {
		margin-top: 26px;
	}
	.approach .pitem {
		grid-template-columns: 60px 1fr;
		gap: 16px;
	}
	.pricing__grid {
		grid-template-columns: 1fr;
		max-width: 480px;
		margin: 0 auto;
	}
}

@media (max-width: 620px) {
	body {
		font-size: 16px;
	}
	header nav {
		padding: 14px 20px;
	}
	.wrap {
		padding: 0 20px;
	}
	.btn {
		padding: 12px 16px;
	}
	.gap__media {
		width: 66vw;
	}
	/* On phones the footer is tightest against the viewport, so trim further and
	   drop the tall decorative wordmark to guarantee the reveal shows it all. */
	.site-footer__inner {
		padding: 64px 20px 30px;
	}
	.site-footer__grid {
		gap: 24px;
	}
	.site-footer h2 {
		font-size: clamp(1.4rem, 6vw, 1.9rem);
	}
	.site-footer__copy {
		margin-top: 16px;
	}
	.site-footer__bottom {
		margin-top: 32px;
		padding-top: 20px;
	}
	.site-footer__mark {
		display: none;
	}
}
