@font-face {
	font-family: 'Inter';
	font-style: normal;
	font-weight: 100 900;
	font-display: swap;
	src: url('inter-cyr.woff2') format('woff2');
	unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
	font-family: 'Inter';
	font-style: normal;
	font-weight: 100 900;
	font-display: swap;
	src: url('inter-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;
}

/*
 * bet365_01_vst — template 65.
 *
 * A light sportsbook shell: white and pale-grey page, deep green bands for the
 * hero, the featured offer and the footer, one lime-yellow accent reserved for
 * calls to action so a button is never in doubt. Corners 8-12px, shadows kept
 * shallow, content capped at 1280px.
 *
 * Font files sit beside this stylesheet, so the @font-face URLs are relative:
 * an absolute /assets path breaks the offline preview render, a relative one
 * resolves against the stylesheet in both places.
 */

:root {
	--green: #0b6e46;
	--green-d: #07341f;
	--green-x: #042516;
	--green-soft: #e8f3ed;
	--lime: #ccf000;
	--lime-d: #b4d400;
	--ink: #12181d;
	--ink-2: #56626d;
	--ink-3: #8a959e;
	--line: #e4e9ec;
	--bg: #ffffff;
	--bg-2: #f4f7f8;
	--wrap: 1280px;
	--pad: 24px;
	--r: 12px;
	--r-sm: 8px;
	--sh: 0 1px 2px rgba(10, 40, 26, .05), 0 10px 28px rgba(10, 40, 26, .07);
	--sh-h: 0 2px 4px rgba(10, 40, 26, .06), 0 16px 40px rgba(10, 40, 26, .12);
	--t: .18s ease;
}

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

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

body {
	margin: 0;
	background: var(--bg);
	color: var(--ink);
	font: 400 16px/1.6 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
	font-feature-settings: 'tnum' 0;
	-webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; }
img { height: auto; display: block; border: 0; }
a { color: inherit; text-decoration: none; }
ul, ol, dl, dd { margin: 0; padding: 0; }
li { list-style: none; }

.skip {
	position: absolute; left: -9999px; top: 0; z-index: 100;
	background: var(--lime); color: var(--green-d);
	padding: 10px 18px; border-radius: 0 0 var(--r-sm) 0; font-weight: 600;
}
.skip:focus { left: 0; }

/* ---- buttons --------------------------------------------------------- */

.btn {
	display: inline-flex; align-items: center; justify-content: center;
	gap: 8px; padding: 11px 20px; border: 1px solid transparent;
	border-radius: var(--r-sm); font-size: 15px; font-weight: 600; line-height: 1.2;
	cursor: pointer; text-align: center;
	transition: background var(--t), color var(--t), border-color var(--t), transform var(--t), box-shadow var(--t);
}
.btn--lime { background: var(--lime); color: var(--green-d); }
.btn--lime:hover { background: var(--lime-d); transform: translateY(-1px); box-shadow: 0 6px 18px rgba(150, 180, 0, .32); }
.btn--ghost { background: transparent; color: #fff; border-color: rgba(255, 255, 255, .45); }
.btn--ghost:hover { background: rgba(255, 255, 255, .12); border-color: #fff; }
.btn--lg { padding: 15px 28px; font-size: 16px; }

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

.head {
	position: sticky; top: 0; z-index: 40;
	background: var(--green-d);
	border-bottom: 1px solid rgba(255, 255, 255, .08);
	transition: box-shadow var(--t);
}
.head.is-stuck { box-shadow: 0 6px 24px rgba(4, 37, 22, .28); }
.head__in {
	max-width: var(--wrap); margin: 0 auto; padding: 0 var(--pad);
	height: 72px; display: flex; align-items: center; gap: 28px;
}

.logo { display: inline-flex; align-items: center; gap: 10px; flex: none; }
.logo__mark {
	width: 26px; height: 26px; border-radius: 7px; flex: none;
	background: var(--lime);
	box-shadow: inset 0 0 0 5px var(--green-d), 0 0 0 2px var(--lime);
}
.logo__text {
	font-size: 21px; font-weight: 800; letter-spacing: -.02em; color: #fff;
}
.logo--foot .logo__mark { box-shadow: inset 0 0 0 5px var(--green-x), 0 0 0 2px var(--lime); }

.head__nav { display: flex; align-items: center; gap: 22px; margin-right: auto; }
.head__nav a {
	position: relative; font-size: 15px; font-weight: 500;
	color: rgba(255, 255, 255, .82); padding: 6px 0; transition: color var(--t);
}
.head__nav a::after {
	content: ''; position: absolute; left: 0; right: 0; bottom: 0;
	height: 2px; background: var(--lime); transform: scaleX(0);
	transition: transform var(--t); border-radius: 2px;
}
.head__nav a:hover, .head__nav a[aria-current] { color: #fff; }
.head__nav a:hover::after, .head__nav a[aria-current]::after { transform: scaleX(1); }

.head__auth { display: flex; align-items: center; gap: 10px; flex: none; }

/* ---- language switcher ------------------------------------------ */

.lang { position: relative; flex: none; }
.lang__btn {
	display: inline-flex; align-items: center; gap: 6px; height: 40px; padding: 0 10px;
	background: transparent; color: #fff; font: inherit; font-size: 14px; font-weight: 600; cursor: pointer;
	border: 1px solid rgba(255, 255, 255, .25); border-radius: var(--r-sm); transition: border-color var(--t);
}
.lang__btn:hover, .lang.is-open .lang__btn { border-color: var(--lime); }
.lang__caret { width: 7px; height: 7px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: translateY(-2px) rotate(45deg); transition: transform var(--t); }
.lang.is-open .lang__caret { transform: translateY(1px) rotate(-135deg); }
.lang__panel {
	position: absolute; top: calc(100% + 8px); right: 0; z-index: 45; min-width: 190px;
	margin: 0; padding: 6px; list-style: none; background: #fff; border-radius: var(--r-sm);
	box-shadow: 0 12px 32px rgba(4, 37, 22, .22); display: none;
}
.lang.is-open .lang__panel { display: block; }
.lang__opt { display: flex; align-items: center; gap: 10px; padding: 9px 10px; border-radius: 6px; color: var(--ink); font-size: 14px; }
.lang__opt b { min-width: 30px; padding: 2px 0; border-radius: 4px; background: var(--bg-2); font-size: 12px; text-align: center; }
.lang__opt:hover { background: var(--bg-2); }
.lang__opt.is-on { color: var(--green); font-weight: 600; }
.lang__opt.is-on b { background: var(--lime); color: var(--ink); }
.lang--drawer { display: none; }
.lang--drawer .lang__btn { width: 100%; justify-content: flex-start; }
.lang--drawer .lang__caret { margin-left: auto; }
.lang--drawer .lang__panel { position: static; margin-top: 8px; box-shadow: none; }

.burger {
	display: none; width: 44px; height: 44px; flex: none; margin-left: auto;
	background: transparent; border: 1px solid rgba(255, 255, 255, .25);
	border-radius: var(--r-sm); cursor: pointer;
	flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.burger__bar { width: 18px; height: 2px; background: #fff; border-radius: 2px; }

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

.overlay {
	position: fixed; inset: 0; z-index: 50;
	background: rgba(4, 37, 22, .55); opacity: 0;
	transition: opacity var(--t);
}
.overlay.is-open { opacity: 1; }

.drawer {
	position: fixed; top: 0; right: 0; bottom: 0; z-index: 60;
	width: min(320px, 88vw); background: var(--green-d);
	padding: 18px 20px 24px; display: flex; flex-direction: column; gap: 18px;
	transform: translateX(100%); transition: transform .22s ease;
	overflow-y: auto;
}
.drawer.is-open { transform: none; }
.drawer__head { display: flex; align-items: center; justify-content: space-between; }
.drawer__close {
	width: 40px; height: 40px; background: transparent; color: #fff; cursor: pointer;
	border: 1px solid rgba(255, 255, 255, .25); border-radius: var(--r-sm);
	display: inline-flex; align-items: center; justify-content: center;
}
.drawer__list { display: flex; flex-direction: column; }
.drawer__list a {
	display: block; padding: 13px 2px; font-size: 16px; font-weight: 500;
	color: rgba(255, 255, 255, .86); border-bottom: 1px solid rgba(255, 255, 255, .1);
}
.drawer__list a:hover, .drawer__list a[aria-current] { color: var(--lime); }
.drawer__auth { margin-top: auto; display: flex; gap: 10px; }
.drawer__auth .btn { flex: 1; }

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

/* Same treatment as the casino band below: a washed-down stadium photograph,
   with a gradient that is densest behind the headline column. */
.hero {
	color: #fff; overflow: hidden;
	background:
		linear-gradient(100deg, rgba(4, 33, 20, .92) 0%, rgba(6, 45, 28, .8) 45%, rgba(6, 45, 28, .45) 100%),
		url('../img/hero-bg.webp') center / cover no-repeat,
		var(--green-d);
}
.hero__in {
	max-width: var(--wrap); margin: 0 auto; padding: 64px var(--pad) 72px;
	display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 420px);
	gap: 48px; align-items: center;
}
.hero__text { display: flex; flex-direction: column; align-items: flex-start; }
.hero__kicker {
	display: inline-flex; align-items: center; gap: 8px;
	padding: 6px 12px; border-radius: 999px; margin-bottom: 20px;
	background: rgba(204, 240, 0, .14); color: var(--lime);
	font-size: 13px; font-weight: 600; letter-spacing: .01em;
}
.hero__title {
	display: block; font-size: 52px; line-height: 1.08; font-weight: 800;
	letter-spacing: -.025em; margin-bottom: 18px;
}
.hero__sub {
	display: block; max-width: 520px; font-size: 18px; line-height: 1.6;
	color: rgba(255, 255, 255, .8); margin-bottom: 30px;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; }
.hsteps {
	display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 10px; margin-top: 24px; padding: 0; width: 100%; max-width: 560px;
}
.hstep {
	display: flex; flex-direction: column; align-items: flex-start; gap: 6px;
	padding: 12px 14px; border-radius: var(--r-sm);
	background: rgba(255, 255, 255, .07); border: 1px solid rgba(255, 255, 255, .14);
}
.hstep__num {
	width: 22px; height: 22px; flex: none; border-radius: 50%;
	background: var(--lime); color: var(--green-d);
	display: inline-flex; align-items: center; justify-content: center;
	font-size: 12px; font-weight: 800;
}
.hstep__cap { font-size: 12px; line-height: 1.35; color: rgba(255, 255, 255, .7); }
.hstep__val { font-size: 15px; font-weight: 700; color: var(--lime); }

.hero__terms { margin-top: 20px; max-width: 520px; font-size: 12px; line-height: 1.5; color: rgba(255, 255, 255, .52); }

/* The stadium is the photograph behind the whole hero now, so the right
   column holds only the match card, the way the casino band holds its plate. */
.hero__art { display: flex; justify-content: flex-end; }

.oddcard {
	width: 100%; max-width: 400px;
	background: #fff; color: var(--ink); border-radius: var(--r);
	padding: 24px; box-shadow: 0 24px 60px rgba(2, 18, 11, .5);
}
.oddcard__label { display: block; font-size: 12px; font-weight: 600; color: var(--green); }
.oddcard__match { display: block; margin-top: 8px; font-size: 24px; font-weight: 700; letter-spacing: -.01em; }
.oddcard__when { display: block; margin: 4px 0 18px; font-size: 14px; color: var(--ink-3); }
.oddcard__row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.odd {
	display: flex; flex-direction: column; align-items: center; gap: 2px;
	padding: 14px 4px; border-radius: var(--r-sm); background: var(--bg-2);
	border: 1px solid var(--line);
}
.odd__name { font-size: 12px; color: var(--ink-3); }
.odd__val { font-size: 22px; font-weight: 700; color: var(--green); }
.oddcard__note { display: block; margin-top: 14px; font-size: 12px; color: var(--ink-3); }

/* ---- trust strip ----------------------------------------------------- */

.trust { background: var(--green); }
.trust__in {
	max-width: var(--wrap); margin: 0 auto; padding: 14px var(--pad);
	display: flex; flex-wrap: wrap; gap: 12px 40px; justify-content: center;
}
.trust__item {
	display: inline-flex; align-items: center; gap: 9px;
	font-size: 14px; font-weight: 500; color: rgba(255, 255, 255, .92);
}
.trust__item img { width: 20px; height: 20px; }

/* ---- section frame --------------------------------------------------- */

.sec { max-width: var(--wrap); margin: 0 auto; padding: 64px var(--pad) 0; }
.sec__head { margin-bottom: 28px; }
.sec__title {
	display: block; font-size: 32px; line-height: 1.2; font-weight: 800;
	letter-spacing: -.02em; color: var(--ink);
}

/* ---- bookmaker bits (toplist + review) ------------------------------- */

.book__logo {
	width: 56px; height: 56px; flex: none; border-radius: var(--r-sm);
	background: var(--green-d); color: var(--lime);
	display: inline-flex; align-items: center; justify-content: center;
	font-size: 19px; font-weight: 800; letter-spacing: .02em;
}
.book__logo--lg { width: 76px; height: 76px; font-size: 26px; }
.book__name { font-size: 19px; font-weight: 700; letter-spacing: -.01em; }
.book__rate { display: inline-flex; align-items: center; gap: 8px; }
.book__num { font-size: 13px; color: var(--ink-2); }
.book__bonus { color: var(--green); }

.stars { position: relative; display: inline-block; line-height: 0; white-space: nowrap; }
.stars__bg, .stars__fg { display: block; }
.stars__bg { fill: #d8dee2; }
.stars__fg {
	position: absolute; inset: 0; overflow: hidden; fill: #f2b706;
}
.stars svg { display: inline-block; }

/* ---- featured offer -------------------------------------------------- */

.offer {
	position: relative; color: #fff; overflow: hidden;
	background: var(--green-d) url('../img/offer-bg.webp') center / cover no-repeat;
}
/* The photograph is already washed down; this keeps the left column readable
   at every width, where the text sits over the busiest part of the frame. */
.offer::before {
	content: ''; position: absolute; inset: 0;
	background: linear-gradient(100deg, rgba(4, 33, 20, .94) 0%, rgba(6, 45, 28, .86) 48%, rgba(6, 45, 28, .62) 100%);
}
.offer__in { position: relative; }
.offer__in {
	max-width: var(--wrap); margin: 0 auto; padding: 52px var(--pad);
	display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 380px);
	gap: 40px; align-items: center;
}
.offer__kicker {
	display: inline-block; padding: 5px 12px; border-radius: 999px;
	background: rgba(204, 240, 0, .16); color: var(--lime);
	font-size: 13px; font-weight: 600; margin-bottom: 16px;
}
.offer__title {
	display: block; font-size: 42px; line-height: 1.1; font-weight: 800;
	letter-spacing: -.025em; margin-bottom: 14px;
}
.offer__desc { display: block; font-size: 17px; color: rgba(255, 255, 255, .82); max-width: 560px; }

.perks { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.perk {
	display: inline-flex; align-items: center; gap: 8px;
	padding: 8px 14px 8px 12px; border-radius: 999px;
	background: rgba(204, 240, 0, .12); border: 1px solid rgba(204, 240, 0, .4);
	color: var(--lime); font-size: 13px; font-weight: 600;
}
.perk::before {
	content: ''; width: 16px; height: 16px; flex: none;
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3.6 8.4l2.8 2.8L12.4 5' fill='none' stroke='%23ccf000' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
}
.offer__side {
	display: flex; flex-direction: column; align-items: center; text-align: center;
	gap: 16px; background: rgba(3, 26, 16, .72); border: 1px solid rgba(204, 240, 0, .28);
	border-radius: var(--r); padding: 30px 26px;
	box-shadow: 0 18px 44px rgba(2, 18, 11, .45);
}
.offer__sum { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.offer__num { font-size: 62px; line-height: 1; font-weight: 800; letter-spacing: -.04em; color: var(--lime); }
.offer__unit {
	font-size: 15px; font-weight: 700; letter-spacing: .08em;
	text-transform: uppercase; color: rgba(255, 255, 255, .8);
}
.offer__side .btn { width: 100%; }
.offer__small { font-size: 12px; color: rgba(255, 255, 255, .6); }

/* ---- category tiles (sports + casino) -------------------------------- */

.tiles { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 20px; }
.tile {
	position: relative; display: block; border-radius: var(--r); overflow: hidden;
	background: var(--green-d); box-shadow: var(--sh);
	transition: transform var(--t), box-shadow var(--t);
}
.tile img { width: 100%; aspect-ratio: 16 / 11; object-fit: cover; transition: transform .3s ease; }
.tile::after {
	content: ''; position: absolute; inset: 0;
	background: linear-gradient(to top, rgba(4, 37, 22, .94) 4%, rgba(4, 37, 22, .72) 34%, rgba(4, 37, 22, 0) 72%);
}
.tile__label {
	position: absolute; left: 14px; right: 14px; bottom: 12px; z-index: 1;
	color: #fff; font-size: 15px; font-weight: 700; letter-spacing: -.01em;
}
.tile:hover { transform: translateY(-3px); box-shadow: var(--sh-h); }
.tile:hover img { transform: scale(1.06); }

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

.plate { max-width: var(--wrap); margin: 0 auto; padding: 64px var(--pad) 0; }
.plate--bare { padding-top: 40px; }
.prose { max-width: none; }
.prose > *:first-child { margin-top: 0; }
.prose h1 { font-size: 38px; line-height: 1.15; font-weight: 800; letter-spacing: -.025em; margin: 0 0 20px; }
.prose .byline { display: block; margin: -8px 0 24px; font-size: 14px; line-height: 1.7; color: var(--ink-3); }
.prose .byline__name { color: var(--ink); font-weight: 600; }
.prose .byline__date::before { content: ''; display: inline-block; width: 4px; height: 4px; margin: 0 10px 2px 10px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 2px var(--green-soft); vertical-align: middle; }
.prose h2 { font-size: 27px; line-height: 1.25; font-weight: 700; letter-spacing: -.02em; margin: 38px 0 14px; }
.prose h3 { font-size: 21px; line-height: 1.3; font-weight: 700; margin: 28px 0 10px; }
.prose h4 { font-size: 18px; font-weight: 700; margin: 22px 0 8px; }
.prose p { margin: 0 0 16px; color: var(--ink-2); }
.prose a { color: var(--green); text-decoration: underline; text-underline-offset: 3px; }
.prose a:hover { color: var(--green-d); }
.prose strong { color: var(--ink); font-weight: 700; }
.prose ul, .prose ol { margin: 0 0 18px; padding-left: 0; color: var(--ink-2); }
.prose li { position: relative; padding-left: 26px; margin-bottom: 8px; }
.prose ul > li::before {
	content: ''; position: absolute; left: 6px; top: 10px;
	width: 7px; height: 7px; border-radius: 50%; background: var(--lime);
	box-shadow: 0 0 0 3px var(--green-soft);
}
.prose ol { counter-reset: li; }
.prose ol > li { counter-increment: li; }
.prose ol > li::before {
	content: counter(li); position: absolute; left: 0; top: 2px;
	width: 20px; height: 20px; border-radius: 50%;
	background: var(--green-soft); color: var(--green);
	font-size: 12px; font-weight: 700; line-height: 20px; text-align: center;
}
.prose img { border-radius: var(--r); margin: 8px 0 20px; }
.prose blockquote {
	margin: 20px 0; padding: 16px 22px; border-left: 4px solid var(--lime);
	background: var(--bg-2); border-radius: 0 var(--r-sm) var(--r-sm) 0; color: var(--ink-2);
}
.prose table { width: 100%; border-collapse: collapse; margin: 6px 0 22px; font-size: 15px; }
.prose th, .prose td { padding: 12px 14px; border: 1px solid var(--line); text-align: left; }
.prose th { background: var(--bg-2); font-weight: 600; }
.prose .table-scroll, .prose .table-wrap { overflow-x: auto; margin: 0 0 22px; }
.prose .table-scroll table, .prose .table-wrap table { width: max-content; min-width: 100%; margin: 0; }
.prose .table-scroll th { white-space: nowrap; }
.prose .table-scroll td { max-width: 38ch; }
.prose img { display: block; height: auto; margin: 16px auto; }

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

.inner { max-width: var(--wrap); margin: 0 auto; padding: 28px var(--pad) 0; }
.crumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; font-size: 13px; color: var(--ink-3); }
.crumbs a { color: var(--ink-2); transition: color var(--t); }
.crumbs a:hover { color: var(--green); }
.crumbs__sep { color: var(--ink-3); }
.crumbs__now { color: var(--ink-3); }
.inner__title {
	display: block; margin: 14px 0 0; font-size: 38px; line-height: 1.15;
	font-weight: 800; letter-spacing: -.025em;
}
.inner__upd { display: block; margin-top: 10px; font-size: 13px; color: var(--ink-3); }

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

.ranks { max-width: var(--wrap); margin: 0 auto; padding: 32px var(--pad) 0; display: flex; flex-direction: column; gap: 16px; }
.rank {
	display: grid; grid-template-columns: 52px minmax(0, 1.1fr) minmax(0, 1.2fr) 220px;
	gap: 20px; align-items: center;
	background: #fff; border: 1px solid var(--line); border-radius: var(--r);
	padding: 20px 24px; box-shadow: var(--sh);
	transition: box-shadow var(--t), border-color var(--t);
}
.rank:hover { box-shadow: var(--sh-h); }
.rank--top { border-color: rgba(11, 110, 70, .38); }
.rank__num {
	width: 44px; height: 44px; border-radius: 50%; flex: none;
	background: var(--bg-2); color: var(--ink-2);
	display: inline-flex; align-items: center; justify-content: center;
	font-size: 18px; font-weight: 800;
}
.rank--top .rank__num { background: var(--lime); color: var(--green-d); }
.rank__id { display: flex; align-items: center; gap: 14px; min-width: 0; }
.rank__names { display: flex; flex-direction: column; gap: 5px; align-items: flex-start; min-width: 0; }
.rank__badge {
	padding: 3px 10px; border-radius: 999px; background: var(--green-soft);
	color: var(--green); font-size: 12px; font-weight: 700;
}
.rank__summary { font-size: 14px; color: var(--ink-2); }
.rank__small { font-size: 11px; color: var(--ink-3); }
.rank__facts { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.rank__facts dt { font-size: 12px; color: var(--ink-3); margin-bottom: 3px; }
.rank__facts dd { font-size: 15px; font-weight: 600; }
.rank__side { display: flex; flex-direction: column; gap: 9px; align-items: stretch; text-align: center; }

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

.rev {
	max-width: var(--wrap); margin: 28px auto 0; padding: 0 var(--pad);
	display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr) 300px; gap: 28px; align-items: stretch;
}
.rev > * {
	background: #fff; border: 1px solid var(--line); border-radius: var(--r);
	padding: 24px; box-shadow: var(--sh);
}
.rev__id { display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }
.rev__names { display: flex; flex-direction: column; gap: 6px; }
.rev__score { display: flex; align-items: baseline; gap: 10px; margin-top: auto; }
.rev__score-val { font-size: 34px; font-weight: 800; color: var(--green); letter-spacing: -.02em; }
.rev__score-cap { font-size: 13px; color: var(--ink-3); }
.rev__facts { display: flex; flex-direction: column; }
.rev__facts > div {
	display: flex; align-items: baseline; justify-content: space-between; gap: 12px;
	padding: 9px 0; border-bottom: 1px solid var(--line);
}
.rev__facts > div:last-child { border-bottom: 0; padding-bottom: 0; }
.rev__facts dt { font-size: 14px; color: var(--ink-2); }
.rev__facts dd { font-size: 15px; font-weight: 600; text-align: right; }
.rev__cta { display: flex; flex-direction: column; gap: 12px; text-align: center; }
.rev__bonus { display: flex; flex-direction: column; gap: 4px; }
.rev__bonus-cap { font-size: 13px; color: var(--ink-3); }
.rev__bonus-val { font-size: 22px; font-weight: 800; color: var(--green); letter-spacing: -.02em; }
.rev__small { font-size: 12px; color: var(--ink-3); }

.pc {
	max-width: var(--wrap); margin: 24px auto 0; padding: 0 var(--pad);
	display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px;
}
.pc__col { background: var(--bg-2); border-radius: var(--r); padding: 24px; }
.pc__col--pro { background: var(--green-soft); }
.pc__col--con { background: #fdf3f2; }
.pc__title { display: block; font-size: 18px; font-weight: 700; margin-bottom: 14px; }
.pc__col ul { display: flex; flex-direction: column; gap: 9px; }
.pc__col li { position: relative; padding-left: 28px; font-size: 15px; color: var(--ink-2); }
.pc__col li::before {
	content: ''; position: absolute; left: 0; top: 3px; width: 18px; height: 18px;
	border-radius: 50%; background: #fff center / 14px 14px no-repeat;
}
.pc__col--pro li::before {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M4 8.4l2.6 2.6L12 5.6' fill='none' stroke='%230b6e46' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.pc__col--con li::before {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M5 5l6 6M11 5l-6 6' fill='none' stroke='%23c0392b' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
}

.verdict { max-width: var(--wrap); margin: 40px auto 0; padding: 0 var(--pad); }
.verdict__in {
	background: var(--green-d); color: #fff; border-radius: var(--r);
	padding: 32px; display: flex; flex-direction: column; align-items: flex-start; gap: 12px;
}
.verdict__title { font-size: 22px; font-weight: 700; }
.verdict__text { font-size: 16px; color: rgba(255, 255, 255, .82); max-width: 820px; }
.verdict .btn { margin-top: 8px; }

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

.lhero {
	background: var(--green-d);
	background-image: radial-gradient(110% 80% at 70% 0%, rgba(11, 110, 70, .8) 0%, rgba(7, 52, 31, 0) 60%);
	color: #fff;
}
.lhero__in {
	max-width: 900px; margin: 0 auto; padding: 64px var(--pad) 68px;
	display: flex; flex-direction: column; align-items: center; text-align: center;
}
.lhero__kicker {
	padding: 6px 14px; border-radius: 999px; background: rgba(204, 240, 0, .14);
	color: var(--lime); font-size: 13px; font-weight: 600; margin-bottom: 18px;
}
.lhero__title { display: block; margin: 0 0 16px; font-size: 46px; line-height: 1.1; font-weight: 800; letter-spacing: -.025em; }
.lhero__sub { display: block; max-width: 640px; font-size: 18px; color: rgba(255, 255, 255, .8); }
.lhero__offer {
	margin-top: 32px; width: 100%; max-width: 620px;
	background: rgba(255, 255, 255, .07); border: 1px solid rgba(255, 255, 255, .16);
	border-radius: var(--r); padding: 26px;
	display: flex; flex-direction: column; gap: 16px; align-items: center;
}
.lhero__facts { width: 100%; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.lhero__facts dt { font-size: 12px; color: rgba(255, 255, 255, .6); margin-bottom: 4px; }
.lhero__facts dd { font-size: 17px; font-weight: 700; color: var(--lime); }
.lhero__offer .btn { width: 100%; max-width: 320px; }
.lhero__small { font-size: 12px; color: rgba(255, 255, 255, .6); }

.steps {
	max-width: var(--wrap); margin: 0 auto; padding: 56px var(--pad) 0;
	display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px;
}
.step { background: var(--bg-2); border-radius: var(--r); padding: 26px 24px; display: flex; flex-direction: column; gap: 8px; }
.step__num {
	width: 40px; height: 40px; border-radius: 50%; background: var(--green-d); color: var(--lime);
	display: inline-flex; align-items: center; justify-content: center;
	font-size: 17px; font-weight: 800; margin-bottom: 6px;
}
.step__title { font-size: 18px; font-weight: 700; }
.step__text { font-size: 15px; color: var(--ink-2); }

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

.foot { margin-top: 72px; background: var(--green-x); color: rgba(255, 255, 255, .78); }
.foot__in {
	max-width: var(--wrap); margin: 0 auto; padding: 52px var(--pad) 40px;
	display: grid; grid-template-columns: minmax(0, 1.6fr) repeat(2, minmax(0, 1fr)); gap: 36px;
}
.foot__brand { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; }
.foot__blurb { font-size: 14px; color: rgba(255, 255, 255, .62); max-width: 320px; }
.foot__age {
	padding: 5px 12px; border-radius: 999px; border: 1px solid rgba(204, 240, 0, .5);
	color: var(--lime); font-size: 13px; font-weight: 700;
}
.foot__head {
	display: block; margin-bottom: 14px; color: #fff;
	font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em;
}
.foot__col ul { display: flex; flex-direction: column; gap: 10px; }
.foot__col a { font-size: 15px; color: rgba(255, 255, 255, .72); transition: color var(--t); }
.foot__col a:hover { color: var(--lime); }

.foot__legal {
	max-width: var(--wrap); margin: 0 auto; padding: 22px var(--pad) 34px;
	border-top: 1px solid rgba(255, 255, 255, .1);
	display: flex; flex-direction: column; gap: 8px;
}
.foot__legal p { margin: 0; font-size: 13px; line-height: 1.6; }
.foot__warn { color: var(--lime); font-weight: 600; }
.foot__disc { color: rgba(255, 255, 255, .55); max-width: 900px; }
.foot__copy { color: rgba(255, 255, 255, .42); }

/* ---- sticky mobile cta ----------------------------------------------- */

.stickycta {
	display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 45;
	background: var(--green-d); border-top: 1px solid rgba(255, 255, 255, .12);
	padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
	align-items: center; justify-content: space-between; gap: 14px;
	box-shadow: 0 -6px 24px rgba(4, 37, 22, .28);
}
.stickycta .btn { flex: 1; }

/* ---- responsive ------------------------------------------------------ */

@media (max-width: 1180px) {
	.hero__title { font-size: 44px; }
	.tiles { grid-template-columns: repeat(3, minmax(0, 1fr)); }
	.rank { grid-template-columns: 44px minmax(0, 1fr) 200px; grid-template-areas: 'num id side' 'facts facts side'; }
	.rank__num { grid-area: num; }
	.rank__id { grid-area: id; }
	.rank__facts { grid-area: facts; }
	.rank__side { grid-area: side; }
	.rev { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.rev__cta { grid-column: span 2; }
}

@media (max-width: 1023px) {
	.head__nav, .head__auth { display: none; }
	.burger { display: flex; }
	.lang--drawer { display: block; }
	.hero__in { grid-template-columns: minmax(0, 1fr); gap: 36px; padding: 48px var(--pad) 56px; }
	.hero__title { font-size: 40px; }
	.hero__art { justify-content: flex-start; }
	.offer__in { grid-template-columns: minmax(0, 1fr); gap: 28px; }
	.stickycta { display: flex; }
	.foot { padding-bottom: 68px; }
	.foot__in { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; }
}

@media (max-width: 860px) {
	.sec, .plate, .ranks, .rev, .pc, .verdict, .steps { padding-top: 44px; }
	.sec__title { font-size: 26px; }
	.rev { grid-template-columns: minmax(0, 1fr); }
	.rev__cta { grid-column: auto; }
	.pc { grid-template-columns: minmax(0, 1fr); }
	.steps { grid-template-columns: minmax(0, 1fr); }
	.rank {
		grid-template-columns: 44px minmax(0, 1fr);
		grid-template-areas: 'num id' 'facts facts' 'side side';
		gap: 16px;
	}
	.rank__side { flex-direction: row; flex-wrap: wrap; align-items: center; justify-content: space-between; }
	.rank__side .btn { flex: 1 1 160px; }

}

@media (max-width: 620px) {
	:root { --pad: 16px; }
	.hero__title { font-size: 32px; }
	.hero__sub { font-size: 16px; }
	.hsteps { grid-template-columns: minmax(0, 1fr); }
	/* On a phone the bonus conditions read as a centred column. */
	.hstep { align-items: center; text-align: center; }
	.hero__terms { align-self: stretch; text-align: center; }
	.perks { justify-content: center; }
	.hero__cta { width: 100%; }
	.hero__cta .btn { flex: 1 1 100%; }
	.oddcard { padding: 18px; }
	.tiles { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
	.sec__title { font-size: 24px; }
	.offer__title { font-size: 30px; }
	.offer__num { font-size: 50px; }
	.inner__title, .prose h1 { font-size: 30px; }
	.prose h2 { font-size: 23px; }
	.lhero__title { font-size: 32px; }
	.lhero__facts { grid-template-columns: minmax(0, 1fr); gap: 12px; text-align: left; }
	.foot__in { grid-template-columns: minmax(0, 1fr); }
	.rank__facts { grid-template-columns: minmax(0, 1fr); gap: 10px; }
}

@media (prefers-reduced-motion: reduce) {
	* { transition: none !important; animation: none !important; }
	.tile:hover img { transform: none; }
}

