@font-face {
	font-family: 'Unbounded';
	font-style: normal;
	font-weight: 500 800;
	font-display: swap;
	src: url('unbounded-cyr-ext.woff2') format('woff2');
	unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
@font-face {
	font-family: 'Unbounded';
	font-style: normal;
	font-weight: 500 800;
	font-display: swap;
	src: url('unbounded-cyr.woff2') format('woff2');
	unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
	font-family: 'Unbounded';
	font-style: normal;
	font-weight: 500 800;
	font-display: swap;
	src: url('unbounded-lat.woff2') format('woff2');
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
	font-family: 'Onest';
	font-style: normal;
	font-weight: 400 700;
	font-display: swap;
	src: url('onest-cyr-ext.woff2') format('woff2');
	unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
@font-face {
	font-family: 'Onest';
	font-style: normal;
	font-weight: 400 700;
	font-display: swap;
	src: url('onest-cyr.woff2') format('woff2');
	unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
	font-family: 'Onest';
	font-style: normal;
	font-weight: 400 700;
	font-display: swap;
	src: url('onest-lat.woff2') format('woff2');
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ---- tokens ------------------------------------------------------------ */

:root {
	--bg:        #050722;
	--bg-2:      #080b32;
	--bg-3:      #111747;
	--surface:   #171d50;
	--surface-2: #20265d;
	--line:      #293169;
	--line-2:    #3a4390;

	--green:     #32f54a;
	--green-lt:  #6bff7e;
	--on-green:  #03140a;
	--cyan:      #20dff3;
	--cyan-lt:   #7ceefa;
	--purple:    #a846f5;
	--error:     #ff4d68;

	--text:      #ffffff;
	--text-2:    #dfe2f3;
	--muted:     #aeb4d4;
	--dim:       #8d94c0;

	--glow-g: 0 0 0 1px rgba(50, 245, 74, .55), 0 0 22px -2px rgba(50, 245, 74, .45);
	--glow-c: 0 0 0 1px rgba(32, 223, 243, .5), 0 0 22px -4px rgba(32, 223, 243, .45);
	--grad-neon: linear-gradient(100deg, var(--green) 0%, var(--cyan) 55%, var(--purple) 100%);
	--grad-text: linear-gradient(95deg, var(--green) 10%, var(--cyan) 90%);

	--r-sm: 12px;
	--r:    18px;
	--r-lg: 28px;

	--s1: 4px;  --s2: 8px;  --s3: 12px; --s4: 16px; --s5: 24px;
	--s6: 32px; --s7: 48px; --s8: 64px; --s9: 96px;

	--wrap: 1240px;
	--head-h: 64px;
	--f-display: 'Unbounded', 'Onest', system-ui, sans-serif;
	--f-body: 'Onest', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}

/* ---- base -------------------------------------------------------------- */

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
	margin: 0;
	min-height: 100vh;
	font: 400 16px/1.6 var(--f-body);
	color: var(--text);
	background:
		radial-gradient(900px 520px at 8% -6%, rgba(168, 70, 245, .20), transparent 70%),
		radial-gradient(760px 520px at 98% 4%, rgba(32, 223, 243, .13), transparent 70%),
		var(--bg);
	background-repeat: no-repeat;
	-webkit-font-smoothing: antialiased;
	padding-bottom: 76px;
}

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

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

button { font: inherit; color: inherit; }

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

::selection { background: rgba(50, 245, 74, .35); color: #fff; }

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

.skip {
	position: absolute;
	left: var(--s4);
	top: -60px;
	z-index: 100;
	padding: var(--s2) var(--s4);
	border-radius: var(--r-sm);
	background: var(--green);
	color: var(--on-green);
	font-weight: 700;
}
.skip:focus { top: var(--s2); }

/* ---- buttons & chips --------------------------------------------------- */

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: var(--s2);
	min-height: 44px;
	padding: 0 20px;
	border: 1px solid transparent;
	border-radius: 14px;
	font: 700 15px/1 var(--f-body);
	letter-spacing: .01em;
	white-space: nowrap;
	cursor: pointer;
	transition: background-color .2s, box-shadow .2s, border-color .2s, color .2s, transform .2s;
}
.btn:active { transform: translateY(1px); }

.btn--cta {
	background: var(--green);
	color: var(--on-green);
	box-shadow: var(--glow-g), 0 10px 30px -12px rgba(50, 245, 74, .9);
}
.btn--cta:hover { background: var(--green-lt); box-shadow: 0 0 0 1px rgba(107, 255, 126, .8), 0 0 34px -2px rgba(50, 245, 74, .6); }

.btn--ghost {
	border-color: rgba(32, 223, 243, .45);
	color: var(--cyan);
	background: rgba(32, 223, 243, .06);
}
.btn--ghost:hover { border-color: var(--cyan); background: rgba(32, 223, 243, .12); box-shadow: var(--glow-c); }

.btn--line {
	border-color: var(--line-2);
	background: rgba(23, 29, 80, .6);
	color: var(--text);
}
.btn--line:hover { border-color: var(--cyan); color: var(--cyan-lt); }

.btn--lg { min-height: 54px; padding: 0 28px; font-size: 16px; border-radius: 16px; }
.btn--block { display: flex; width: 100%; }

.chip {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	min-height: 26px;
	padding: 0 10px;
	border: 1px solid var(--line-2);
	border-radius: 999px;
	background: rgba(23, 29, 80, .75);
	color: var(--muted);
	font: 600 12px/1 var(--f-body);
	letter-spacing: .02em;
	white-space: nowrap;
}
.chip--green { border-color: rgba(50, 245, 74, .5); color: var(--green); background: rgba(50, 245, 74, .1); }
.chip--cyan { border-color: rgba(32, 223, 243, .5); color: var(--cyan); background: rgba(32, 223, 243, .1); }
.chip--purple { border-color: rgba(168, 70, 245, .6); color: #d4a6ff; background: rgba(168, 70, 245, .16); }
.chip--hot { border-color: rgba(255, 77, 104, .55); color: #ff8497; background: rgba(255, 77, 104, .14); }

.dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--green);
	box-shadow: 0 0 0 3px rgba(50, 245, 74, .2), 0 0 10px var(--green);
	animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse { 50% { box-shadow: 0 0 0 6px rgba(50, 245, 74, 0), 0 0 14px var(--green); } }

/* ---- logo -------------------------------------------------------------- */

.logo {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	flex-shrink: 0;
}
.logo img { width: 36px; height: 36px; }
.logo__text {
	font: 700 17px/1 var(--f-display);
	letter-spacing: -.01em;
	white-space: nowrap;
}
.logo__text b { font-weight: 700; color: var(--green); text-shadow: 0 0 14px rgba(50, 245, 74, .55); }

/* ---- header ------------------------------------------------------------ */

.head {
	position: sticky;
	top: 0;
	z-index: 40;
	background: rgba(8, 11, 50, .82);
	-webkit-backdrop-filter: blur(14px) saturate(140%);
	backdrop-filter: blur(14px) saturate(140%);
	border-bottom: 1px solid var(--line);
}
.head::after {
	content: '';
	position: absolute;
	left: 0; right: 0; bottom: -1px;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(50, 245, 74, .6) 30%, rgba(32, 223, 243, .6) 60%, rgba(168, 70, 245, .5) 85%, transparent);
	opacity: .7;
}
.head__in {
	display: flex;
	align-items: center;
	gap: var(--s4);
	height: var(--head-h);
}
.head__nav { display: none; }
.head__act {
	display: flex;
	align-items: center;
	gap: var(--s2);
	margin-left: auto;
}
.head__act .btn { min-height: 40px; padding: 0 14px; font-size: 14px; }
.head__act .btn--ghost { display: none; }

.burger {
	display: inline-flex;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 42px;
	height: 42px;
	padding: 0 11px;
	border: 1px solid var(--line-2);
	border-radius: 12px;
	background: var(--bg-3);
	cursor: pointer;
}
.burger__bar { display: block; height: 2px; border-radius: 2px; background: var(--text); }
.burger__bar:nth-child(2) { width: 70%; background: var(--green); }

/* ---- drawer ------------------------------------------------------------ */

.overlay {
	position: fixed;
	inset: 0;
	z-index: 60;
	background: rgba(3, 4, 20, .7);
	-webkit-backdrop-filter: blur(3px);
	backdrop-filter: blur(3px);
}
.overlay[hidden] { display: none; }

.drawer {
	position: fixed;
	top: 0; right: 0; bottom: 0;
	z-index: 70;
	display: flex;
	flex-direction: column;
	gap: var(--s5);
	width: min(340px, 88vw);
	padding: var(--s4) var(--s5) var(--s6);
	overflow-y: auto;
	background: linear-gradient(180deg, var(--bg-3), var(--bg-2));
	border-left: 1px solid var(--line);
	box-shadow: -20px 0 60px -20px rgba(168, 70, 245, .35);
	transform: translateX(105%);
	visibility: hidden;
	transition: transform .28s ease, visibility 0s linear .28s;
}
.drawer.is-open { transform: none; visibility: visible; transition: transform .28s ease; }
.drawer__head { display: flex; align-items: center; justify-content: space-between; }
.drawer__close {
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	border: 1px solid var(--line-2);
	border-radius: 12px;
	background: transparent;
	cursor: pointer;
}
.drawer__list { margin: 0; padding: 0; list-style: none; }
.drawer__list a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 13px 4px;
	border-bottom: 1px solid var(--line);
	font-weight: 600;
}
.drawer__list a::after {
	content: '';
	width: 7px; height: 7px;
	border-top: 2px solid var(--dim);
	border-right: 2px solid var(--dim);
	transform: rotate(45deg);
}
.drawer__list a:hover, .drawer__list a[aria-current] { color: var(--green); }
.drawer__act { display: grid; gap: var(--s2); margin-top: auto; }

/* ---- sections ---------------------------------------------------------- */

.sect { padding: var(--s7) 0 0; }

.sect__head {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	justify-content: space-between;
	gap: var(--s3) var(--s5);
	margin-bottom: var(--s5);
}
.sect__t {
	display: flex;
	align-items: center;
	gap: var(--s3);
	font: 700 clamp(21px, 3vw, 30px)/1.15 var(--f-display);
	letter-spacing: -.01em;
}
.sect__ico {
	display: grid;
	place-items: center;
	flex-shrink: 0;
	width: 38px;
	height: 38px;
	border-radius: 12px;
	background: rgba(32, 223, 243, .1);
	border: 1px solid rgba(32, 223, 243, .4);
	color: var(--cyan);
	box-shadow: 0 0 18px -6px rgba(32, 223, 243, .7);
}
.sect__ico svg { width: 20px; height: 20px; }
.sect__ico--green { color: var(--green); background: rgba(50, 245, 74, .1); border-color: rgba(50, 245, 74, .4); box-shadow: 0 0 18px -6px rgba(50, 245, 74, .7); }
.sect__sub {
	display: block;
	max-width: 620px;
	margin-top: var(--s2);
	color: var(--muted);
	font-size: 15px;
}
.sect__more {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: var(--cyan);
	font-weight: 600;
	font-size: 15px;
	white-space: nowrap;
}
.sect__more svg { width: 16px; height: 16px; transition: transform .2s; }
.sect__more:hover svg { transform: translateX(3px); }

/* ---- hero -------------------------------------------------------------- */

.hero { padding: var(--s6) 0 0; }
.hero__in {
	display: grid;
	gap: var(--s6);
	align-items: center;
}
.hero__kicker {
	display: inline-flex;
	align-items: center;
	gap: var(--s2);
	padding: 7px 14px 7px 11px;
	border: 1px solid rgba(50, 245, 74, .35);
	border-radius: 999px;
	background: rgba(50, 245, 74, .08);
	color: var(--green);
	font: 600 13px/1 var(--f-body);
	letter-spacing: .03em;
}
.hero__t {
	display: block;
	margin: var(--s4) 0 0;
	font: 700 clamp(30px, 7.4vw, 60px)/1.08 var(--f-display);
	letter-spacing: -.02em;
	text-wrap: balance;
}
.hero__t em {
	font-style: normal;
	background: var(--grad-text);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	filter: drop-shadow(0 0 18px rgba(50, 245, 74, .3));
}
.hero__sub {
	display: block;
	max-width: 560px;
	margin-top: var(--s4);
	color: var(--muted);
	font-size: clamp(16px, 1.6vw, 18px);
}
.hero__cta {
	display: flex;
	flex-wrap: wrap;
	gap: var(--s3);
	margin-top: var(--s5);
}
.hero__cta .btn { flex: 1 1 200px; }

.facts {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: var(--s2);
	margin: var(--s5) 0 0;
	padding: 0;
	list-style: none;
}
.fact {
	/* Three tiles share a 390px screen, so the side padding is tighter there:
	 * a figure like «200 000 ₴» needs every pixel of the box. */
	padding: var(--s3) 10px;
	border: 1px solid var(--line);
	border-radius: var(--r-sm);
	background: rgba(17, 23, 71, .7);
}
@media (min-width: 480px) {
	.fact { padding: var(--s3); }
}
.fact__v {
	display: block;
	/* A figure like «200 000 ₴» has to fit a third of a 390px screen, so the
	 * floor scales with the viewport instead of sitting at a fixed 16px. */
	font: 700 clamp(14px, 4vw, 22px)/1.1 var(--f-display);
	color: var(--cyan);
	letter-spacing: -.02em;
	white-space: nowrap;
}
.fact__c { display: block; margin-top: 6px; color: var(--muted); font-size: 12.5px; line-height: 1.35; }
.fact__v, .fact__c { overflow-wrap: anywhere; }

.hero__terms { display: block; margin-top: var(--s4); color: var(--dim); font-size: 12.5px; }

.hero__media { position: relative; }
.hero__frame {
	position: relative;
	padding: 1.5px;
	border-radius: var(--r-lg);
	background: var(--grad-neon);
	box-shadow: 0 0 60px -18px rgba(32, 223, 243, .55), 0 0 80px -30px rgba(168, 70, 245, .7);
}
.hero__shot {
	position: relative;
	overflow: hidden;
	border-radius: calc(var(--r-lg) - 1.5px);
	background: var(--bg-3);
	aspect-ratio: 4 / 3;
}
.hero__shot img { width: 100%; height: 100%; object-fit: cover; }
.hero__shot::after {
	content: '';
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(5, 7, 34, 0) 60%, rgba(5, 7, 34, .55) 100%),
		radial-gradient(420px 260px at 90% 0%, rgba(168, 70, 245, .18), transparent 70%);
}
.hero__tag {
	position: absolute;
	top: var(--s4);
	left: var(--s4);
	z-index: 2;
}

.offer {
	position: relative;
	z-index: 3;
	margin: -36px var(--s3) 0;
	display: grid;
	grid-template-columns: auto 1fr;
	gap: var(--s2) var(--s4);
	align-items: center;
	padding: var(--s4);
	border: 1px solid rgba(50, 245, 74, .35);
	border-radius: var(--r);
	background: rgba(11, 15, 60, .86);
	-webkit-backdrop-filter: blur(12px);
	backdrop-filter: blur(12px);
	box-shadow: 0 20px 50px -20px rgba(0, 0, 0, .8), 0 0 30px -12px rgba(50, 245, 74, .5);
}
.offer__ico {
	display: grid;
	place-items: center;
	width: 48px;
	height: 48px;
	border-radius: 14px;
	background: linear-gradient(135deg, rgba(50, 245, 74, .25), rgba(32, 223, 243, .15));
	border: 1px solid rgba(50, 245, 74, .45);
	color: var(--green);
}
.offer__ico svg { width: 26px; height: 26px; }
.offer__cap { display: block; color: var(--muted); font-size: 12.5px; letter-spacing: .03em; }
.offer__v {
	display: block;
	margin-top: 3px;
	font: 700 clamp(17px, 2.4vw, 22px)/1.15 var(--f-display);
}
.offer__v b { font-weight: 700; color: var(--green); }
.offer__note { grid-column: 1 / -1; color: var(--dim); font-size: 12px; line-height: 1.4; }

/* ---- slot grid --------------------------------------------------------- */

.filters {
	display: flex;
	gap: var(--s2);
	margin: 0 calc(var(--s4) * -1) var(--s5);
	padding: 2px var(--s4) var(--s1);
	overflow-x: auto;
	scrollbar-width: none;
}
.filters::-webkit-scrollbar { display: none; }
.filters a {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	min-height: 38px;
	padding: 0 16px;
	border: 1px solid var(--line);
	border-radius: 999px;
	background: var(--bg-3);
	color: var(--muted);
	font-weight: 600;
	font-size: 14px;
	white-space: nowrap;
	transition: border-color .2s, color .2s;
}
.filters a:hover { border-color: var(--cyan); color: var(--text); }
.filters a.is-on {
	border-color: rgba(50, 245, 74, .55);
	background: rgba(50, 245, 74, .1);
	color: var(--green);
}
.filters svg { width: 16px; height: 16px; }

.slots {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: var(--s3);
}
.slot {
	position: relative;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	border: 1px solid var(--line);
	border-radius: var(--r);
	background: var(--surface);
	isolation: isolate;
	transition: transform .25s ease, border-color .25s, box-shadow .25s;
}
.slot__art {
	position: relative;
	display: block;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	background: var(--bg-3);
}
.slot__art img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease, filter .3s; }
.slot__art::after {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(5, 7, 34, .45);
	opacity: 0;
	transition: opacity .25s;
}
.slot__badge { position: absolute; top: 8px; left: 8px; z-index: 2; box-shadow: 0 4px 14px rgba(5, 7, 34, .6); }
.slot__badge.chip--hot { background: #ff4d68; border-color: #ff4d68; color: #fff; }
.slot__badge.chip--cyan { background: var(--cyan); border-color: var(--cyan); color: #04131a; }
.slot__badge.chip--purple { background: var(--purple); border-color: var(--purple); color: #fff; }
.slot__body {
	display: block;
	padding: 10px 12px 12px;
	border-top: 1px solid var(--line);
}
.slot__t {
	display: block;
	font: 700 14.5px/1.25 var(--f-body);
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.slot__p { display: block; margin-top: 2px; color: var(--muted); font-size: 12.5px; }
.slot__play {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 2;
	display: grid;
	place-items: center;
	width: 54px;
	height: 54px;
	border-radius: 50%;
	background: var(--green);
	color: var(--on-green);
	box-shadow: var(--glow-g), 0 0 40px rgba(50, 245, 74, .55);
	opacity: 0;
	transform: translate(-50%, -40%) scale(.85);
	transition: opacity .25s, transform .25s;
}
.slot__play svg { width: 22px; height: 22px; margin-left: 3px; }
.slot:hover { transform: translateY(-4px); border-color: rgba(50, 245, 74, .6); box-shadow: var(--glow-g), 0 18px 40px -18px rgba(0, 0, 0, .9); }
.slot:hover .slot__art img { transform: scale(1.06); }
.slot:hover .slot__art::after { opacity: 1; }
.slot:hover .slot__play { opacity: 1; transform: translate(-50%, -50%) scale(1); }
.slot:hover .slot__t { color: var(--green); }

/* ---- category cards ---------------------------------------------------- */

.cats {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: var(--s3);
}
.cat {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: var(--s3);
	min-height: 168px;
	padding: var(--s5);
	overflow: hidden;
	border: 1px solid var(--line);
	border-radius: var(--r);
	background: linear-gradient(135deg, var(--surface) 0%, var(--bg-3) 100%);
	isolation: isolate;
	transition: border-color .25s, box-shadow .25s, transform .25s;
}
.cat__art {
	position: absolute;
	top: 0; right: 0; bottom: 0;
	z-index: -1;
	width: 62%;
	-webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 60%);
	mask-image: linear-gradient(90deg, transparent 0%, #000 60%);
	opacity: .6;
	transition: opacity .3s;
}
.cat__art img { width: 100%; height: 100%; object-fit: cover; }
.cat__ico {
	display: grid;
	place-items: center;
	width: 50px;
	height: 50px;
	border-radius: 15px;
	border: 1px solid rgba(32, 223, 243, .45);
	background: rgba(8, 11, 50, .75);
	color: var(--cyan);
	box-shadow: 0 0 22px -6px rgba(32, 223, 243, .7);
}
.cat__ico svg { width: 26px; height: 26px; }
.cat--green .cat__ico { color: var(--green); border-color: rgba(50, 245, 74, .45); box-shadow: 0 0 22px -6px rgba(50, 245, 74, .7); }
.cat--purple .cat__ico { color: #c98bff; border-color: rgba(168, 70, 245, .55); box-shadow: 0 0 22px -6px rgba(168, 70, 245, .8); }
.cat__t {
	display: block;
	max-width: 70%;
	font: 700 18px/1.2 var(--f-display);
	letter-spacing: -.01em;
}
.cat__m { display: block; max-width: 62%; color: var(--muted); font-size: 14px; line-height: 1.45; }
.cat__foot {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--s3);
	margin-top: auto;
}
.cat__go {
	display: grid;
	place-items: center;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	border: 1px solid var(--line-2);
	background: rgba(8, 11, 50, .7);
	color: var(--text);
	transition: background-color .25s, color .25s, border-color .25s;
}
.cat__go svg { width: 16px; height: 16px; }
.cat:hover { transform: translateY(-3px); border-color: rgba(32, 223, 243, .6); box-shadow: var(--glow-c); }
.cat:hover .cat__art { opacity: .85; }
.cat:hover .cat__go { background: var(--green); border-color: var(--green); color: var(--on-green); }

/* ---- promo ------------------------------------------------------------- */

.promo { padding: var(--s7) 0 0; }
.promo__box {
	position: relative;
	display: grid;
	gap: var(--s6);
	padding: var(--s6) var(--s5);
	overflow: hidden;
	border-radius: var(--r-lg);
	border: 1px solid rgba(168, 70, 245, .45);
	background:
		radial-gradient(520px 360px at 0% 100%, rgba(50, 245, 74, .16), transparent 70%),
		radial-gradient(620px 420px at 100% 0%, rgba(168, 70, 245, .38), transparent 70%),
		linear-gradient(135deg, var(--bg-3) 0%, var(--surface-2) 100%);
	box-shadow: 0 0 70px -30px rgba(168, 70, 245, .8);
	isolation: isolate;
}
.promo__bg {
	position: absolute;
	inset: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: .32;
	mix-blend-mode: screen;
}
.promo__box::after {
	content: '';
	position: absolute;
	inset: 0;
	z-index: -1;
	background: linear-gradient(90deg, rgba(8, 11, 50, .9) 0%, rgba(8, 11, 50, .72) 45%, rgba(8, 11, 50, .2) 100%);
	pointer-events: none;
}
.promo__kicker { color: var(--cyan); font: 600 13px/1 var(--f-body); letter-spacing: .12em; text-transform: uppercase; }
.promo__t {
	display: block;
	margin-top: var(--s3);
	font: 700 clamp(24px, 4.2vw, 42px)/1.12 var(--f-display);
	letter-spacing: -.015em;
	text-wrap: balance;
}
.promo__lead { display: block; max-width: 560px; margin-top: var(--s3); color: var(--text-2); }

.perks { display: grid; gap: var(--s3); margin: var(--s5) 0 0; padding: 0; list-style: none; }
.perk {
	display: grid;
	grid-template-columns: 34px 1fr;
	gap: 2px var(--s3);
	align-items: start;
}
.perk__ico {
	grid-row: span 2;
	display: grid;
	place-items: center;
	width: 34px;
	height: 34px;
	border-radius: 10px;
	background: rgba(50, 245, 74, .12);
	border: 1px solid rgba(50, 245, 74, .45);
	color: var(--green);
}
.perk__ico svg { width: 17px; height: 17px; }
.perk__t { font-weight: 700; }
.perk__x { color: var(--muted); font-size: 14px; line-height: 1.45; }

.promo__card {
	align-self: center;
	display: grid;
	gap: var(--s3);
	padding: var(--s5);
	border-radius: var(--r);
	border: 1px solid rgba(255, 255, 255, .14);
	background: rgba(5, 7, 34, .62);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	text-align: center;
}
.promo__cap { color: var(--muted); font-size: 13px; letter-spacing: .06em; text-transform: uppercase; }
.promo__num {
	display: block;
	font: 800 clamp(56px, 11vw, 92px)/1 var(--f-display);
	letter-spacing: -.03em;
	background: var(--grad-text);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	filter: drop-shadow(0 0 24px rgba(50, 245, 74, .35));
}
.promo__plus { display: block; font: 700 clamp(17px, 2.2vw, 21px)/1.2 var(--f-display); }
.promo__plus b { color: var(--cyan); font-weight: 700; }
.promo__small { color: var(--dim); font-size: 12px; line-height: 1.45; }

/* ---- content plate ----------------------------------------------------- */

.plate { padding: var(--s7) 0 var(--s8); }
.plate__box {
	padding: var(--s6) var(--s4);
	border: 1px solid var(--line);
	border-radius: var(--r-lg);
	background: linear-gradient(180deg, rgba(17, 23, 71, .92), rgba(8, 11, 50, .92));
}

.prose {
	max-width: 860px;
	margin-inline: auto;
	color: var(--text-2);
	font-size: 17px;
	line-height: 1.72;
	overflow-wrap: break-word;
}
.prose > :first-child { margin-top: 0; }
.prose > :last-child { margin-bottom: 0; }
.prose h1, .prose h2, .prose h3, .prose h4 {
	color: var(--text);
	font-family: var(--f-display);
	font-weight: 700;
	letter-spacing: -.015em;
	text-wrap: balance;
	/* A display face at 40px turns one long word into a horizontal scrollbar. */
	overflow-wrap: break-word;
}
/*
 * h1 — the page title, and on these sites it can run to ninety characters.
 * It is set to be READ: the full column width so it takes as few lines as it
 * can, ordinary leading, almost no tracking squeeze. The neon rule above it
 * carries the decoration instead of the type.
 */
.prose h1 {
	position: relative;
	margin: 0 0 var(--s5);
	padding-top: 28px;
	font-size: clamp(26px, 3.6vw, 36px);
	line-height: 1.24;
	letter-spacing: -.01em;
}
.prose h1::before {
	content: '';
	position: absolute;
	left: 0; top: 0;
	width: 62px; height: 4px;
	border-radius: 4px;
	background: var(--grad-text);
	box-shadow: 0 0 18px -2px rgba(50, 245, 74, .55);
}

/* The paragraph right after the title reads as the lead, not as body copy. */
.prose h1 + p {
	margin-top: calc(var(--s3) * -1);
	color: var(--text);
	font-size: 18px;
	line-height: 1.66;
}

.prose h2 {
	position: relative;
	margin: 1.9em 0 .7em;
	padding-left: 18px;
	font-size: clamp(21px, 3vw, 28px);
	line-height: 1.22;
}
.prose h2::before {
	content: '';
	position: absolute;
	left: 0; top: .18em; bottom: .18em;
	width: 4px;
	border-radius: 4px;
	background: linear-gradient(180deg, var(--green), var(--cyan));
	box-shadow: 0 0 12px rgba(50, 245, 74, .6);
}
.prose h3 { margin: 1.6em 0 .6em; font-size: clamp(18px, 2.3vw, 21px); line-height: 1.3; color: var(--cyan-lt); }
.prose h4 { margin: 1.4em 0 .5em; font-size: 17px; }
.prose p { margin: 0 0 1.1em; }
.prose strong, .prose b { color: var(--text); font-weight: 700; }
.prose a {
	color: var(--cyan);
	text-decoration: underline;
	text-decoration-color: rgba(32, 223, 243, .4);
	text-underline-offset: 3px;
	transition: color .2s, text-decoration-color .2s;
}
.prose a:hover { color: var(--green); text-decoration-color: var(--green); }
.prose ul, .prose ol { margin: 0 0 1.2em; padding: 0; list-style: none; }
.prose li { position: relative; margin: .45em 0; padding-left: 28px; }
.prose ul > li::before {
	content: '';
	position: absolute;
	left: 6px;
	top: .62em;
	width: 8px;
	height: 8px;
	border-radius: 2px;
	background: var(--green);
	box-shadow: 0 0 8px rgba(50, 245, 74, .8);
	transform: rotate(45deg);
}
.prose ol { counter-reset: li; }
.prose ol > li { counter-increment: li; padding-left: 36px; }
.prose ol > li::before {
	content: counter(li);
	position: absolute;
	left: 0;
	top: .15em;
	display: grid;
	place-items: center;
	width: 24px;
	height: 24px;
	border-radius: 8px;
	background: rgba(32, 223, 243, .12);
	border: 1px solid rgba(32, 223, 243, .45);
	color: var(--cyan);
	font: 700 12px/1 var(--f-display);
}
.prose blockquote {
	margin: 1.5em 0;
	padding: var(--s4) var(--s5);
	border-left: 3px solid var(--purple);
	border-radius: 0 var(--r-sm) var(--r-sm) 0;
	background: linear-gradient(90deg, rgba(168, 70, 245, .14), rgba(23, 29, 80, .5));
	color: var(--text);
}
.prose blockquote p:last-child { margin-bottom: 0; }
.prose img { margin: 1.4em 0; border-radius: var(--r); border: 1px solid var(--line); }
.prose figure { margin: 1.4em 0; }
.prose figure img { margin: 0; }
.prose figcaption { margin-top: var(--s2); color: var(--dim); font-size: 14px; }
.prose hr { margin: 2em 0; border: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--line-2), transparent); }
.prose code { padding: 2px 6px; border-radius: 6px; background: var(--surface); color: var(--cyan-lt); font-size: .9em; }
.prose table {
	display: table;
	width: 100%;
	max-width: 100%;
	margin: 1.5em 0;
	overflow-x: auto;
	border-collapse: separate;
	border-spacing: 0;
	border: 1px solid var(--line);
	border-radius: var(--r-sm);
	font-size: 15px;
	line-height: 1.5;
}
.prose th, .prose td { padding: 12px 14px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; min-width: 120px; }
.prose th { background: var(--surface-2); color: var(--text); font-weight: 700; }
.prose tr:nth-child(even) td { background: rgba(23, 29, 80, .45); }
.prose tr:last-child td { border-bottom: 0; }

/* ---- inner pages ------------------------------------------------------- */

.inner { padding-top: var(--s5); }
.crumbs {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 6px;
	color: var(--dim);
	font-size: 14px;
}
.crumbs a { color: var(--muted); }
.crumbs a:hover { color: var(--cyan); }
.crumbs__sep { opacity: .6; }
.crumbs__now { color: var(--text-2); }
/*
 * The inner page's title gets the same setting as the h1 in the prose — it IS
 * the h1 on most pages — so the two never look like different sites.
 */
.inner__t {
	position: relative;
	display: block;
	margin: var(--s4) 0 0;
	padding-top: 28px;
	font: 700 clamp(26px, 3.9vw, 40px)/1.22 var(--f-display);
	letter-spacing: -.012em;
	text-wrap: balance;
	overflow-wrap: break-word;
}
.inner__t::before {
	content: '';
	position: absolute;
	left: 0; top: 0;
	width: 62px; height: 4px;
	border-radius: 4px;
	background: var(--grad-text);
	box-shadow: 0 0 18px -2px rgba(50, 245, 74, .55);
}
.inner__upd { display: inline-flex; align-items: center; gap: 8px; margin-top: var(--s3); color: var(--muted); font-size: 14px; }
.inner + .plate { padding-top: var(--s5); }

/* ---- compact offer bar (above a cluster article) ---------------------- */
/*
 * The full promo band belongs to the home page. A cluster article runs to
 * thousands of pixels, so its offer is a single line at the top instead: mark,
 * the figure, the button.
 */
.obar {
	display: grid;
	gap: var(--s4);
	align-items: center;
	margin-top: var(--s5);
	padding: var(--s5);
	border: 1px solid var(--line);
	border-radius: var(--r);
	background:
		radial-gradient(120% 160% at 0% 0%, rgba(50, 245, 74, .10), transparent 55%),
		radial-gradient(120% 160% at 100% 100%, rgba(168, 70, 245, .14), transparent 60%),
		var(--bg-3);
}
.obar__ico {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px; height: 52px;
	border-radius: 16px;
	background: rgba(50, 245, 74, .12);
	color: var(--green);
	box-shadow: var(--glow-g);
}
.obar__ico svg { width: 26px; height: 26px; }
.obar__txt { display: grid; gap: 6px; min-width: 0; }
.obar__cap {
	color: var(--muted);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: .08em;
	text-transform: uppercase;
}
.obar__val {
	color: var(--text);
	font-family: var(--f-display);
	font-size: clamp(18px, 2.1vw, 24px);
	font-weight: 700;
	line-height: 1.25;
	letter-spacing: -.01em;
}
.obar__val b { color: var(--green); }
.obar__note { color: var(--dim); font-size: 13px; line-height: 1.5; }
.obar .btn { white-space: nowrap; }

@media (min-width: 768px) {
	.obar { grid-template-columns: auto 1fr auto; padding: var(--s5) var(--s6); }
}

/* ---- toplist ----------------------------------------------------------- */

.ranks { display: grid; gap: var(--s3); margin-top: var(--s5); }
.rank {
	display: grid;
	gap: var(--s4);
	padding: var(--s5) var(--s4);
	border: 1px solid var(--line);
	border-radius: var(--r);
	background: linear-gradient(135deg, var(--surface), var(--bg-3));
}
.rank--top { border-color: rgba(50, 245, 74, .55); box-shadow: 0 0 40px -18px rgba(50, 245, 74, .6); }
.rank__head { display: flex; flex-wrap: wrap; align-items: center; gap: var(--s3); }
.rank__n {
	display: grid;
	place-items: center;
	width: 40px;
	height: 40px;
	border-radius: 12px;
	background: var(--bg-2);
	border: 1px solid rgba(32, 223, 243, .5);
	color: var(--cyan);
	font: 700 16px/1 var(--f-display);
}
.rank--top .rank__n { background: var(--green); border-color: var(--green); color: var(--on-green); box-shadow: var(--glow-g); }
.rank__t { font: 700 clamp(17px, 2.3vw, 21px)/1.2 var(--f-display); }
.rank__lead { display: block; margin-top: var(--s2); color: var(--muted); }
.rank__facts {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: var(--s2);
	margin: var(--s4) 0 0;
}
.rank__facts div { padding: 10px 12px; border-radius: var(--r-sm); background: rgba(5, 7, 34, .5); border: 1px solid var(--line); }
.rank__facts dt { color: var(--dim); font-size: 12.5px; }
.rank__facts dd { margin: 2px 0 0; font-weight: 600; }
.rank__gives { color: var(--green); }
.rank__side { display: grid; gap: var(--s2); align-content: center; text-align: center; }
.rank__small { color: var(--dim); font-size: 12px; }

/* ---- review ------------------------------------------------------------ */

.rev {
	display: grid;
	gap: var(--s5);
	margin-top: var(--s5);
	padding: var(--s5) var(--s4);
	border: 1px solid var(--line);
	border-radius: var(--r-lg);
	background:
		radial-gradient(500px 300px at 100% 0%, rgba(168, 70, 245, .22), transparent 70%),
		linear-gradient(135deg, var(--surface), var(--bg-3));
}
.rev__id { display: flex; flex-wrap: wrap; align-items: center; gap: var(--s4); }
.rev__logo {
	display: grid;
	place-items: center;
	width: 64px;
	height: 64px;
	border-radius: 18px;
	background: var(--bg-2);
	border: 1.5px solid var(--green);
	color: var(--green);
	font: 800 22px/1 var(--f-display);
	box-shadow: var(--glow-g);
}
.rev__names { display: grid; gap: 6px; flex: 1 1 180px; }
.rev__t { font: 700 20px/1.2 var(--f-display); }
.rev__rate { display: flex; align-items: center; gap: var(--s2); color: var(--muted); font-size: 14px; }
.stars { position: relative; display: inline-block; line-height: 0; }
.stars__bg, .stars__fg { display: flex; gap: 2px; }
.stars__bg svg { fill: var(--surface-2); }
.stars__fg { position: absolute; inset: 0 auto 0 0; overflow: hidden; white-space: nowrap; }
.stars__fg svg { flex-shrink: 0; fill: var(--green); filter: drop-shadow(0 0 4px rgba(50, 245, 74, .6)); }
.rev__score {
	display: grid;
	place-items: center;
	min-width: 86px;
	padding: 10px 14px;
	border-radius: var(--r-sm);
	border: 1px solid rgba(32, 223, 243, .45);
	background: rgba(32, 223, 243, .08);
	text-align: center;
}
.rev__score-v { font: 800 26px/1 var(--f-display); color: var(--cyan); }
.rev__score-c { margin-top: 4px; color: var(--muted); font-size: 11.5px; }
.rev__facts {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: var(--s2);
	margin: 0;
}
.rev__facts div { padding: 10px 12px; border-radius: var(--r-sm); background: rgba(5, 7, 34, .5); border: 1px solid var(--line); }
.rev__facts dt { color: var(--dim); font-size: 12.5px; }
.rev__facts dd { margin: 2px 0 0; font-weight: 600; }
.rev__cta { display: grid; gap: var(--s3); align-content: center; }
.rev__bonus-c { display: block; color: var(--muted); font-size: 13px; }
.rev__bonus-v { display: block; margin-top: 2px; font: 700 18px/1.25 var(--f-display); color: var(--green); }
.rev__small { color: var(--dim); font-size: 12px; }

.pc { display: grid; gap: var(--s3); margin-top: var(--s3); }
.pc__col { padding: var(--s5) var(--s4); border-radius: var(--r); border: 1px solid var(--line); background: var(--bg-3); }
.pc__col--pro { border-color: rgba(50, 245, 74, .35); }
.pc__col--con { border-color: rgba(255, 77, 104, .35); }
.pc__t { display: block; margin-bottom: var(--s3); font: 700 16px/1.2 var(--f-display); }
.pc__col--pro .pc__t { color: var(--green); }
.pc__col--con .pc__t { color: var(--error); }
.pc ul { margin: 0; padding: 0; list-style: none; display: grid; gap: var(--s2); }
.pc li { position: relative; padding-left: 26px; color: var(--text-2); }
.pc li::before { position: absolute; left: 0; top: 0; font-weight: 800; }
.pc__col--pro li::before { content: '+'; color: var(--green); }
.pc__col--con li::before { content: '−'; color: var(--error); }

.verdict { padding-bottom: var(--s8); }
.verdict__box {
	display: grid;
	gap: var(--s4);
	justify-items: start;
	padding: var(--s6) var(--s5);
	border-radius: var(--r-lg);
	border: 1px solid rgba(50, 245, 74, .4);
	background:
		radial-gradient(500px 280px at 0% 100%, rgba(50, 245, 74, .16), transparent 70%),
		linear-gradient(135deg, var(--surface), var(--bg-3));
}
.verdict__t { font: 700 22px/1.2 var(--f-display); }
.verdict__x { max-width: 760px; color: var(--text-2); }
.plate + .verdict { margin-top: calc(var(--s8) * -1 + var(--s5)); }

/* ---- landing ----------------------------------------------------------- */

.lhero { padding: var(--s7) 0 var(--s4); text-align: center; }
.lhero__in { display: grid; justify-items: center; gap: var(--s4); }
.lhero__t {
	display: block;
	max-width: 900px;
	margin: 0;
	font: 700 clamp(28px, 6vw, 56px)/1.1 var(--f-display);
	letter-spacing: -.02em;
	text-wrap: balance;
}
.lhero__sub { display: block; max-width: 620px; color: var(--muted); font-size: 17px; }
.lcard {
	display: grid;
	gap: var(--s4);
	width: min(560px, 100%);
	margin-top: var(--s3);
	padding: var(--s5);
	border-radius: var(--r-lg);
	border: 1px solid rgba(50, 245, 74, .4);
	background: linear-gradient(135deg, var(--surface), var(--bg-3));
	box-shadow: 0 0 60px -26px rgba(50, 245, 74, .7);
}
.lcard__facts { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--s2); margin: 0; }
.lcard__facts div { padding: 10px 8px; border-radius: var(--r-sm); background: rgba(5, 7, 34, .5); border: 1px solid var(--line); }
.lcard__facts dt { color: var(--dim); font-size: 12px; }
.lcard__facts dd { margin: 4px 0 0; font: 700 15px/1.2 var(--f-display); color: var(--cyan); }
.lcard__small { color: var(--dim); font-size: 12px; }

.steps { display: grid; gap: var(--s3); margin: 0; padding: 0; list-style: none; }
.step {
	display: grid;
	grid-template-columns: 44px 1fr;
	gap: 2px var(--s3);
	padding: var(--s4);
	border-radius: var(--r);
	border: 1px solid var(--line);
	background: var(--bg-3);
}
.step__n {
	grid-row: span 2;
	display: grid;
	place-items: center;
	width: 44px;
	height: 44px;
	border-radius: 13px;
	background: rgba(32, 223, 243, .1);
	border: 1px solid rgba(32, 223, 243, .45);
	color: var(--cyan);
	font: 700 17px/1 var(--f-display);
}
.step__t { font-weight: 700; }
.step__x { color: var(--muted); font-size: 14.5px; }
.sect--tight { padding-top: var(--s5); }

/* ---- footer ------------------------------------------------------------ */

.foot {
	position: relative;
	padding: var(--s7) 0 var(--s5);
	border-top: 1px solid var(--line);
	background: linear-gradient(180deg, var(--bg-2), var(--bg));
}
.foot::before {
	content: '';
	position: absolute;
	top: -1px; left: 10%; right: 10%;
	height: 1px;
	background: var(--grad-neon);
	opacity: .7;
	box-shadow: 0 0 18px rgba(32, 223, 243, .6);
}
.foot__top { display: grid; gap: var(--s6); }
.foot__brand { display: grid; gap: var(--s4); align-content: start; }
.foot__blurb { display: block; max-width: 380px; color: var(--muted); font-size: 14.5px; }
.foot__cols {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: var(--s6) var(--s5);
}
.foot__h {
	display: block;
	margin-bottom: var(--s3);
	color: var(--text);
	font: 700 13px/1.2 var(--f-display);
	letter-spacing: .04em;
	text-transform: uppercase;
}
.foot__cols ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 10px; }
.foot__cols a { color: var(--muted); font-size: 14.5px; transition: color .2s; }
.foot__cols a:hover { color: var(--green); }

.foot__mid {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: var(--s2);
	margin-top: var(--s6);
	padding: var(--s4) 0;
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
}
.foot__age {
	display: grid;
	place-items: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 2px solid var(--error);
	color: var(--error);
	font: 800 13px/1 var(--f-display);
	box-shadow: 0 0 16px -4px rgba(255, 77, 104, .7);
}
.foot__legal { margin-top: var(--s5); color: var(--dim); font-size: 13px; line-height: 1.6; }
.foot__legal p { margin: 0 0 var(--s3); max-width: 900px; }
.foot__legal p:last-child { margin-bottom: 0; color: var(--muted); }

/* ---- sticky mobile CTA ------------------------------------------------- */

.bar {
	position: fixed;
	left: 0; right: 0; bottom: 0;
	z-index: 50;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--s3);
	padding: 10px var(--s4) calc(10px + env(safe-area-inset-bottom, 0px));
	background: rgba(8, 11, 50, .92);
	-webkit-backdrop-filter: blur(14px);
	backdrop-filter: blur(14px);
	border-top: 1px solid rgba(50, 245, 74, .35);
	box-shadow: 0 -12px 40px -16px rgba(50, 245, 74, .45);
}
.bar__text { display: grid; min-width: 0; }
.bar__cap { color: var(--muted); font-size: 12px; line-height: 1.2; }
.bar__val {
	font: 700 16px/1.25 var(--f-display);
	color: var(--green);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.bar .btn { flex-shrink: 0; min-height: 46px; }

/* ---- breakpoints ------------------------------------------------------- */

/* ---- language switcher ----------------------------------------------- */
/*
 * One component, rendered twice: a dropdown in the header for desktop and an
 * inline list inside the drawer for phones, where the header row (mark,
 * wordmark, sign-up, burger) has no space left. Both are click-driven — a
 * hover panel is unreachable on a touch screen.
 */

.lsw { position: relative; }
.lsw__btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	min-height: 40px;
	padding: 0 var(--s3);
	border: 1px solid var(--line);
	border-radius: var(--r-sm);
	background: rgba(23, 29, 80, .5);
	color: var(--text);
	font: inherit;
	font-size: 14px;
	font-weight: 700;
	cursor: pointer;
	transition: border-color .2s, background-color .2s;
}
.lsw__btn:hover, .lsw.is-open .lsw__btn { border-color: var(--line-2); background: var(--surface); }
.lsw__globe { color: var(--cyan); }
.lsw__caret { color: var(--muted); transition: transform .18s ease; }
.lsw.is-open .lsw__caret { transform: rotate(180deg); }
.lsw__panel {
	position: absolute;
	inset-inline-end: 0;
	top: calc(100% + 8px);
	z-index: 90;
	min-width: 210px;
	margin: 0;
	padding: var(--s2);
	list-style: none;
	border: 1px solid var(--line);
	border-radius: var(--r);
	background: var(--bg-2);
	box-shadow: 0 18px 44px rgba(0, 0, 0, .55);
	opacity: 0;
	visibility: hidden;
	transform: translateY(-4px);
	transition: opacity .16s ease, transform .16s ease, visibility .16s;
}
.lsw.is-open .lsw__panel { opacity: 1; visibility: visible; transform: none; }
.lsw__opt {
	display: flex;
	align-items: center;
	gap: var(--s3);
	padding: var(--s2) var(--s3);
	border-radius: 10px;
	color: var(--text-2);
	font-size: 14px;
	font-weight: 600;
	transition: color .2s, background-color .2s;
}
.lsw__opt b {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 34px;
	height: 24px;
	border-radius: 6px;
	background: var(--surface-2);
	color: var(--muted);
	font-family: var(--f-display);
	font-size: 12px;
	font-weight: 700;
}
.lsw__opt:hover { background: var(--surface); color: var(--text); }
.lsw__opt.is-on { color: var(--green); }
.lsw__opt.is-on b { background: var(--green); color: var(--on-green); }

/* Header placement appears only once the desktop header does. */
.lsw--hdr { display: none; }
.lsw--drawer { margin: var(--s4) var(--s5) 0; }
.lsw--drawer .lsw__btn { width: 100%; justify-content: flex-start; min-height: 46px; }
.lsw--drawer .lsw__caret { margin-inline-start: auto; }
.lsw--drawer .lsw__panel {
	position: static;
	min-width: 0;
	margin-top: var(--s2);
	box-shadow: none;
	display: none;
	opacity: 1;
	visibility: visible;
	transform: none;
}
.lsw--drawer.is-open .lsw__panel { display: block; }

/*
 * Content tables: size to their own content and scroll inside their own box.
 * A table squeezed into the column width technically scrolls while looking
 * broken — five columns at ~60px each wrap every cell into a stack.
 */
.prose .table-scroll { overflow-x: auto; margin: var(--s5) 0; -webkit-overflow-scrolling: touch; }
.prose .table-scroll table { width: max-content; min-width: 100%; margin: 0; }
.prose .table-scroll th { white-space: nowrap; }
.prose .table-scroll td { max-width: 38ch; }

/*
 * On a phone a ninety-character title runs to six lines, and the display face
 * at full weight turns that into a wall. A notch lighter reads far better and
 * still holds the page.
 */
@media (max-width: 639px) {
	.prose h1, .inner__t { font-weight: 600; letter-spacing: -.005em; }

	/* The wrapper scrolls now; the table itself stays a table. */
}

@media (min-width: 480px) {
	.logo__text { font-size: 18px; }
	.head__act .btn--ghost { display: inline-flex; }
	.hero__media { padding-bottom: var(--s6); }
	.offer { position: absolute; left: var(--s5); right: auto; bottom: 0; max-width: 400px; margin: 0; }
}

@media (min-width: 640px) {
	.slots { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--s4); }
	.cats { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--s4); }
	.rank__facts { grid-template-columns: repeat(3, minmax(0, 1fr)); }
	.rev__facts { grid-template-columns: repeat(3, minmax(0, 1fr)); }
	.pc { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.foot__cols { grid-template-columns: repeat(4, minmax(0, 1fr)); }
	.steps { grid-template-columns: repeat(3, minmax(0, 1fr)); }
	.step { grid-template-columns: 1fr; gap: var(--s2); }
	.step__n { grid-row: auto; }
}

@media (min-width: 768px) {
	.wrap { padding-inline: var(--s5); }
	.filters { margin-inline: 0; padding-inline: 0; flex-wrap: wrap; }
	.plate__box { padding: var(--s7) var(--s6); }
	.promo__box { padding: var(--s7) var(--s6); }
	.rank { padding: var(--s5); }
	.rev { padding: var(--s6); }
}

@media (min-width: 960px) {
	.slots { grid-template-columns: repeat(4, minmax(0, 1fr)); }
	.hero { padding-top: var(--s7); }
	.hero__in { grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); gap: var(--s7); }
	.hero__cta .btn { flex: 0 0 auto; }
	.hero__media { padding-bottom: 0; }
	.offer { left: -36px; bottom: -28px; }
	.promo__box { grid-template-columns: minmax(0, 1.25fr) minmax(0, .75fr); align-items: center; }
	.rank { grid-template-columns: minmax(0, 1fr) 240px; align-items: center; }
	.rev { grid-template-columns: minmax(0, 1fr) 280px; }
	.rev__id, .rev__facts { grid-column: 1; }
	.rev__cta { grid-column: 2; grid-row: 1 / span 2; }
	.foot__top { grid-template-columns: minmax(0, .8fr) minmax(0, 2fr); gap: var(--s7); }
}

@media (min-width: 1024px) {
	body { padding-bottom: 0; }
	.bar { display: none; }
	.burger { display: none; }
	.head__nav {
		display: flex;
		align-items: center;
		gap: 2px;
		margin-inline: auto;
	}
	.head__nav a {
		position: relative;
		padding: 10px 13px;
		border-radius: 10px;
		color: var(--muted);
		font-weight: 600;
		font-size: 15px;
		transition: color .2s, background-color .2s;
	}
	.head__nav a:hover { color: var(--text); background: rgba(32, 38, 93, .6); }
	.head__nav a.is-active { color: var(--green); }
	.head__nav a.is-active::after {
		content: '';
		position: absolute;
		left: 13px; right: 13px; bottom: 3px;
		height: 2px;
		border-radius: 2px;
		background: var(--green);
		box-shadow: 0 0 10px var(--green);
	}
	.head__act { margin-left: 0; }
	.lsw--hdr { display: block; }
	.lsw--drawer { display: none; }
	.head__act .btn { min-height: 42px; padding: 0 18px; }
	:root { --head-h: 74px; }
	.cats { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (min-width: 1200px) {
	.slots { grid-template-columns: repeat(6, minmax(0, 1fr)); }
}

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
