/*
 * ZeroTrace™ — coming-soon page.
 * Design system carried over from the Pillar Delta index page:
 * black plane, Apple-HIG type pairs, 8px spacing steps, mono eyebrows,
 * pill buttons with sheen, spotlight cards, one reversed silver band.
 */
:root {
	--bg:             #000000;
	--text:           #F5F5F7;
	--text-secondary: #86868B;
	--surface:        #0B0B0D;
	--surface-raised: #1D1D1F;
	--border:         #1D1D1F;
	--border-strong:  #333336;
	--accent:         #2997FF;
	--warn:           #FF9F0A;

	--font-sans: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	--font-mono: ui-monospace, "SF Mono", SFMono-Regular, Menlo, Consolas, monospace;

	--space-1: 8px;
	--space-2: 16px;
	--space-3: 24px;
	--space-4: 32px;
	--space-6: 48px;
	--space-8: 64px;
	--space-12: 96px;
	--space-15: 120px;

	--radius-card: 18px;
	--radius-pill: 999px;

	--ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 96px; }

body {
	background: var(--bg);
	color: var(--text);
	font-family: var(--font-sans);
	font-size: 17px;
	line-height: 26px;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	min-height: 100vh;
	overflow-x: hidden;
}

::selection { background: var(--accent); color: #fff; }

/* ---------- Background layers ---------- */
.glow {
	position: absolute;
	top: -120px;
	left: 50%;
	transform: translateX(-50%);
	width: 800px;
	max-width: 100vw;
	height: 400px;
	background: rgba(29, 29, 31, 0.55);
	border-radius: 50%;
	filter: blur(120px);
	pointer-events: none;
	z-index: -2;
}
#gate-canvas {
	position: fixed;
	inset: 0;
	width: 100vw;
	height: 100vh;
	height: 100dvh;
	pointer-events: none;
	z-index: -1;
	opacity: 0.6;
}

/* ---------- Layout ---------- */
.container {
	max-width: 1104px;
	margin: 0 auto;
	padding-left: var(--space-3);
	padding-right: var(--space-3);
}

/* ---------- Navigation ---------- */
nav {
	position: fixed;
	top: 0; left: 0; right: 0;
	z-index: 50;
	background: rgba(0, 0, 0, 0.6);
	-webkit-backdrop-filter: blur(20px);
	backdrop-filter: blur(20px);
	border-bottom: 1px solid transparent;
	transition: border-color 0.5s ease, background-color 0.5s ease;
}
nav.scrolled {
	background: rgba(0, 0, 0, 0.75);
	border-bottom-color: var(--border);
}
.nav-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--space-2);
	min-height: 72px;
}
.nav-logo {
	display: inline-flex;
	align-items: center;
	min-height: 44px;
	text-decoration: none;
}
.nav-logo img {
	height: 34px;
	width: auto;
	display: block;
}
.nav-side {
	display: flex;
	align-items: center;
	gap: var(--space-3);
}
.nav-brandline {
	font-family: var(--font-mono);
	font-size: 12px;
	line-height: 16px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--text-secondary);
	text-decoration: none;
	transition: color 0.2s ease;
}
.nav-brandline:hover,
.nav-brandline:focus-visible { color: var(--text); }

/* ---------- Buttons ---------- */
.btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 12px 28px;
	border-radius: var(--radius-pill);
	font-family: var(--font-sans);
	font-size: 16px;
	line-height: 21px;
	font-weight: 600;
	text-decoration: none;
	text-align: center;
	overflow: hidden;
	transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s var(--ease-out), box-shadow 0.3s ease;
}
.btn:hover { transform: translateY(-1px) scale(1.02); }
.btn:active { transform: scale(0.97); }
.btn-primary {
	background: var(--text);
	color: #000;
	box-shadow: 0 0 30px rgba(255, 255, 255, 0.05);
}
.btn-primary:hover {
	background: #ffffff;
	box-shadow: 0 0 44px rgba(255, 255, 255, 0.14);
}
.btn-primary::after {
	content: "";
	position: absolute;
	top: 0; bottom: 0;
	left: -80%;
	width: 50%;
	background: linear-gradient(105deg, transparent, rgba(0, 0, 0, 0.07), transparent);
	transform: skewX(-20deg);
	transition: left 0.7s var(--ease-out);
}
.btn-primary:hover::after { left: 130%; }
.btn-secondary {
	background: var(--surface-raised);
	color: var(--text);
	border: 1px solid var(--border-strong);
}
.btn-secondary:hover {
	background: #2D2D2F;
	border-color: #444448;
}
.btn-nav {
	min-height: 44px;
	padding: 10px 24px;
	font-size: 15px;
	line-height: 20px;
	white-space: nowrap;
}
.cta-short { display: none; }
.visually-hidden {
	position: absolute;
	width: 1px; height: 1px;
	padding: 0; margin: -1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
	border: 0;
}
a:focus-visible, .btn:focus-visible {
	outline: 2px solid var(--accent);
	outline-offset: 3px;
	border-radius: 4px;
}
.btn:focus-visible { border-radius: var(--radius-pill); }

/* ---------- Hero ---------- */
.hero {
	padding-top: 152px;
	padding-bottom: var(--space-15);
}
.eyebrow {
	font-family: var(--font-mono);
	font-size: 13px;
	line-height: 18px;
	font-weight: 500;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--text-secondary);
	margin-bottom: var(--space-3);
}
.eyebrow .live {
	color: var(--warn);
}
.hero h1 {
	font-size: clamp(42px, 6.6vw, 72px);
	line-height: 1.06;
	font-weight: 700;
	letter-spacing: -0.025em;
	max-width: 940px;
	margin-bottom: var(--space-4);
}
.hero h1 .muted { color: var(--text-secondary); }
/* per-character blur-in reveal (spans injected by JS; text is intact without JS).
   .ch stays display:inline so line breaking is identical to the raw text. */
.hero h1 .ch {
	opacity: 0;
	filter: blur(0.12em);
	transition: opacity 0.45s ease, filter 0.6s ease;
	transition-delay: var(--chd, 0s);
}
.hero h1.lit .ch { opacity: 1; filter: blur(0); }
.hero .lede {
	font-size: 21px;
	line-height: 32px;
	font-weight: 500;
	color: var(--text-secondary);
	max-width: 760px;
	margin-bottom: var(--space-6);
}
.hero .lede strong { color: var(--text); font-weight: 600; }
.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-2);
	margin-bottom: var(--space-8);
}
.hud {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-1) var(--space-4);
	font-family: var(--font-mono);
	font-size: 13px;
	line-height: 18px;
	color: var(--text-secondary);
	border-top: 1px solid var(--border);
	padding-top: var(--space-3);
	max-width: 760px;
}
.hud span { color: var(--text); font-weight: 500; }
.hud .ok { color: var(--accent); }

/* ---------- Sections ---------- */
section { padding-bottom: var(--space-15); }
.section-head {
	max-width: 760px;
	margin-bottom: var(--space-6);
}
.section-title {
	font-size: clamp(30px, 3.6vw, 44px);
	line-height: 1.12;
	font-weight: 700;
	letter-spacing: -0.02em;
	margin-bottom: var(--space-3);
}
.section-title .muted { color: var(--text-secondary); }
.section-lede {
	font-size: 19px;
	line-height: 29px;
	color: var(--text-secondary);
	font-weight: 500;
}
.section-lede strong { color: var(--text); font-weight: 600; }

/* ---------- Pillars grid ---------- */
.pillars {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: var(--space-3);
}
.pillar {
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.022), transparent 24%),
		#09090B;
	border: 1px solid #232327;
	border-radius: var(--radius-card);
	padding: var(--space-4);
	box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
	transition: border-color 0.4s ease, box-shadow 0.4s ease;
}
.pillar:hover {
	border-color: #3A3A40;
	box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
}
.pillar .eyebrow { margin-bottom: var(--space-2); }
.pillar h3 {
	font-size: 22px;
	line-height: 28px;
	font-weight: 600;
	letter-spacing: -0.01em;
	margin-bottom: var(--space-2);
}
.pillar p {
	font-size: 17px;
	line-height: 26px;
	color: var(--text-secondary);
}
.pillar p strong { color: var(--text); font-weight: 600; }

/* ---------- Cursor spotlight ---------- */
.card-fx {
	position: relative;
	overflow: hidden;
	isolation: isolate;
}
.card-fx::before {
	content: "";
	position: absolute;
	inset: 0;
	opacity: 0;
	background: radial-gradient(240px circle at var(--mx, 50%) var(--my, 50%), rgba(255, 255, 255, 0.042), transparent 68%);
	transition: opacity 0.45s ease;
	pointer-events: none;
}
.card-fx:hover::before { opacity: 1; }
.card-fx::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	border-radius: inherit;
	background: linear-gradient(
		90deg,
		transparent 8%,
		rgba(255, 255, 255, 0.075) 38%,
		rgba(255, 255, 255, 0.025) 58%,
		transparent 84%
	) top / 100% 1px no-repeat;
	opacity: 0.7;
	pointer-events: none;
}
.card-fx > * { position: relative; z-index: 1; }

/* ---------- Silver band: how it works + FIG. 1 ---------- */
.band {
	position: relative;
	overflow: hidden;
	isolation: isolate;
	width: calc(100% - (var(--space-3) * 2));
	max-width: 1056px;
	margin: 0 auto var(--space-15);
	padding: var(--space-12) 0;
	background:
		radial-gradient(circle at 18% 0%, rgba(255, 255, 255, 0.46), transparent 38%),
		linear-gradient(135deg, rgba(218, 218, 223, 0.96), rgba(174, 174, 181, 0.92));
	color: #171719;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 40px;
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.62),
		inset 0 0 0 1px rgba(29, 29, 31, 0.1),
		inset 0 -28px 70px rgba(29, 29, 31, 0.07),
		0 28px 90px rgba(0, 0, 0, 0.34);
}
.band::before {
	content: "";
	position: absolute;
	top: -42%;
	right: -12%;
	width: min(58vw, 720px);
	aspect-ratio: 1;
	border: 1px solid rgba(29, 29, 31, 0.07);
	border-radius: 50%;
	box-shadow:
		0 0 0 42px rgba(29, 29, 31, 0.025),
		0 0 0 92px rgba(29, 29, 31, 0.018);
	pointer-events: none;
	z-index: -1;
}
.band-inner {
	max-width: 928px;
	margin: 0 auto;
	padding: 0 var(--space-4);
}
.band-kicker {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: var(--space-3);
	font-family: var(--font-mono);
	font-size: 13px;
	line-height: 18px;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #515154;
}
.band-kicker span {
	display: inline-block;
	width: 8px; height: 8px;
	background: #1D1D1F;
	border-radius: 50%;
	box-shadow: 13px 0 0 rgba(29, 29, 31, 0.28);
	margin-right: 13px;
}
.band h2 {
	font-size: clamp(58px, 8vw, 104px);
	line-height: 0.9;
	font-weight: 800;
	letter-spacing: -0.06em;
	margin-bottom: var(--space-4);
	color: #171719;
}
.band-lede {
	max-width: 620px;
	font-size: clamp(19px, 2vw, 24px);
	line-height: 1.45;
	font-weight: 500;
	color: #3F3F43;
	margin-bottom: var(--space-8);
}

/* FIG. 1 — self-drawing schematic */
.fig { width: 100%; }
.fig svg { width: 100%; height: auto; display: block; }
.fig .ink {
	stroke: #1b1b1e;
	fill: none;
	stroke-width: 1.7;
	stroke-linecap: round;
	stroke-linejoin: round;
}
.fig .thin { stroke-width: 1.1; stroke: rgba(27, 27, 30, 0.55); }
.fig .dashed { stroke-dasharray: 4 5 !important; }
.fig text {
	font-family: var(--font-mono);
	fill: #26262a;
	letter-spacing: 0.06em;
}
.fig .sub { fill: #33333A; }
.fig .draw {
	stroke-dasharray: 1;
	stroke-dashoffset: 1;
	transition: stroke-dashoffset 1.3s var(--ease-out);
	transition-delay: var(--d, 0s);
}
.fig.drawn .draw { stroke-dashoffset: 0; }
.fig .lbl {
	opacity: 0;
	transition: opacity 0.8s ease;
	transition-delay: var(--d, 0s);
}
.fig.drawn .lbl { opacity: 1; }
.fig-caption {
	margin-top: var(--space-3);
	font-family: var(--font-mono);
	font-size: 13px;
	line-height: 19px;
	letter-spacing: 0.04em;
	color: #33333A;
}

.band-steps {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: var(--space-6) var(--space-8);
	margin-top: var(--space-8);
}
.band-step {
	padding: var(--space-1) 0 var(--space-1) var(--space-4);
	border-left: 2px solid rgba(29, 29, 31, 0.16);
}
.band-step:hover { border-left-color: #1D1D1F; }
.band-step .idx {
	margin-bottom: 10px;
	font-family: var(--font-mono);
	font-size: 12px;
	line-height: 16px;
	font-weight: 600;
	letter-spacing: 0.12em;
	color: #33333A;
}
.band-step h3 {
	margin-bottom: 12px;
	font-size: clamp(22px, 2.4vw, 28px);
	line-height: 1.12;
	font-weight: 700;
	letter-spacing: -0.02em;
	color: #171719;
}
.band-step p {
	font-size: 17px;
	line-height: 1.55;
	font-weight: 500;
	color: #3A3A40;
}

/* ---------- EU AI Act ---------- */
.timeline {
	position: relative;
	max-width: 760px;
	padding-left: var(--space-4);
	margin-bottom: var(--space-8);
}
.timeline::before {
	content: "";
	position: absolute;
	left: 5px;
	top: 6px;
	bottom: 6px;
	width: 2px;
	background: var(--border);
}
.timeline .progress {
	position: absolute;
	left: 5px;
	top: 6px;
	bottom: 6px;
	width: 2px;
	background: linear-gradient(180deg, var(--accent), rgba(41, 151, 255, 0.25));
	transform-origin: top center;
	transform: scaleY(0);
	transition: transform 2.6s var(--ease-out) 0.2s;
}
.timeline.live .progress { transform: scaleY(1); }
.tl-item {
	position: relative;
	padding-bottom: var(--space-4);
}
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before {
	content: "";
	position: absolute;
	left: calc(-1 * var(--space-4) - 1px);
	top: 7px;
	width: 10px; height: 10px;
	border-radius: 50%;
	background: var(--bg);
	border: 2px solid var(--border-strong);
}
.tl-item.done::before { border-color: var(--accent); background: var(--accent); }
.tl-item.now::before {
	border-color: var(--warn);
	background: var(--warn);
	box-shadow: 0 0 0 0 rgba(255, 159, 10, 0.5);
	animation: pulse 2.4s ease-out infinite;
}
@keyframes pulse {
	0%   { box-shadow: 0 0 0 0 rgba(255, 159, 10, 0.45); }
	70%  { box-shadow: 0 0 0 12px rgba(255, 159, 10, 0); }
	100% { box-shadow: 0 0 0 0 rgba(255, 159, 10, 0); }
}
.tl-date {
	font-family: var(--font-mono);
	font-size: 13px;
	line-height: 18px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--accent);
	margin-bottom: 4px;
}
.tl-item.now .tl-date { color: var(--warn); }
.tl-item h3 {
	font-size: 19px;
	line-height: 26px;
	font-weight: 600;
	margin-bottom: 4px;
}
.tl-item p {
	font-size: 16px;
	line-height: 25px;
	color: var(--text-secondary);
	max-width: 620px;
}

/* obligations → capability rows */
.duties { display: grid; gap: var(--space-2); }
.duty {
	display: grid;
	grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
	gap: var(--space-2) var(--space-6);
	padding: var(--space-3) var(--space-4);
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 34%),
		#09090B;
	border: 1px solid #232327;
	border-radius: var(--radius-card);
	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.16);
	transition: border-color 0.3s ease;
}
.duty:hover { border-color: #3A3A40; }
.duty .art {
	font-family: var(--font-mono);
	font-size: 12px;
	line-height: 17px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--accent);
	margin-bottom: 6px;
}
.duty h3 {
	font-size: 18px;
	line-height: 25px;
	font-weight: 600;
}
.duty .obligation p {
	font-size: 15px;
	line-height: 23px;
	color: var(--text-secondary);
	margin-top: 6px;
}
.duty .answer {
	border-left: 1px solid var(--border-strong);
	padding-left: var(--space-4);
	align-self: center;
}
.duty .answer p {
	font-size: 16px;
	line-height: 25px;
	color: var(--text-secondary);
}
.duty .answer p strong { color: var(--text); font-weight: 600; }

/* fines strip */
.fines {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: var(--space-3);
	margin-top: var(--space-6);
}
.fine {
	padding: var(--space-4);
	border: 1px solid #232327;
	border-radius: var(--radius-card);
	background: #09090B;
}
.fine .amount {
	font-family: var(--font-mono);
	font-size: clamp(34px, 4.4vw, 52px);
	line-height: 1.05;
	font-weight: 700;
	letter-spacing: -0.02em;
	margin-bottom: var(--space-1);
}
.fine .amount .unit { color: var(--text-secondary); }
.fine p {
	font-size: 15px;
	line-height: 23px;
	color: var(--text-secondary);
}
.smallprint {
	margin-top: var(--space-4);
	font-size: 14px;
	line-height: 22px;
	color: var(--text-secondary);
	max-width: 760px;
}

/* ---------- Verticals ---------- */
.verticals {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: var(--space-3);
}
.vertical-link {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--space-2);
	min-height: 88px;
	padding: var(--space-3) var(--space-4);
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 34%),
		#09090B;
	border: 1px solid #232327;
	border-radius: var(--radius-card);
	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.16);
	text-decoration: none;
	color: var(--text);
	transition: border-color 0.3s ease, background-color 0.3s ease, transform 0.3s var(--ease-out);
}
.vertical-link:hover {
	border-color: #3A3A40;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 40%),
		#0C0C0F;
	transform: translateY(-2px);
}
.vertical-name {
	font-size: 17px;
	line-height: 22px;
	font-weight: 600;
}
.vertical-tag {
	display: block;
	font-family: var(--font-mono);
	font-size: 13px;
	line-height: 18px;
	color: var(--text-secondary);
	margin-top: 4px;
}
.vertical-arrow {
	color: var(--text-secondary);
	font-size: 20px;
	line-height: 25px;
	flex-shrink: 0;
	transition: color 0.3s ease, transform 0.3s var(--ease-out);
}
.vertical-link:hover .vertical-arrow {
	color: var(--text);
	transform: translate(3px, -3px);
}

/* ---------- Mission band ---------- */
#mission { padding-bottom: 0; }
.mission {
	border-top: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
	padding: var(--space-12) 0;
}
.mission blockquote {
	font-size: clamp(28px, 4vw, 40px);
	line-height: 1.25;
	font-weight: 600;
	letter-spacing: -0.02em;
	max-width: 880px;
}
.mission blockquote .muted { color: var(--text-secondary); }
.mission blockquote .mw {
	color: #3A3A3C;
	transition: color 0.45s ease;
}
.mission blockquote .mw.lit { color: var(--text); }

/* ---------- Coming soon ---------- */
.soon {
	padding: var(--space-15) 0;
	text-align: center;
}
.soon h2 {
	font-size: clamp(52px, 8vw, 96px);
	line-height: 1;
	font-weight: 800;
	letter-spacing: -0.05em;
	margin-bottom: var(--space-3);
}
.soon h2 .muted { color: var(--text-secondary); }
.soon p {
	font-size: 19px;
	line-height: 29px;
	color: var(--text-secondary);
	font-weight: 500;
	max-width: 620px;
	margin: 0 auto var(--space-6);
}
.soon-actions {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: var(--space-2);
	margin-bottom: var(--space-6);
}
.soon .hud {
	justify-content: center;
	max-width: none;
	border-top: none;
	padding-top: 0;
}

/* ---------- Footer ---------- */
footer { padding: var(--space-6) 0; border-top: 1px solid var(--border); }
.footer-inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: var(--space-3);
	font-size: 15px;
	line-height: 20px;
	font-weight: 500;
	color: var(--text-secondary);
}
.footer-links {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: var(--space-2);
}
footer a {
	display: inline-flex;
	align-items: center;
	min-height: 44px;
	color: var(--text-secondary);
	text-decoration: none;
	transition: color 0.3s ease;
}
footer a:hover { color: var(--text); }
.footer-tm {
	font-size: 13px;
	line-height: 18px;
}
.linkedin-link {
	justify-content: center;
	min-width: 44px;
}
.linkedin-link svg { display: block; fill: currentColor; }

/* ---------- Motion ---------- */
.fade-in {
	animation: fadeIn 1.2s var(--ease-out) forwards;
	opacity: 0;
}
.delay-1 { animation-delay: 0.35s; }
.delay-2 { animation-delay: 0.55s; }
@keyframes fadeIn {
	from { opacity: 0; transform: translateY(16px); }
	to   { opacity: 1; transform: translateY(0); }
}
.sr-init {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
	transition-delay: var(--sr-delay, 0s);
}
.sr-in {
	opacity: 1;
	transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	.fade-in { animation: none; opacity: 1; }
	.btn, .btn-primary::after, .vertical-link, .vertical-arrow, .pillar, footer a, nav { transition: none; }
	.btn:hover, .vertical-link:hover { transform: none; }
	.sr-init { opacity: 1; transform: none; transition: none; }
	.card-fx::before { display: none; }
	.hero h1 .ch { opacity: 1; filter: none; transition: none; }
	.fig .draw { stroke-dashoffset: 0; transition: none; }
	.fig .lbl { opacity: 1; transition: none; }
	.timeline .progress { transform: scaleY(1); transition: none; }
	.tl-item.now::before { animation: none; }
	#gate-canvas { display: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
	.hero { padding-top: 112px; padding-bottom: var(--space-12); }
	section { padding-bottom: var(--space-12); }
	.nav-brandline { display: none; }
	.pillars, .verticals, .fines { grid-template-columns: 1fr; }
	.band {
		margin: 0 auto var(--space-12);
		padding: var(--space-8) 0;
		border-radius: 28px;
	}
	.band::before { top: -10%; right: -48%; width: 420px; }
	.band-inner { padding: 0 var(--space-3); }
	.band-steps { grid-template-columns: 1fr; gap: var(--space-4); }
	/* keep the schematic legible: scroll it sideways instead of shrinking it */
	.fig { overflow-x: auto; -webkit-overflow-scrolling: touch; }
	.fig svg { min-width: 720px; }
	.duty { grid-template-columns: 1fr; }
	.duty .answer {
		border-left: none;
		border-top: 1px solid var(--border-strong);
		padding-left: 0;
		padding-top: var(--space-2);
	}
	.hero-actions .btn, .soon-actions .btn { width: 100%; }
	.mission { padding: var(--space-8) 0; }
	.footer-inner {
		flex-direction: column-reverse;
		align-items: center;
		gap: var(--space-2);
		text-align: center;
	}
	.footer-links { width: 100%; justify-content: center; gap: var(--space-1) var(--space-3); }
}
@media (max-width: 430px) {
	.btn-nav { padding: 10px 16px; font-size: 14px; }
	.cta-long { display: none; }
	.cta-short { display: inline; }
}
@media (max-width: 360px) {
	.nav-logo img { height: 28px; }
	nav .container { padding-left: 16px; padding-right: 16px; }
	.nav-inner { gap: var(--space-1); }
	.btn-nav { padding: 10px 12px; }
}
