/* =========================================================
   Ontario-Lotto theme styles
   ========================================================= */

:root {
	--red: #ea3324;
	--red-dark: #c92516;
	--cream: #f4f1ea;
	--cream-2: #efe9dd;
	--tan: #efe4d6;
	--ink: #1a1714;
	--ink-2: #14110f;
	--black: #100d0b;
	--text: #2a2622;
	--muted: #6f6960;
	--muted-2: #8a847a;
	--line: #e3ddd2;
	--line-dark: #2c2622;
	--white: #ffffff;
	--green: #2f8f4e;
	--green-bg: #e4f1e7;

	--font-display: 'Archivo', 'Helvetica Neue', Arial, sans-serif;
	--font-body: 'Inter', 'Helvetica Neue', Arial, sans-serif;
	--font-mono: 'JetBrains Mono', ui-monospace, 'SFMono-Regular', Menlo, monospace;

	--container: 1180px;
	--radius: 14px;
}

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

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

body {
	margin: 0;
	font-family: var(--font-body);
	color: var(--text);
	background: var(--cream);
	font-size: 16px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

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

a {
	color: inherit;
}

.container {
	width: 100%;
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 24px;
}

.mono {
	font-family: var(--font-mono);
}

/* ---------- Buttons ---------- */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-family: var(--font-body);
	font-weight: 600;
	font-size: 15px;
	line-height: 1;
	padding: 16px 26px;
	border-radius: 999px;
	border: 1px solid transparent;
	cursor: pointer;
	text-decoration: none;
	transition: transform .15s ease, background .15s ease, opacity .15s ease;
}

.btn:hover {
	transform: translateY(-1px);
}

.btn--dark {
	background: var(--ink);
	color: #fff;
}

.btn--dark:hover {
	background: #000;
}

.btn--red {
	background: var(--red);
	color: #fff;
}

.btn--red:hover {
	background: var(--red-dark);
}

.btn--ghost {
	background: transparent;
	color: #fff;
	border-color: rgba(255, 255, 255, .4);
}

.btn--ghost-dark {
	background: transparent;
	color: var(--ink);
	border-color: var(--line);
}

.btn--sm {
	padding: 11px 18px;
	font-size: 13px;
}

.btn--block {
	width: 100%;
}

/* ---------- Header ---------- */
.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: var(--cream);
	border-bottom: 1px solid var(--line);
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 64px;
	gap: 24px;
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	text-decoration: none;
	color: var(--ink);
	font-family: var(--font-display);
	font-weight: 800;
	letter-spacing: .02em;
	font-size: 16px;
}

.brand__dot {
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: var(--red);
	flex: 0 0 auto;
}

.brand--light {
	color: #fff;
}

.site-nav {
	margin-left: auto;
}

.site-nav__list {
	list-style: none;
	display: flex;
	gap: 26px;
	margin: 0;
	padding: 0;
}

.site-nav__list a {
	text-decoration: none;
	color: var(--text);
	font-size: 14.5px;
	font-weight: 500;
	transition: color .15s ease;
}

.site-nav__list a:hover {
	color: var(--red);
}

.site-header__right {
	display: flex;
	align-items: center;
	gap: 14px;
}

.age-pill {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--red);
	color: #fff;
	border-radius: 999px;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 11px;
	width: 30px;
	height: 30px;
	flex: 0 0 auto;
}

.age-pill--lg {
	width: 40px;
	height: 40px;
	font-size: 13px;
}

.nav-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 38px;
	height: 38px;
	background: none;
	border: 0;
	cursor: pointer;
}

.nav-toggle span {
	display: block;
	height: 2px;
	width: 22px;
	background: var(--ink);
	margin: 0 auto;
	transition: .2s ease;
}

/* ---------- Section primitives ---------- */
.section {
	padding: 84px 0;
}

.section--tight {
	padding: 56px 0;
}

.eyebrow {
	font-family: var(--font-mono);
	text-transform: uppercase;
	letter-spacing: .14em;
	font-size: 12px;
	color: var(--red);
	margin: 0 0 18px;
}

h1, h2, h3, h4 {
	font-family: var(--font-display);
	color: var(--ink);
	margin: 0;
	letter-spacing: -.01em;
}

.page-lead {
	max-width: 720px;
	margin: 0;
}

.page-lead h1 {
	font-size: clamp(40px, 6vw, 76px);
	line-height: 1.02;
	font-weight: 800;
	letter-spacing: -.025em;
}

.page-lead p {
	color: var(--muted);
	font-size: 18px;
	max-width: 560px;
	margin: 24px 0 0;
}

.page-head {
	padding: 96px 0 64px;
	border-bottom: 1px solid var(--line);
}

.page-head--sm {
	padding: 72px 0 0;
	border-bottom: 0;
}

/* ---------- Hero (home) ---------- */
.hero {
	background:
		radial-gradient(120% 140% at 50% -20%, #ff6a3d 0%, var(--red) 40%, var(--red-dark) 100%);
	color: #fff;
	text-align: center;
	padding: 64px 0 70px;
	position: relative;
	overflow: hidden;
}

.hero::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(255, 255, 255, .18), transparent 30%, rgba(0, 0, 0, .04));
	pointer-events: none;
}

.hero__title {
	font-size: clamp(30px, 4.4vw, 44px);
	font-weight: 800;
	line-height: 1.05;
	color: #fff;
	position: relative;
}

.hero__sub {
	max-width: 640px;
	margin: 14px auto 0;
	font-size: 15.5px;
	color: rgba(255, 255, 255, .92);
	position: relative;
}

/* ---------- Pricing cards ---------- */
.pricing {
	padding: 56px 0 24px;
}

.pricing__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
	align-items: start;
	max-width: 1000px;
	margin: 0 auto;
}

.price-card {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 30px 26px 28px;
	text-align: center;
	display: flex;
	flex-direction: column;
	gap: 14px;
	box-shadow: 0 1px 2px rgba(0, 0, 0, .03);
}

.price-card--featured {
	border: 2px solid var(--red);
	position: relative;
	box-shadow: 0 18px 40px -22px rgba(234, 51, 36, .55);
}

.price-card__badge {
	position: absolute;
	top: -13px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--red);
	color: #fff;
	font-family: var(--font-mono);
	text-transform: uppercase;
	letter-spacing: .12em;
	font-size: 10px;
	font-weight: 700;
	padding: 6px 14px;
	border-radius: 999px;
	white-space: nowrap;
}

.price-card__art {
	margin: 4px auto 2px;
	width: 150px;
	height: 78px;
	border-radius: 8px;
	background: #14110f;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
}

.ticket-chip {
	background: linear-gradient(135deg, var(--red), var(--red-dark));
	color: #fff;
	font-family: var(--font-display);
	font-weight: 800;
	border-radius: 6px;
	padding: 8px 12px;
	line-height: 1;
	text-align: center;
	clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
}

.ticket-chip small {
	display: block;
	font-size: 8px;
	letter-spacing: .1em;
	opacity: .85;
	font-weight: 600;
	margin-bottom: 3px;
}

.ticket-chip span {
	font-size: 20px;
}

.price-card__name {
	font-size: 17px;
	font-weight: 700;
}

.price-card__divider {
	height: 2px;
	width: 30px;
	background: var(--red);
	margin: 2px auto;
	border: 0;
}

.price-card__price {
	font-family: var(--font-display);
	font-weight: 800;
	font-size: 38px;
	color: var(--red);
	line-height: 1;
}

.price-card__unit {
	font-size: 13px;
	color: var(--muted);
	margin: -6px 0 0;
}

.price-card__desc {
	font-size: 14px;
	color: var(--muted);
	margin: 4px 0 0;
	min-height: 84px;
}

.price-card .btn {
	margin-top: auto;
}

/* ---------- Generic content blocks ---------- */
.block-title {
	font-size: 26px;
	font-weight: 700;
	margin-bottom: 12px;
}

.block-intro {
	color: var(--muted);
	max-width: 760px;
	margin: 0 0 30px;
}

.advice-list {
	display: flex;
	flex-direction: column;
	gap: 16px;
	max-width: 880px;
}

.advice-item {
	border-left: 3px solid var(--red);
	background: rgba(234, 51, 36, .05);
	padding: 14px 20px;
	border-radius: 0 8px 8px 0;
	font-size: 15px;
	color: var(--text);
}

.advice-item strong {
	color: var(--ink);
}

/* ---------- Why Canadians (tan band) ---------- */
.band-tan {
	background: var(--cream-2);
}

.stat-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
	max-width: 880px;
	margin: 0 0 26px;
}

.stat-card {
	background: var(--tan);
	border-radius: 10px;
	padding: 22px 22px 24px;
}

.stat-card__big {
	font-family: var(--font-display);
	font-weight: 800;
	font-size: 30px;
	color: var(--red);
	line-height: 1;
	margin-bottom: 10px;
}

.stat-card__text {
	font-size: 13.5px;
	color: var(--muted);
}

.band-tan__note {
	max-width: 520px;
	color: var(--muted);
	font-size: 15px;
}

/* ---------- Hall of winners (dark) ---------- */
.winners {
	background: var(--ink-2);
	color: #fff;
	padding: 78px 0 84px;
}

.winners__label {
	font-family: var(--font-mono);
	text-transform: uppercase;
	letter-spacing: .16em;
	font-size: 12px;
	color: rgba(255, 255, 255, .45);
	margin: 0 0 36px;
}

.winners__hero {
	text-align: center;
	margin-bottom: 46px;
}

.record-pill {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	background: var(--red);
	color: #fff;
	font-family: var(--font-mono);
	font-size: 11px;
	letter-spacing: .12em;
	text-transform: uppercase;
	font-weight: 700;
	padding: 7px 16px;
	border-radius: 999px;
	margin-bottom: 22px;
}

.winners__amount {
	font-family: var(--font-display);
	font-weight: 900;
	font-size: clamp(64px, 12vw, 150px);
	line-height: .9;
	letter-spacing: -.03em;
	color: #fff;
}

.winners__meta {
	margin: 18px 0 4px;
	font-size: 15px;
	color: rgba(255, 255, 255, .85);
}

.winners__sub {
	font-size: 13px;
	color: rgba(255, 255, 255, .4);
}

.winners__list {
	max-width: 760px;
	margin: 0 auto;
	border-top: 1px solid rgba(255, 255, 255, .1);
}

.winner-row {
	display: grid;
	grid-template-columns: 48px 1fr auto;
	align-items: center;
	gap: 18px;
	padding: 22px 4px;
	border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.winner-row__rank {
	font-family: var(--font-display);
	font-weight: 700;
	color: rgba(255, 255, 255, .3);
	font-size: 15px;
}

.winner-row__name {
	color: #fff;
	font-size: 15px;
	font-weight: 500;
}

.winner-row__date {
	color: rgba(255, 255, 255, .4);
	font-size: 12.5px;
	margin-top: 2px;
}

.winner-row__amount {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 18px;
	color: #fff;
}

/* ---------- Testimonials ---------- */
.testi {
	background: var(--cream);
	padding: 78px 0;
	text-align: center;
}

.testi__title {
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 34px;
}

.testi__viewport {
	max-width: 760px;
	margin: 0 auto;
	overflow: hidden;
}

.testi__track {
	display: flex;
	transition: transform .4s ease;
}

.testi-card {
	flex: 0 0 100%;
	background: #fff;
	border-radius: var(--radius);
	padding: 32px 34px;
	text-align: left;
	box-shadow: 0 1px 2px rgba(0, 0, 0, .04);
}

.testi-card__stars {
	color: var(--red);
	letter-spacing: 3px;
	margin-bottom: 16px;
	font-size: 14px;
}

.testi-card__quote {
	font-size: 16px;
	font-style: italic;
	color: var(--text);
	margin: 0 0 22px;
}

.testi-card__person {
	display: flex;
	align-items: center;
	gap: 12px;
}

.testi-card__avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--red);
	color: #fff;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-display);
}

.testi-card__name {
	font-weight: 600;
	font-size: 14px;
	color: var(--ink);
}

.testi-card__loc {
	font-size: 12.5px;
	color: var(--muted);
}

.testi__controls {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	margin-top: 26px;
}

.testi__arrow {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: #fff;
	border: 1px solid var(--line);
	cursor: pointer;
	font-size: 16px;
	color: var(--ink);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background .15s ease;
}

.testi__arrow:hover {
	background: var(--cream-2);
}

.testi__dots {
	display: flex;
	gap: 8px;
}

.testi__dot {
	width: 9px;
	height: 9px;
	border-radius: 999px;
	border: 0;
	background: #d6cfc2;
	cursor: pointer;
	padding: 0;
	transition: width .2s ease, background .2s ease;
}

.testi__dot.is-active {
	width: 22px;
	background: var(--red);
}

/* ---------- Responsible play note ---------- */
.rp-note {
	background: var(--cream);
	padding: 40px 0 56px;
}

.rp-note__inner {
	max-width: 920px;
	margin: 0 auto;
	border-left: 3px solid var(--ink);
	padding: 6px 0 6px 26px;
}

.rp-note__text {
	color: var(--muted);
	font-size: 15px;
	margin: 0 0 12px;
}

.rp-note__link {
	color: var(--ink);
	font-weight: 600;
	text-decoration: underline;
}

/* ---------- How to play steps ---------- */
.layout-2col {
	display: grid;
	grid-template-columns: 1.6fr 1fr;
	gap: 60px;
	align-items: start;
}

.steps {
	display: flex;
	flex-direction: column;
}

.step {
	display: grid;
	grid-template-columns: 44px 1fr;
	gap: 22px;
	padding: 26px 0;
	border-top: 1px solid var(--line);
}

.step:last-child {
	border-bottom: 1px solid var(--line);
}

.step__num {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: #fff;
	border: 1px solid var(--line);
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-display);
	font-weight: 700;
	color: var(--ink);
	font-size: 15px;
}

.step__title {
	font-size: 18px;
	font-weight: 700;
	margin: 4px 0 6px;
}

.step__text {
	color: var(--muted);
	font-size: 15px;
	margin: 0;
}

.info-card {
	background: var(--ink-2);
	color: #fff;
	border-radius: var(--radius);
	padding: 30px 30px 32px;
}

.info-card__label {
	font-family: var(--font-mono);
	text-transform: uppercase;
	letter-spacing: .14em;
	font-size: 11px;
	color: rgba(255, 255, 255, .5);
	margin: 0 0 12px;
}

.info-card__title {
	color: #fff;
	font-size: 22px;
	font-weight: 700;
	margin: 0 0 20px;
}

.info-card__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.info-card__list li {
	position: relative;
	padding-left: 22px;
	font-size: 15px;
	color: rgba(255, 255, 255, .9);
}

.info-card__list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 7px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--red);
}

/* ---------- Tables ---------- */
.licence-line {
	font-family: var(--font-mono);
	font-size: 12.5px;
	color: var(--muted);
	letter-spacing: .02em;
	margin: 0 0 18px;
}

.data-table-wrap {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	overflow: hidden;
}

.data-table {
	width: 100%;
	border-collapse: collapse;
}

.data-table th {
	text-align: left;
	font-family: var(--font-mono);
	text-transform: uppercase;
	letter-spacing: .1em;
	font-size: 11px;
	color: var(--muted);
	font-weight: 500;
	padding: 22px 26px 16px;
	border-bottom: 1px solid var(--line);
}

.data-table td {
	padding: 22px 26px;
	font-size: 15px;
	color: var(--text);
	border-bottom: 1px solid var(--line);
	vertical-align: middle;
}

.data-table tr:last-child td {
	border-bottom: 0;
}

.data-table .mono {
	font-size: 14px;
}

.pill {
	display: inline-flex;
	align-items: center;
	font-size: 12px;
	font-weight: 600;
	padding: 5px 12px;
	border-radius: 999px;
}

.pill--green {
	background: var(--green-bg);
	color: var(--green);
}

.pill--grey {
	background: #ececec;
	color: #555;
}

.pill--red {
	background: rgba(234, 51, 36, .12);
	color: var(--red-dark);
}

/* three info columns (draw schedule) */
.tri-cols {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
	margin-top: 48px;
	max-width: 1040px;
}

.tri-cols__item h4 {
	font-family: var(--font-mono);
	text-transform: uppercase;
	letter-spacing: .14em;
	font-size: 11px;
	color: var(--red);
	margin: 0 0 12px;
}

.tri-cols__item p {
	color: var(--muted);
	font-size: 15px;
	margin: 0;
}

/* ---------- Long-form content (rules, privacy, terms, about, contact) ---------- */
.prose-layout {
	display: grid;
	grid-template-columns: 220px 1fr;
	gap: 60px;
	align-items: start;
}

.toc {
	position: sticky;
	top: 90px;
}

.toc__label {
	font-family: var(--font-mono);
	text-transform: uppercase;
	letter-spacing: .14em;
	font-size: 11px;
	color: var(--red);
	margin: 0 0 16px;
}

.toc__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.toc__list a {
	text-decoration: none;
	color: var(--muted);
	font-size: 14px;
	transition: color .15s ease;
}

.toc__list a:hover {
	color: var(--ink);
}

.prose {
	max-width: 720px;
}

.prose h2 {
	font-size: 22px;
	font-weight: 700;
	margin: 40px 0 14px;
}

.prose h2:first-child {
	margin-top: 0;
}

.prose h3 {
	font-size: 18px;
	font-weight: 700;
	margin: 30px 0 10px;
	color: var(--red);
}

.prose p {
	color: var(--text);
	margin: 0 0 16px;
	font-size: 15.5px;
}

.prose ul {
	margin: 0 0 18px;
	padding-left: 20px;
	color: var(--text);
}

.prose ul li {
	margin-bottom: 8px;
	font-size: 15.5px;
}

.prose a {
	color: var(--red);
	font-weight: 600;
}

.prose hr {
	border: 0;
	border-top: 1px solid var(--line);
	margin: 30px 0;
}

.prose--narrow {
	max-width: 820px;
	margin: 0 auto;
}

.prose__eyebrow {
	font-family: var(--font-mono);
	text-transform: uppercase;
	letter-spacing: .14em;
	font-size: 12px;
	color: var(--red);
	font-weight: 700;
	display: block;
	margin: 0 0 8px;
}

.section-block {
	border-top: 1px solid var(--line);
	padding-top: 22px;
	margin-top: 34px;
}

.section-block:first-child {
	border-top: 0;
	margin-top: 0;
	padding-top: 0;
}

.page-simple-head {
	padding: 80px 0 10px;
}

.page-simple-head h1 {
	font-size: clamp(32px, 4vw, 44px);
	font-weight: 800;
}

.page-simple-head .updated {
	color: var(--muted);
	font-size: 14px;
	margin-top: 8px;
}

/* faq groups */
.faq-group {
	margin-top: 40px;
}

.faq-group__title {
	font-family: var(--font-mono);
	text-transform: uppercase;
	letter-spacing: .1em;
	font-size: 14px;
	color: var(--red);
	font-weight: 700;
	border-bottom: 1px solid var(--line);
	padding-bottom: 12px;
	margin: 0 0 8px;
}

.faq-item {
	border-bottom: 1px solid var(--line);
	padding: 20px 0;
}

.faq-item__q {
	font-weight: 700;
	color: var(--ink);
	font-size: 15.5px;
	margin: 0 0 8px;
}

.faq-item__a {
	color: var(--muted);
	font-size: 15px;
	margin: 0;
}

.intro-after-title {
	color: var(--muted);
	margin: 6px 0 0;
}

/* generic content card */
.gprize {
	margin-top: 48px;
}

/* ---------- Footer ---------- */
.site-footer {
	background: var(--black);
	color: rgba(255, 255, 255, .7);
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
	gap: 40px;
	padding: 64px 0 56px;
}

.footer-brand__desc {
	font-size: 14px;
	margin: 18px 0 18px;
	max-width: 280px;
	color: rgba(255, 255, 255, .6);
}

.footer-brand__licence {
	font-size: 13px;
	color: rgba(255, 255, 255, .5);
	margin: 0;
}

.footer-brand__licence .mono {
	color: rgba(255, 255, 255, .75);
}

.footer-col__title {
	font-family: var(--font-display);
	text-transform: uppercase;
	letter-spacing: .08em;
	font-size: 12px;
	color: #fff;
	font-weight: 700;
	margin: 0 0 18px;
}

.footer-col__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.footer-col__list a {
	color: rgba(255, 255, 255, .6);
	text-decoration: none;
	font-size: 14px;
	transition: color .15s ease;
}

.footer-col__list a:hover {
	color: #fff;
}

.footer-col__text {
	font-size: 14px;
	color: rgba(255, 255, 255, .6);
	margin: 0 0 14px;
}

.footer-col__text a {
	text-decoration: none;
	color: rgba(255, 255, 255, .6);
}

.footer-col__text a:hover {
	color: #fff;
}

.footer-responsible {
	border-top: 1px solid rgba(255, 255, 255, .08);
}

.footer-responsible__inner {
	display: grid;
	grid-template-columns: 1.5fr 1fr;
	gap: 40px;
	padding: 36px 24px;
}

.footer-responsible__play {
	display: flex;
	gap: 16px;
	align-items: flex-start;
}

.footer-responsible__heading {
	color: #fff;
	font-weight: 700;
	margin: 0 0 6px;
	font-size: 14px;
}

.footer-responsible__copy {
	font-size: 13px;
	line-height: 1.6;
	color: rgba(255, 255, 255, .55);
	margin: 0;
}

.footer-responsible__copy a {
	color: rgba(255, 255, 255, .85);
}

.footer-responsible__label {
	text-transform: uppercase;
	letter-spacing: .12em;
	font-size: 11px;
	color: rgba(255, 255, 255, .4);
	margin: 0 0 8px;
}

.footer-legal {
	border-top: 1px solid rgba(255, 255, 255, .08);
}

.footer-legal__inner {
	display: flex;
	justify-content: space-between;
	gap: 30px;
	padding: 26px 24px 34px;
}

.footer-legal__col {
	font-size: 12.5px;
	color: rgba(255, 255, 255, .4);
	margin: 0;
}

.footer-legal__col--right {
	text-align: right;
}

/* ---------- Cookie banner ---------- */
.cookie-banner {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 120;
	background: #fff;
	border-top: 1px solid var(--line);
	box-shadow: 0 -8px 24px -16px rgba(0, 0, 0, .3);
}

.cookie-banner__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 16px 24px;
}

.cookie-banner__text {
	font-size: 13.5px;
	color: var(--muted);
	margin: 0;
}

.cookie-banner__text a {
	color: var(--red);
	font-weight: 600;
}

.cookie-banner__actions {
	display: flex;
	gap: 10px;
	flex: 0 0 auto;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
	.site-nav {
		position: absolute;
		top: 64px;
		left: 0;
		right: 0;
		background: var(--cream);
		border-bottom: 1px solid var(--line);
		display: none;
	}

	.site-nav.is-open {
		display: block;
	}

	.site-nav__list {
		flex-direction: column;
		gap: 0;
		padding: 8px 24px 16px;
	}

	.site-nav__list .menu-item {
		border-bottom: 1px solid var(--line);
	}

	.site-nav__list a {
		display: block;
		padding: 14px 0;
	}

	.nav-toggle {
		display: flex;
	}

	.pricing__grid,
	.stat-grid,
	.tri-cols {
		grid-template-columns: 1fr;
	}

	.price-card--featured {
		order: -1;
	}

	.layout-2col,
	.prose-layout,
	.footer-grid {
		grid-template-columns: 1fr;
		gap: 36px;
	}

	.toc {
		position: static;
	}

	.footer-responsible__inner,
	.footer-legal__inner {
		grid-template-columns: 1fr;
		flex-direction: column;
	}

	.footer-legal__col--right {
		text-align: left;
	}

	.price-card__desc {
		min-height: 0;
	}

	.data-table th,
	.data-table td {
		padding: 14px 14px;
		font-size: 13px;
	}
}

@media (max-width: 560px) {
	.section {
		padding: 56px 0;
	}

	.winners__amount {
		font-size: 64px;
	}

	.winner-row {
		grid-template-columns: 32px 1fr auto;
		gap: 12px;
	}
}
