/* =========================================================================
   STRATEG - main.css
   Дизајн систем и сите секции. Без градител на страници, без jQuery.
   Најмала големина на текст: 13px. Ознаките: 14px.
   ========================================================================= */

/* -------------------------------------------------------------------------
   1. Токени
   ------------------------------------------------------------------------- */

:root {
	--void: #04070A;
	--panel: #0A1017;
	--panel-2: #101923;
	--bone: #EAF4F8;
	--bone-80: rgba(234, 244, 248, .80);
	--bone-60: rgba(234, 244, 248, .60);
	--bone-40: rgba(234, 244, 248, .40);
	--cy: #2FD9F5;
	--cy-2: #7FF0FF;
	--cy-3: #0EA5C6;
	--blu: #2C7BFF;
	--steel: #4E626F;
	--amber: #FFC15E;
	--red: #FF7A66;
	--line: rgba(234, 244, 248, .09);
	--line-s: rgba(234, 244, 248, .17);

	--ff-h: "Inter Tight", "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
	--ff-b: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
	--ff-m: "IBM Plex Mono", ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;

	--wrap: 1180px;
	--wrap-n: 840px;
	--gut: clamp(20px, 4vw, 48px);
	--sec-y: clamp(88px, 11vw, 152px);
	--r: 16px;
	--r-sm: 10px;

	--ease: cubic-bezier(.22, 1, .36, 1);
	--hdr-h: 68px;
}

/* -------------------------------------------------------------------------
   2. Основа
   ------------------------------------------------------------------------- */

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

html {
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
	scroll-padding-top: calc(var(--hdr-h) + 20px);
}

body {
	margin: 0;
	background: var(--void);
	color: var(--bone);
	font-family: var(--ff-b);
	font-size: clamp(16px, 1.1vw, 17.5px);
	font-weight: 400;
	line-height: 1.62;
	letter-spacing: -.002em;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
	text-rendering: optimizeLegibility;
}

body.is-locked { overflow: hidden; }

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

a { color: inherit; text-decoration: none; }

button, input, select, textarea {
	font: inherit;
	color: inherit;
}

:focus-visible {
	outline: 2px solid var(--cy);
	outline-offset: 3px;
	border-radius: 4px;
}

::selection {
	background: rgba(47, 217, 245, .28);
	color: #fff;
}

.skip {
	position: fixed;
	top: 10px;
	left: 10px;
	z-index: 200;
	padding: 10px 16px;
	background: var(--cy);
	color: #04070A;
	font-family: var(--ff-m);
	font-size: 14px;
	border-radius: 8px;
	transform: translateY(-160%);
	transition: transform .25s var(--ease);
}
.skip:focus { transform: translateY(0); }

/* -------------------------------------------------------------------------
   3. Типографија
   ------------------------------------------------------------------------- */

.h1 {
	margin: 0;
	font-family: var(--ff-h);
	font-size: clamp(36px, 4.5vw, 63px);
	font-weight: 900;
	line-height: 1.04;
	letter-spacing: -.012em;
}

.h2 {
	margin: 0;
	font-family: var(--ff-h);
	font-size: clamp(32px, 4.8vw, 64px);
	font-weight: 900;
	line-height: 1.05;
	letter-spacing: -.014em;
}

.h3 {
	margin: 0;
	font-family: var(--ff-h);
	font-size: clamp(19px, 1.9vw, 25px);
	font-weight: 700;
	line-height: 1.22;
	letter-spacing: -.008em;
}

.lead {
	margin: 0;
	font-size: clamp(17.5px, 1.45vw, 21px);
	line-height: 1.56;
	color: var(--bone-80);
}

.grad {
	background: linear-gradient(100deg, var(--cy-2) 0%, var(--cy) 38%, var(--blu) 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	-webkit-text-fill-color: transparent;
}

.kicker {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-family: var(--ff-m);
	font-size: 14px;
	font-weight: 500;
	letter-spacing: .11em;
	text-transform: uppercase;
	color: var(--cy);
}
.kicker--sm { font-size: 14px; color: var(--bone-80); letter-spacing: .09em; }
.kicker--dark { color: var(--cy-3); }

.kicker__num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 34px;
	height: 22px;
	padding: 0 7px;
	border: 1px solid var(--line-s);
	border-radius: 6px;
	background: rgba(47, 217, 245, .07);
	font-size: 13px;
	letter-spacing: .06em;
	color: var(--bone-80);
}

.tagline {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin: 0 0 22px;
	padding: 7px 14px 7px 12px;
	border: 1px solid var(--line-s);
	border-radius: 999px;
	background: rgba(10, 16, 23, .6);
	font-family: var(--ff-m);
	font-size: 14px;
	letter-spacing: .04em;
	color: var(--bone-80);
}
.tagline__dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--cy);
	box-shadow: 0 0 0 4px rgba(47, 217, 245, .16);
	animation: pulse 2.6s var(--ease) infinite;
}

@keyframes pulse {
	0%, 100% { box-shadow: 0 0 0 3px rgba(47, 217, 245, .18); }
	50% { box-shadow: 0 0 0 7px rgba(47, 217, 245, .04); }
}

/* -------------------------------------------------------------------------
   4. Распоред
   ------------------------------------------------------------------------- */

.wrap {
	width: 100%;
	max-width: var(--wrap);
	margin-inline: auto;
	padding-inline: var(--gut);
}
.wrap--narrow { max-width: var(--wrap-n); }

.sec {
	position: relative;
	padding-block: var(--sec-y);
	border-top: 1px solid var(--line);
}
.sec--page { padding-block: calc(var(--hdr-h) + 72px) 96px; }

.sechead { max-width: 780px; margin-bottom: clamp(40px, 5vw, 64px); }
.sechead .h2 { margin: 18px 0 20px; }
.sechead--center { margin-inline: auto; text-align: center; }
.sechead--center .kicker { justify-content: center; }

.grid { display: grid; gap: 20px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }

/* -------------------------------------------------------------------------
   5. Копчиња
   ------------------------------------------------------------------------- */

.btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	padding: 12px 20px;
	border: 1px solid transparent;
	border-radius: 10px;
	background: linear-gradient(180deg, var(--cy-2), var(--cy) 45%, var(--cy-3));
	color: #03202A;
	font-family: var(--ff-b);
	font-size: 15px;
	font-weight: 600;
	letter-spacing: -.005em;
	cursor: pointer;
	overflow: hidden;
	transition: transform .2s var(--ease), box-shadow .3s var(--ease), filter .2s var(--ease);
	box-shadow: 0 1px 0 rgba(255, 255, 255, .35) inset, 0 8px 24px -12px rgba(47, 217, 245, .8);
}
.btn svg { width: 16px; height: 16px; }
.btn:hover { transform: translateY(-1px); filter: saturate(1.12) brightness(1.04); box-shadow: 0 1px 0 rgba(255,255,255,.4) inset, 0 14px 34px -14px rgba(47, 217, 245, .95); }
.btn:active { transform: translateY(0); }

.btn::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(105deg, transparent 35%, rgba(255, 255, 255, .55) 50%, transparent 65%);
	transform: translateX(-120%);
	transition: transform .7s var(--ease);
}
.btn:hover::after { transform: translateX(120%); }

.btn--lg { padding: 15px 26px; font-size: 16px; border-radius: 12px; }
.btn--sm { padding: 9px 16px; font-size: 14px; border-radius: 9px; }
.btn--full { width: 100%; }

.btn--ghost {
	background: rgba(234, 244, 248, .04);
	border-color: var(--line-s);
	color: var(--bone);
	box-shadow: none;
}
.btn--ghost:hover {
	background: rgba(234, 244, 248, .07);
	border-color: rgba(47, 217, 245, .5);
	box-shadow: 0 10px 30px -18px rgba(47, 217, 245, .6);
	filter: none;
}
.btn--ghost::after { background: linear-gradient(105deg, transparent 35%, rgba(47, 217, 245, .22) 50%, transparent 65%); }

/* -------------------------------------------------------------------------
   6. Ефекти
   ------------------------------------------------------------------------- */

.fx {
	position: fixed;
	inset: 0;
	z-index: 0;
	pointer-events: none;
}

.fx__aurora {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	/* Без CSS заматување: градиентите се веќе меки, а заматување преку цел
	   екран врз анимирано платно го држи главниот нишка зафатена секој кадар. */
	filter: saturate(1.1);
	opacity: .6;
}

.fx__grain {
	position: absolute;
	inset: 0;
	opacity: .022;
	background-image: radial-gradient(rgba(234, 244, 248, .9) .5px, transparent .5px);
	background-size: 3px 3px;
}

.fx__cursor {
	position: absolute;
	top: 0;
	left: 0;
	width: 420px;
	height: 420px;
	margin: -210px 0 0 -210px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(47, 217, 245, .12) 0%, rgba(44, 123, 255, .05) 40%, transparent 68%);
	transform: translate3d(var(--cx, -999px), var(--cy-pos, -999px), 0);
	opacity: 0;
	transition: opacity .4s var(--ease);
	will-change: transform;
}
.fx__cursor.is-on { opacity: 1; }

.hdr,
.sec,
.hero,
.band,
.stmt,
.marquee,
.ftr { position: relative; z-index: 1; }

/* Рим-светло на горниот раб на картичките */
.rim {
	position: absolute;
	top: 0;
	left: 14px;
	right: 14px;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(47, 217, 245, .75), transparent);
	pointer-events: none;
}
.rim::after {
	content: "";
	position: absolute;
	top: 0;
	left: 12%;
	right: 12%;
	height: 46px;
	background: linear-gradient(180deg, rgba(47, 217, 245, .16), transparent 78%);
	filter: blur(3px);
}

/* Glare одблесок */
.glare { position: relative; overflow: hidden; }
.glare::after {
	content: "";
	position: absolute;
	top: -60%;
	bottom: -60%;
	width: 46%;
	left: -60%;
	background: linear-gradient(100deg, transparent, rgba(234, 244, 248, .085), transparent);
	pointer-events: none;
	/* Се поместува со transform, не со left. Анимирањето на left бара нов
	   распоред секој кадар, а на страницата има петнаесетина такви одблесоци
	   истовремено, што ја задушува главната нишка. */
	transform: translateX(0) skewX(-16deg);
	animation: glare 7s var(--ease) infinite;
}
.glare:hover::after { animation: glare 1.1s var(--ease); }

@keyframes glare {
	0% { transform: translateX(0) skewX(-16deg); }
	22% { transform: translateX(413%) skewX(-16deg); }
	100% { transform: translateX(413%) skewX(-16deg); }
}

/* Spotlight што го следи курсорот внатре во картичката */
[data-spot] { position: relative; }
[data-spot]::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	background: radial-gradient(340px circle at var(--sx, 50%) var(--sy, 0%), rgba(47, 217, 245, .12), transparent 62%);
	opacity: 0;
	transition: opacity .35s var(--ease);
	pointer-events: none;
	z-index: 0;
}
[data-spot]:hover::before { opacity: 1; }
[data-spot] > * { position: relative; z-index: 1; }
/* Рим-светлото останува надвор од текот, инаку станува ставка во решетката. */
[data-spot] > .rim { position: absolute; z-index: 2; }

/* Точкести матрици */
.dots {
	position: absolute;
	width: 240px;
	height: 240px;
	background-image: radial-gradient(rgba(234, 244, 248, .5) 1px, transparent 1px);
	background-size: 14px 14px;
	opacity: .18;
	pointer-events: none;
}
.dots--tl { top: 42px; left: 0; -webkit-mask-image: linear-gradient(135deg, #000, transparent 72%); mask-image: linear-gradient(135deg, #000, transparent 72%); }
.dots--tr { top: 42px; right: 0; -webkit-mask-image: linear-gradient(225deg, #000, transparent 72%); mask-image: linear-gradient(225deg, #000, transparent 72%); }
.dots--bl { bottom: 42px; left: 0; -webkit-mask-image: linear-gradient(45deg, #000, transparent 72%); mask-image: linear-gradient(45deg, #000, transparent 72%); }

/* Појавување при скролање */
[data-reveal] {
	opacity: 0;
	transform: translateY(22px);
	transition: opacity .7s var(--ease), transform .7s var(--ease);
}
[data-reveal].is-in { opacity: 1; transform: none; }

/* -------------------------------------------------------------------------
   7. Хедер
   ------------------------------------------------------------------------- */

.hdr {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 90;
	transition: background .35s var(--ease);
}
.hdr.is-stuck {
	/* Наместо backdrop-filter врз анимирана позадина, погуста основа.
	   Изгледот е ист, а прелистувачот не замaтува цел екран секој кадар. */
	background: rgba(4, 7, 10, .93);
}

.hdr__in {
	display: flex;
	align-items: center;
	gap: 24px;
	height: var(--hdr-h);
}

.hdr__line {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--line-s), transparent);
	opacity: 0;
	transition: opacity .35s var(--ease);
}
.hdr.is-stuck .hdr__line { opacity: 1; }

.logo { display: inline-flex; align-items: center; gap: 11px; }
.logo__mark {
	display: grid;
	place-items: center;
	width: 30px;
	height: 30px;
	border-radius: 9px;
	background: linear-gradient(160deg, var(--cy-2), var(--cy) 40%, var(--cy-3));
	color: #04202A;
	box-shadow: 0 6px 18px -8px rgba(47, 217, 245, .9), 0 1px 0 rgba(255,255,255,.4) inset;
}
.logo__mark svg { width: 18px; height: 18px; }
.logo__mark--sm { width: 26px; height: 26px; border-radius: 8px; }
.logo__mark--sm svg { width: 15px; height: 15px; }

.logo__word {
	font-family: var(--ff-h);
	font-size: 18px;
	font-weight: 900;
	letter-spacing: .01em;
}

.nav { margin-left: auto; }
.nav__list {
	display: flex;
	align-items: center;
	gap: 4px;
	margin: 0;
	padding: 0;
	list-style: none;
}
.nav__link,
.nav__list a {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 8px 12px;
	border-radius: 8px;
	font-size: 15px;
	color: var(--bone-80);
	transition: color .2s var(--ease), background .2s var(--ease);
}
.nav__list a:hover { color: var(--bone); background: rgba(234, 244, 248, .05); }
.nav__list a.is-current { color: var(--cy); }

.nav__num {
	font-family: var(--ff-m);
	font-size: 13px;
	letter-spacing: .06em;
	color: var(--bone-40);
}
.nav__list a.is-current .nav__num { color: rgba(47, 217, 245, .7); }

.nav__cta { display: none; }
.hdr__cta { flex-shrink: 0; }

.burger {
	display: none;
	width: 42px;
	height: 38px;
	padding: 0;
	background: rgba(234, 244, 248, .04);
	border: 1px solid var(--line-s);
	border-radius: 9px;
	cursor: pointer;
}
.burger span {
	display: block;
	width: 17px;
	height: 1.6px;
	margin: 3.5px auto;
	background: var(--bone);
	border-radius: 2px;
	transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.burger[aria-expanded="true"] span:first-child { transform: translateY(2.6px) rotate(45deg); }
.burger[aria-expanded="true"] span:last-child { transform: translateY(-2.6px) rotate(-45deg); }

/* -------------------------------------------------------------------------
   8. Херој
   ------------------------------------------------------------------------- */

.hero {
	position: relative;
	padding-top: calc(var(--hdr-h) + clamp(48px, 7vw, 92px));
	padding-bottom: clamp(64px, 8vw, 108px);
	overflow: hidden;
}

.hero__in {
	display: grid;
	grid-template-columns: 1.02fr .98fr;
	gap: clamp(32px, 5vw, 68px);
	align-items: center;
}

.hero__title { margin-bottom: 22px; }
.hero__lead { max-width: 52ch; }

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin: 32px 0 40px;
}

.stats {
	display: grid;
	grid-template-columns: repeat(3, auto);
	gap: clamp(20px, 3vw, 42px);
	margin: 0;
	padding-top: 26px;
	border-top: 1px solid var(--line);
	justify-content: start;
}
.stats__item { min-width: 0; }
.stats__value {
	display: flex;
	align-items: baseline;
	font-family: var(--ff-h);
	font-size: clamp(28px, 3vw, 38px);
	font-weight: 900;
	letter-spacing: -.012em;
	line-height: 1;
	color: var(--bone);
}
.stats__suffix { color: var(--cy); white-space: pre; }
.stats__label {
	margin: 8px 0 0;
	max-width: 22ch;
	font-size: 14px;
	line-height: 1.42;
	color: var(--bone-60);
}

/* HUD зад панелот */
.hero__hud {
	position: absolute;
	top: 50%;
	right: -110px;
	width: min(720px, 62vw);
	aspect-ratio: 1;
	transform: translateY(-50%);
	pointer-events: none;
	opacity: .8;
}
.hud { width: 100%; height: 100%; }
.hud__ring { transform-origin: 310px 310px; }
.hud__ring--1 { animation: spin 64s linear infinite; }
.hud__ring--2 { animation: spin 42s linear infinite reverse; }
.hud__ring--3 { animation: spin 28s linear infinite; }
.hud__node { filter: drop-shadow(0 0 6px rgba(47, 217, 245, .9)); }

@keyframes spin { to { transform: rotate(360deg); } }

.trace {
	position: absolute;
	width: 240px;
	opacity: .8;
}
.trace--a { bottom: 12%; left: -6%; }
.trace path { animation: dash 3.4s linear infinite; }
.trace__dot { animation: blink 2.2s var(--ease) infinite; filter: drop-shadow(0 0 6px rgba(47, 217, 245, .9)); }

@keyframes dash { to { stroke-dashoffset: -24; } }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: .25; } }

.dots--hero {
	right: 8%;
	bottom: 4%;
	-webkit-mask-image: linear-gradient(225deg, #000, transparent 70%);
	mask-image: linear-gradient(225deg, #000, transparent 70%);
}

/* 3D наклонет панел */
.hero__panel { perspective: 1400px; }
.tilt {
	transform-style: preserve-3d;
	transform: rotateY(var(--ry, -9deg)) rotateX(var(--rx, 4deg)) translateZ(0);
	transition: transform .8s var(--ease);
	will-change: transform;
}
.tilt:hover { --ry: 0deg; --rx: 0deg; }

/* -------------------------------------------------------------------------
   9. Картички
   ------------------------------------------------------------------------- */

.card {
	position: relative;
	padding: clamp(20px, 2.4vw, 28px);
	border: 1px solid var(--line);
	border-radius: var(--r);
	background:
		linear-gradient(180deg, rgba(16, 25, 35, .92), rgba(10, 16, 23, .96));
	box-shadow: 0 26px 60px -34px rgba(0, 0, 0, .95);
	transition: border-color .3s var(--ease), transform .3s var(--ease);
}
.card:hover { border-color: var(--line-s); }

.card__code {
	display: inline-block;
	font-family: var(--ff-m);
	font-size: 14px;
	letter-spacing: .11em;
	color: var(--cy);
}
.card__text { margin: 12px 0 0; font-size: 15.5px; color: var(--bone-80); }

.badge {
	display: inline-flex;
	align-items: center;
	padding: 5px 11px;
	border: 1px solid var(--line-s);
	border-radius: 999px;
	background: rgba(47, 217, 245, .08);
	font-family: var(--ff-m);
	font-size: 13px;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: var(--cy);
}
.badge--example {
	background: rgba(255, 193, 94, .1);
	border-color: rgba(255, 193, 94, .32);
	color: var(--amber);
}

/* Панел со извештај */
.card--report { padding: clamp(18px, 2vw, 24px); }

.report__head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 14px;
	padding-bottom: 16px;
	border-bottom: 1px solid var(--line);
}
.report__period {
	margin: 6px 0 0;
	font-family: var(--ff-m);
	font-size: 13px;
	letter-spacing: .05em;
	color: var(--bone-40);
}

.report__metrics {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
	padding: 16px 0;
	border-bottom: 1px solid var(--line);
}
.report__compare {
	grid-column: 1 / -1;
	margin: 4px 0 0;
	font-family: var(--ff-m);
	font-size: 13px;
	letter-spacing: .04em;
	color: var(--bone-40);
}
.metric { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.metric__label {
	font-size: 13px;
	line-height: 1.3;
	color: var(--bone-60);
}
.metric__value {
	font-family: var(--ff-h);
	font-size: clamp(17px, 1.7vw, 21px);
	font-weight: 800;
	letter-spacing: -.01em;
}
.metric__delta {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-family: var(--ff-m);
	font-size: 13px;
	color: var(--cy);
}
.metric__delta svg { width: 9px; height: 9px; }

.report__chart { padding: 16px 0 10px; }

.legend { display: flex; gap: 16px; margin-bottom: 10px; }
.legend__item {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	font-family: var(--ff-m);
	font-size: 13px;
	letter-spacing: .05em;
	color: var(--bone-60);
}
.legend__item i { width: 14px; height: 2px; border-radius: 2px; background: var(--steel); }
.legend__item--cy i { background: var(--cy); box-shadow: 0 0 8px rgba(47, 217, 245, .8); }

.chart { width: 100%; height: 140px; overflow: visible; }
.chart__grid line { stroke: var(--line); stroke-width: 1; }
.chart__area { fill: url(#areaGrad); opacity: 0; transition: opacity .8s var(--ease) .5s; }
.chart__line {
	fill: none;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
	vector-effect: non-scaling-stroke;
}
.chart__line--rev { stroke: var(--cy); filter: drop-shadow(0 0 6px rgba(47, 217, 245, .55)); }
.chart__line--spend { stroke: var(--steel); stroke-dasharray: 4 4; }

.chart.is-drawn .chart__area { opacity: 1; }

.chart__axis {
	display: flex;
	justify-content: space-between;
	margin-top: 8px;
	font-family: var(--ff-m);
	font-size: 13px;
	letter-spacing: .04em;
	color: var(--bone-40);
}

.report__rows { margin: 6px 0 0; padding: 0; list-style: none; }
.row {
	display: grid;
	grid-template-columns: 1fr auto auto;
	align-items: center;
	gap: 12px;
	padding: 11px 0;
	border-top: 1px solid var(--line);
}
.row__src { display: flex; align-items: center; gap: 7px; min-width: 0; font-size: 14px; }
.row__src strong { font-weight: 600; }
.row__sep { color: var(--bone-40); }
.row__kind { color: var(--bone-60); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.row__val { font-family: var(--ff-m); font-size: 14px; color: var(--bone); }

.pill {
	padding: 4px 10px;
	border-radius: 999px;
	border: 1px solid var(--line-s);
	font-family: var(--ff-m);
	font-size: 13px;
	letter-spacing: .04em;
	color: var(--bone-60);
}
.pill--up { border-color: rgba(47, 217, 245, .35); background: rgba(47, 217, 245, .08); color: var(--cy); }
.pill--hold { border-color: rgba(78, 98, 111, .5); background: rgba(78, 98, 111, .14); }

.report__note {
	margin: 14px 0 0;
	padding-top: 12px;
	border-top: 1px solid var(--line);
	font-size: 13px;
	line-height: 1.45;
	color: var(--bone-40);
}

/* Скролај */
.scroll {
	position: absolute;
	left: 50%;
	bottom: 18px;
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	transform: translateX(-50%);
	font-family: var(--ff-m);
	font-size: 13px;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--bone-40);
	transition: color .25s var(--ease);
}
.scroll:hover { color: var(--cy); }
.scroll__bar {
	width: 1px;
	height: 34px;
	background: linear-gradient(180deg, transparent, var(--cy));
	animation: fall 2.4s var(--ease) infinite;
}
@keyframes fall {
	0% { opacity: 0; transform: scaleY(.2); transform-origin: top; }
	40% { opacity: 1; transform: scaleY(1); transform-origin: top; }
	100% { opacity: 0; transform: scaleY(1); transform-origin: bottom; }
}

/* -------------------------------------------------------------------------
   10. Лента
   ------------------------------------------------------------------------- */

.marquee {
	padding: 16px 0;
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
	background: rgba(10, 16, 23, .5);
	overflow: hidden;
	-webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
	mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee__track { display: flex; width: max-content; animation: slide 38s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__list { display: flex; gap: 42px; margin: 0; padding: 0 21px; list-style: none; }
.marquee__item {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	white-space: nowrap;
	font-family: var(--ff-m);
	font-size: 14px;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--bone-60);
}
.marquee__dia { color: var(--cy); font-size: 13px; }

@keyframes slide { to { transform: translateX(-50%); } }

/* -------------------------------------------------------------------------
   11. Анализа
   ------------------------------------------------------------------------- */

.table__head {
	display: grid;
	grid-template-columns: 62px minmax(220px, 1fr) minmax(280px, 1.5fr) 118px;
	gap: 18px;
	padding: 0 20px 12px;
	border-bottom: 1px solid var(--line);
}
.table__th {
	font-family: var(--ff-m);
	font-size: 13px;
	letter-spacing: .11em;
	text-transform: uppercase;
	color: var(--bone-40);
}
.table__th--3 { text-align: right; }

.table__body { margin: 0; padding: 0; list-style: none; }

.leak {
	display: grid;
	grid-template-columns: 62px minmax(220px, 1fr) minmax(280px, 1.5fr) 118px;
	gap: 18px;
	align-items: center;
	padding: 22px 20px;
	border-bottom: 1px solid var(--line);
	border-radius: var(--r-sm);
	transition: background .3s var(--ease);
}
.leak:hover { background: rgba(16, 25, 35, .6); }
.leak .rim { opacity: 0; transition: opacity .3s var(--ease); }
.leak:hover .rim { opacity: 1; }

.leak__n {
	font-family: var(--ff-m);
	font-size: 15px;
	color: var(--cy);
	letter-spacing: .06em;
}
.leak__main { display: flex; flex-direction: column; gap: 9px; }
.leak__title {
	margin: 0;
	font-family: var(--ff-h);
	font-size: 18px;
	font-weight: 700;
	letter-spacing: -.008em;
	line-height: 1.25;
}
.leak__bars { display: inline-flex; gap: 4px; }
.leak__bars i {
	width: 16px;
	height: 3px;
	border-radius: 2px;
	background: rgba(234, 244, 248, .13);
}
.leak__bars--red i.on { background: var(--red); box-shadow: 0 0 8px rgba(255, 122, 102, .5); }
.leak__bars--amber i.on { background: var(--amber); box-shadow: 0 0 8px rgba(255, 193, 94, .45); }

.leak__text { margin: 0; font-size: 15px; line-height: 1.5; color: var(--bone-60); }

.leak__impact {
	justify-self: end;
	padding: 5px 12px;
	border-radius: 999px;
	border: 1px solid;
	font-family: var(--ff-m);
	font-size: 13px;
	letter-spacing: .06em;
}
.leak__impact--red { border-color: rgba(255, 122, 102, .38); background: rgba(255, 122, 102, .1); color: var(--red); }
.leak__impact--amber { border-color: rgba(255, 193, 94, .38); background: rgba(255, 193, 94, .1); color: var(--amber); }

/* -------------------------------------------------------------------------
   12. Услуги
   ------------------------------------------------------------------------- */

.card--service { display: flex; flex-direction: column; padding: 26px 24px 28px; }
.svc__icon {
	margin: 20px 0 22px;
	width: 72px;
	height: 72px;
	color: var(--cy);
}
.svc__icon svg { width: 100%; height: 100%; }
.card--service:hover .ico-sweep { animation: sweep 1.4s var(--ease); transform-origin: 36px 36px; }
.card--service:hover .ico-dash { animation: dash2 1.6s linear infinite; }
.ico-check { opacity: .35; transition: opacity .3s var(--ease); }
.card--service:hover .ico-check { opacity: 1; }

@keyframes sweep { from { transform: rotate(-60deg); } to { transform: rotate(0deg); } }
@keyframes dash2 { to { stroke-dashoffset: -18; } }

.card--service .h3 { margin-bottom: 4px; }

.ticks { margin: 20px 0 0; padding: 18px 0 0; border-top: 1px solid var(--line); list-style: none; display: grid; gap: 11px; }
.ticks li {
	display: grid;
	grid-template-columns: 16px 1fr;
	gap: 10px;
	align-items: start;
	font-size: 14px;
	line-height: 1.45;
	color: var(--bone-80);
}
.ticks svg { width: 14px; height: 14px; margin-top: 4px; color: var(--cy); }
.ticks--lg li { font-size: 15px; }
.ticks--lg { border-top: 0; padding-top: 0; margin-top: 28px; }

/* -------------------------------------------------------------------------
   13. Бенд
   ------------------------------------------------------------------------- */

.band {
	padding-block: clamp(44px, 5vw, 68px);
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
	background: linear-gradient(180deg, rgba(16, 25, 35, .55), rgba(4, 7, 10, 0));
}
.band__in { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 40px); }
.band__item { display: flex; flex-direction: column; gap: 10px; padding-left: 20px; border-left: 1px solid var(--line-s); }
.band__value {
	font-family: var(--ff-h);
	font-size: clamp(38px, 5vw, 62px);
	font-weight: 900;
	line-height: .95;
	letter-spacing: -.014em;
	background: linear-gradient(160deg, var(--bone), rgba(234, 244, 248, .45));
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	-webkit-text-fill-color: transparent;
}
.band__label { font-size: 14px; line-height: 1.45; color: var(--bone-60); max-width: 30ch; }

/* -------------------------------------------------------------------------
   14. Изјава (бела секција)
   ------------------------------------------------------------------------- */

.stmt {
	position: relative;
	padding-block: clamp(76px, 9vw, 128px);
	background: var(--bone);
	color: #06121A;
	overflow: hidden;
}
.stmt__dots {
	position: absolute;
	inset: 0;
	background-image: radial-gradient(rgba(6, 18, 26, .35) 1px, transparent 1px);
	background-size: 16px 16px;
	opacity: .18;
	-webkit-mask-image: radial-gradient(120% 80% at 50% 0%, #000, transparent 70%);
	mask-image: radial-gradient(120% 80% at 50% 0%, #000, transparent 70%);
}
.stmt__in { position: relative; text-align: center; }
.stmt__title {
	margin: 20px 0 22px;
	font-family: var(--ff-h);
	font-size: clamp(26px, 3.4vw, 44px);
	font-weight: 800;
	line-height: 1.18;
	letter-spacing: -.014em;
}
.stmt__title em {
	font-style: italic;
	background: linear-gradient(100deg, var(--cy-3), var(--blu));
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	-webkit-text-fill-color: transparent;
}
.stmt__text {
	margin: 0 auto;
	max-width: 62ch;
	font-size: clamp(15.5px, 1.2vw, 17px);
	line-height: 1.6;
	color: rgba(6, 18, 26, .72);
}

/* -------------------------------------------------------------------------
   15. Метод - временска линија
   ------------------------------------------------------------------------- */

.tl { display: grid; gap: clamp(34px, 4vw, 52px); }

.tl__track {
	position: relative;
	display: grid;
	grid-template-columns: repeat(var(--tl-steps, 3), 1fr);
	gap: 16px;
	padding-top: 46px;
}
.tl__rail,
.tl__fill {
	position: absolute;
	top: 46px;
	left: calc(100% / var(--tl-steps, 3) / 2);
	right: calc(100% / var(--tl-steps, 3) / 2);
	height: 1px;
}
.tl__rail { background: var(--line-s); }
.tl__fill {
	right: auto;
	width: calc((100% - (100% / var(--tl-steps, 3))) * var(--p, 0));
	background: linear-gradient(90deg, var(--cy-3), var(--cy));
	box-shadow: 0 0 14px rgba(47, 217, 245, .6);
	transition: width .7s var(--ease);
}

.tlnode {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	padding: 0 6px;
	background: none;
	border: 0;
	cursor: pointer;
	text-align: center;
	color: var(--bone-60);
	transition: color .3s var(--ease);
}
.tlnode:hover,
.tlnode.is-active { color: var(--bone); }

.tlnode__dot {
	position: relative;
	z-index: 2;
	width: 13px;
	height: 13px;
	border-radius: 50%;
	background: var(--void);
	border: 1px solid var(--line-s);
	transition: border-color .3s var(--ease), background .3s var(--ease), box-shadow .3s var(--ease);
}
.tlnode.is-active .tlnode__dot {
	background: var(--cy);
	border-color: var(--cy-2);
	box-shadow: 0 0 0 4px rgba(47, 217, 245, .18), 0 0 18px rgba(47, 217, 245, .8);
}

.tlnode__orbit {
	position: absolute;
	top: -18px;
	left: 50%;
	width: 62px;
	height: 62px;
	margin-left: -31px;
	color: var(--cy);
	opacity: 0;
	transition: opacity .35s var(--ease);
}
.tlnode.is-active .tlnode__orbit { opacity: 1; animation: spin 9s linear infinite; }

.tlnode__ripple {
	position: absolute;
	top: -6px;
	left: 50%;
	width: 13px;
	height: 13px;
	margin-left: -6.5px;
	border-radius: 50%;
	border: 1px solid var(--cy);
	opacity: 0;
}
.tlnode.is-active .tlnode__ripple { animation: ripple 2.6s var(--ease) infinite; }

@keyframes ripple {
	0% { transform: scale(1); opacity: .7; }
	80%, 100% { transform: scale(4.6); opacity: 0; }
}

.tlnode__n {
	margin-top: 12px;
	font-family: var(--ff-m);
	font-size: 14px;
	letter-spacing: .1em;
	color: var(--cy);
}
.tlnode__title {
	font-family: var(--ff-h);
	font-size: 17px;
	font-weight: 700;
	letter-spacing: -.006em;
}

.tl__panels { position: relative; }
.tlpanel {
	padding: clamp(24px, 3vw, 34px);
	border: 1px solid var(--line);
	border-radius: var(--r);
	background: linear-gradient(180deg, rgba(16, 25, 35, .9), rgba(10, 16, 23, .96));
	box-shadow: 0 26px 60px -34px rgba(0, 0, 0, .95);
	animation: panel-in .5s var(--ease);
}
.tlpanel[hidden] { display: none; }
.tlpanel__meta {
	display: inline-block;
	margin-bottom: 14px;
	font-family: var(--ff-m);
	font-size: 14px;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--cy);
}
.tlpanel__text { margin: 12px 0 0; max-width: 70ch; font-size: 16px; color: var(--bone-80); }

@keyframes panel-in {
	from { opacity: 0; transform: translateY(12px); }
	to { opacity: 1; transform: none; }
}

/* -------------------------------------------------------------------------
   16. Модел
   ------------------------------------------------------------------------- */

.model {
	display: grid;
	grid-template-columns: minmax(320px, .92fr) 1.08fr;
	gap: clamp(20px, 3vw, 34px);
	align-items: start;
}

.card--price { padding: clamp(24px, 3vw, 34px); }
.price__title { margin: 16px 0 8px; }
.price__text { margin: 0 0 24px; font-size: 15px; color: var(--bone-60); }

.price { display: flex; align-items: baseline; gap: 9px; }
.price__num {
	font-family: var(--ff-h);
	font-size: clamp(44px, 5.4vw, 66px);
	font-weight: 900;
	line-height: 1;
	letter-spacing: -.016em;
}
.price__per { font-family: var(--ff-m); font-size: 15px; color: var(--bone-60); }
.price__plus {
	margin: 10px 0 24px;
	font-family: var(--ff-m);
	font-size: 15px;
	letter-spacing: .02em;
	color: var(--cy);
}

.split { display: flex; height: 8px; border-radius: 999px; overflow: hidden; background: rgba(234, 244, 248, .06); }
.split__seg { width: var(--w); transition: width 1s var(--ease); }
.split__seg--fix { background: var(--steel); }
.split__seg--var { background: linear-gradient(90deg, var(--cy-3), var(--cy)); box-shadow: 0 0 14px rgba(47, 217, 245, .5); }

.split__keys { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 12px; }
.split__key {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--ff-m);
	font-size: 13px;
	letter-spacing: .04em;
	color: var(--bone-60);
}
.split__key i { width: 10px; height: 10px; border-radius: 3px; }
.split__key--fix i { background: var(--steel); }
.split__key--var i { background: var(--cy); }

.price__note {
	margin: 22px 0 24px;
	padding: 14px 16px;
	border: 1px solid var(--line);
	border-left: 2px solid var(--cy);
	border-radius: var(--r-sm);
	background: rgba(47, 217, 245, .05);
	font-size: 14px;
	line-height: 1.5;
	color: var(--bone-80);
}

.spec { margin: 0; padding: 0; border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; }
.spec__row {
	display: grid;
	grid-template-columns: 190px 1fr;
	gap: 20px;
	padding: 20px 24px;
	border-bottom: 1px solid var(--line);
	transition: background .25s var(--ease);
}
.spec__row:last-child { border-bottom: 0; }
.spec__row:hover { background: rgba(16, 25, 35, .6); }
.spec__k {
	margin: 0;
	font-family: var(--ff-m);
	font-size: 14px;
	letter-spacing: .07em;
	text-transform: uppercase;
	color: var(--cy);
}
.spec__v { margin: 0; font-size: 15px; line-height: 1.55; color: var(--bone-80); }

/* -------------------------------------------------------------------------
   17. Соработка
   ------------------------------------------------------------------------- */

.fit { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(18px, 2.4vw, 28px); }

.fitcol {
	position: relative;
	padding: clamp(24px, 3vw, 32px);
	border: 1px solid var(--line);
	border-radius: var(--r);
	background: linear-gradient(180deg, rgba(16, 25, 35, .82), rgba(10, 16, 23, .96));
	transition: border-color .3s var(--ease);
}
.fitcol--no .rim { background: linear-gradient(90deg, transparent, rgba(255, 122, 102, .7), transparent); }
.fitcol--no .rim::after { background: linear-gradient(180deg, rgba(255, 122, 102, .13), transparent 78%); }
.fitcol--no:hover { border-color: rgba(255, 122, 102, .3); }
.fitcol--yes:hover { border-color: rgba(47, 217, 245, .3); }

.fitcol__title {
	display: flex;
	align-items: center;
	gap: 12px;
	margin: 0 0 22px;
	font-family: var(--ff-h);
	font-size: clamp(19px, 1.9vw, 23px);
	font-weight: 800;
	letter-spacing: -.008em;
}
.fitcol__sign {
	display: grid;
	place-items: center;
	width: 30px;
	height: 30px;
	border-radius: 9px;
	border: 1px solid var(--line-s);
	flex-shrink: 0;
}
.fitcol__sign svg { width: 15px; height: 15px; }
.fitcol--no .fitcol__sign { color: var(--red); border-color: rgba(255, 122, 102, .35); background: rgba(255, 122, 102, .09); }
.fitcol--yes .fitcol__sign { color: var(--cy); border-color: rgba(47, 217, 245, .35); background: rgba(47, 217, 245, .09); }

.fitlist { margin: 0; padding: 0; list-style: none; display: grid; }
.fitlist li {
	position: relative;
	padding: 14px 0 14px 22px;
	border-top: 1px solid var(--line);
	font-size: 15px;
	line-height: 1.5;
	color: var(--bone-80);
}
.fitlist li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 22px;
	width: 8px;
	height: 1px;
	background: var(--line-s);
}
.fitcol--no .fitlist li::before { background: rgba(255, 122, 102, .6); }
.fitcol--yes .fitlist li::before { background: rgba(47, 217, 245, .65); }

/* -------------------------------------------------------------------------
   18. Прашања
   ------------------------------------------------------------------------- */

.faq { border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__h { margin: 0; }

.faq__q {
	display: grid;
	grid-template-columns: 40px 1fr 22px;
	align-items: center;
	gap: 14px;
	width: 100%;
	padding: 24px 4px;
	background: none;
	border: 0;
	text-align: left;
	cursor: pointer;
	transition: color .25s var(--ease);
}
.faq__q:hover { color: var(--cy); }
.faq__num { font-family: var(--ff-m); font-size: 14px; letter-spacing: .08em; color: var(--bone-40); }
.faq__q[aria-expanded="true"] .faq__num { color: var(--cy); }
.faq__txt {
	font-family: var(--ff-h);
	font-size: clamp(17px, 1.6vw, 20px);
	font-weight: 700;
	letter-spacing: -.008em;
	line-height: 1.3;
}

.faq__sign { position: relative; width: 16px; height: 16px; justify-self: end; }
.faq__sign i {
	position: absolute;
	top: 50%;
	left: 0;
	width: 16px;
	height: 1.6px;
	margin-top: -.8px;
	background: currentColor;
	border-radius: 2px;
	transition: transform .35s var(--ease), opacity .25s var(--ease);
}
.faq__sign i:last-child { transform: rotate(90deg); }
.faq__q[aria-expanded="true"] .faq__sign i:last-child { transform: rotate(0deg); opacity: 0; }

.faq__a { overflow: hidden; }
.faq__a[hidden] { display: none; }
.faq__a p {
	margin: 0;
	padding: 0 44px 26px 54px;
	max-width: 72ch;
	font-size: 15.5px;
	line-height: 1.6;
	color: var(--bone-60);
}

/* -------------------------------------------------------------------------
   19. Контакт
   ------------------------------------------------------------------------- */

.kontakt {
	display: grid;
	grid-template-columns: .88fr 1.12fr;
	gap: clamp(28px, 4vw, 56px);
	align-items: start;
}
.kontakt__copy .h2 { margin: 18px 0 20px; }

.card--form { padding: clamp(24px, 3vw, 34px); }

.form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 8px; margin: 0; min-width: 0; }
.field--wide { grid-column: 1 / -1; }

.field__label {
	display: flex;
	align-items: center;
	gap: 8px;
	min-height: 24px;
	font-family: var(--ff-m);
	font-size: 13px;
	letter-spacing: .07em;
	text-transform: uppercase;
	color: var(--bone-60);
}
.field__opt {
	padding: 2px 7px;
	border: 1px solid var(--line);
	border-radius: 5px;
	font-size: 13px;
	letter-spacing: .04em;
	text-transform: none;
	color: var(--bone-40);
}

.field__in {
	width: 100%;
	padding: 13px 15px;
	border: 1px solid var(--line-s);
	border-radius: var(--r-sm);
	background: rgba(4, 7, 10, .55);
	color: var(--bone);
	font-size: 15.5px;
	transition: border-color .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
	appearance: none;
}
.field__in::placeholder { color: var(--bone-40); }
.field__in:hover { border-color: rgba(234, 244, 248, .26); }
.field__in:focus {
	outline: none;
	border-color: var(--cy);
	background: rgba(4, 7, 10, .8);
	box-shadow: 0 0 0 3px rgba(47, 217, 245, .14);
}
textarea.field__in { resize: vertical; min-height: 108px; line-height: 1.55; }

.field__wrap { position: relative; display: block; }
.field__caret {
	position: absolute;
	right: 14px;
	top: 50%;
	width: 12px;
	height: 12px;
	margin-top: -6px;
	color: var(--bone-60);
	pointer-events: none;
}
.field__in--select { padding-right: 38px; cursor: pointer; }
.field__in--select option { background: var(--panel); color: var(--bone); }

.field.is-bad .field__in { border-color: var(--red); box-shadow: 0 0 0 3px rgba(255, 122, 102, .12); }
.field__err {
	display: none;
	font-size: 13px;
	color: var(--red);
}
.field.is-bad .field__err { display: block; }

.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form__foot { margin-top: 22px; }
.form__note {
	margin: 14px 0 0;
	text-align: center;
	font-family: var(--ff-m);
	font-size: 13px;
	letter-spacing: .05em;
	color: var(--bone-40);
}

.form__alert {
	margin: 16px 0 0;
	padding: 12px 14px;
	border: 1px solid rgba(255, 122, 102, .35);
	border-radius: var(--r-sm);
	background: rgba(255, 122, 102, .08);
	font-size: 14px;
	color: var(--red);
}
.form__alert[hidden] { display: none; }

.form.is-sending { opacity: .6; pointer-events: none; }
.form.is-done { display: none; }

.done {
	display: none;
	flex-direction: column;
	align-items: center;
	gap: 14px;
	padding: clamp(30px, 5vw, 56px) 10px;
	text-align: center;
}
.done.is-visible { display: flex; animation: panel-in .5s var(--ease); }
.done__mark { width: 54px; height: 54px; color: var(--cy); }
.done__mark svg { width: 100%; height: 100%; filter: drop-shadow(0 0 14px rgba(47, 217, 245, .5)); }
.done__text { margin: 0; max-width: 46ch; font-size: 15.5px; color: var(--bone-60); }

/* -------------------------------------------------------------------------
   20. Подножје
   ------------------------------------------------------------------------- */

.ftr {
	padding-block: 44px;
	border-top: 1px solid var(--line);
	background: rgba(10, 16, 23, .5);
}
.ftr__in {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 18px 28px;
}
.ftr__brand { display: inline-flex; align-items: center; gap: 10px; }
.ftr__word { font-family: var(--ff-h); font-size: 16px; font-weight: 900; letter-spacing: .01em; }
.ftr__line { margin: 0; flex: 1 1 260px; font-size: 14px; color: var(--bone-40); }
.ftr__meta {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-family: var(--ff-m);
	font-size: 14px;
	letter-spacing: .04em;
	color: var(--bone-60);
}
.ftr__domain:hover { color: var(--cy); }
.ftr__dot { color: var(--bone-40); }

/* -------------------------------------------------------------------------
   21. Правни страници
   ------------------------------------------------------------------------- */

.prose .h2 { margin: 16px 0 22px; }
.prose__body { font-size: 16.5px; color: var(--bone-80); }
.prose__body h2, .prose__body h3 { font-family: var(--ff-h); letter-spacing: -.01em; color: var(--bone); }
.prose__body a { color: var(--cy); text-decoration: underline; text-underline-offset: 3px; }
.prose__body ul, .prose__body ol { padding-left: 20px; }
.prose__body li { margin-bottom: 8px; }

/* -------------------------------------------------------------------------
   22. Респонзив
   ------------------------------------------------------------------------- */

@media (max-width: 1080px) {
	.hero__in { grid-template-columns: 1fr; }
	.hero__panel { order: 2; max-width: 620px; }
	.tilt { --ry: 0deg; --rx: 0deg; }
	.hero__hud { right: -22%; top: 34%; width: min(620px, 86vw); opacity: .5; }
	.model { grid-template-columns: 1fr; }
	.kontakt { grid-template-columns: 1fr; }
}

@media (max-width: 960px) {
	:root { --hdr-h: 62px; }

	.nav {
		position: fixed;
		inset: var(--hdr-h) 0 auto;
		margin: 0;
		padding: 18px var(--gut) 26px;
		background: rgba(4, 7, 10, .98);
		border-bottom: 1px solid var(--line);
		transform: translateY(-118%);
		transition: transform .4s var(--ease);
		visibility: hidden;
	}
	.nav.is-open { transform: translateY(0); visibility: visible; }
	.nav__list { flex-direction: column; align-items: stretch; gap: 2px; }
	.nav__list a { padding: 13px 12px; font-size: 16px; border-bottom: 1px solid var(--line); border-radius: 0; }
	.nav__cta { display: inline-flex; margin-top: 16px; justify-content: center; }
	.hdr__cta { display: none; }
	.burger { display: block; margin-left: auto; }

	.grid--3 { grid-template-columns: 1fr; }
	.band__in { grid-template-columns: 1fr; gap: 26px; }
	.fit { grid-template-columns: 1fr; }
	.table__head { display: none; }

	.leak {
		grid-template-columns: 44px 1fr;
		grid-template-areas: "n main" ". text" ". impact";
		gap: 10px 14px;
		padding: 22px 14px;
	}
	.leak__n { grid-area: n; }
	.leak__main { grid-area: main; }
	.leak__text { grid-area: text; }
	.leak__impact { grid-area: impact; justify-self: start; }

	.spec__row { grid-template-columns: 1fr; gap: 8px; padding: 18px 20px; }

	.tl__track { grid-template-columns: 1fr; gap: 0; padding-top: 0; }
	.tl__rail, .tl__fill { display: none; }
	.tlnode {
		flex-direction: row;
		align-items: center;
		gap: 14px;
		padding: 16px 4px;
		border-bottom: 1px solid var(--line);
		text-align: left;
	}
	.tlnode__orbit, .tlnode__ripple { display: none; }
	.tlnode__n { margin: 0; }
	.tlnode__title { margin-right: auto; }
}

@media (max-width: 620px) {
	.hero__actions .btn { width: 100%; }
	.stats { grid-template-columns: 1fr; gap: 18px; }
	.stats__label { max-width: none; }
	.report__metrics { grid-template-columns: 1fr; gap: 14px; }
	.metric { flex-direction: row; align-items: baseline; gap: 10px; flex-wrap: wrap; }
	.metric__label { flex: 1 1 100%; }
	.row { grid-template-columns: 1fr auto; row-gap: 6px; }
	.row .pill { grid-column: 2; }
	.form__grid { grid-template-columns: 1fr; }
	.faq__q { grid-template-columns: 32px 1fr 20px; gap: 10px; padding: 20px 2px; }
	.faq__a p { padding: 0 0 22px 42px; }
	.ftr__in { flex-direction: column; align-items: flex-start; }
	.scroll { display: none; }
	.hero__hud { display: none; }
}

/* -------------------------------------------------------------------------
   23. Намалено движење
   ------------------------------------------------------------------------- */

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

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

	.fx__aurora,
	.fx__cursor,
	.hero__hud,
	.trace { display: none; }

	.glare::after { display: none; }
	.marquee__track { animation: none; transform: none; }
	[data-reveal] { opacity: 1; transform: none; }
	.tilt { --ry: 0deg; --rx: 0deg; }
	.chart__area { opacity: 1; }
}

/* -------------------------------------------------------------------------
   24. Административна лента на WordPress
   Кога сопственикот е најавен, лентата горе го покрива фиксниот хедер.
   ------------------------------------------------------------------------- */

body.admin-bar .hdr { top: 32px; }
body.admin-bar { scroll-padding-top: calc(var(--hdr-h) + 52px); }

@media screen and (max-width: 782px) {
	body.admin-bar .hdr { top: 46px; }
}
@media screen and (max-width: 600px) {
	/* Под 600px лентата на WordPress не е фиксна, па хедерот се враќа горе. */
	body.admin-bar .hdr { top: 0; }
}

@media print {
	.fx, .hdr, .scroll, .marquee { display: none; }
	body { background: #fff; color: #000; }
}
