/* ==========================================================================
   Прогноз — template 25 · Kalshi-style dark flat theme
   Near-black surfaces, flat cards, minimal borders, horizontal text nav,
   featured-market hero with chart + sidebar, info cards row.
   ========================================================================== */

:root {
	--bg:         #0d1117;
	--bg-2:       #0d1117;
	--surface:    #151b23;
	--surface-2:  #1c2430;
	--surface-3:  #212a36;
	--border:     #21262d;
	--border-2:   #30363d;
	--primary:    #4fa8ff;
	--primary-h:  #6fbfff;
	--accent:     #ff6a3d;
	--violet:     #8b5cf6;
	--yes:        #27c995;
	--no:         #ff4d6a;
	--text:       #e6edf3;
	--text-muted: #8b949e;
	--text-dim:   #6e7681;
	--radius:     12px;
	--radius-sm:  8px;
	--topbar-h:   56px;
	--maxw:       1220px;
	--font: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body.pg {
	margin: 0;
	background: var(--bg);
	color: var(--text-muted);
	font-family: var(--font);
	font-size: 15px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	min-height: 100vh;
}

a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; display: block; }
h1, h2, h3, h4 { color: var(--text); margin: 0; font-weight: 700; line-height: 1.25; letter-spacing: -.01em; }
p { margin: 0 0 1em; }

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

.eyebrow {
	display: inline-block;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--primary);
	margin-bottom: 12px;
}

/* --------------------------------------------------------------- Buttons */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-family: var(--font);
	font-size: 14px;
	font-weight: 700;
	line-height: 1;
	padding: 10px 18px;
	border: 1px solid transparent;
	border-radius: var(--radius-sm);
	cursor: pointer;
	transition: background .15s ease, border-color .15s ease, color .15s ease;
	white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
	background: var(--yes);
	color: #fff;
}
.btn-primary:hover { background: #22b888; }
.btn-ghost {
	background: transparent;
	color: var(--text);
	border-color: var(--border-2);
}
.btn-ghost:hover { background: var(--surface-2); border-color: var(--surface-3); }
.btn-lg { padding: 12px 24px; font-size: 15px; }

/* --------------------------------------------------------------- Topbar */
.topbar {
	position: sticky;
	top: 0;
	z-index: 50;
	height: var(--topbar-h);
	background: rgba(13,17,23,.92);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid var(--border);
}
.topbar__inner { display: flex; align-items: center; gap: 20px; height: 100%; }
.brand { flex: 0 0 auto; }
.brand img { height: 30px; width: auto; }

.mainnav { display: flex; align-items: center; gap: 2px; margin-right: auto; }
.mainnav__link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 7px 12px;
	border-radius: var(--radius-sm);
	font-size: 14px;
	font-weight: 600;
	color: var(--text-muted);
	transition: background .15s ease, color .15s ease;
}
.mainnav__link:hover { background: var(--surface); color: var(--text); }
.mainnav__link svg { color: var(--text-dim); width: 18px; height: 18px; }
.mainnav__link:hover svg { color: var(--primary); }

.topbar__actions { display: flex; align-items: center; gap: 8px; }

.burger {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 38px; height: 38px;
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius-sm);
	cursor: pointer;
	padding: 0;
}
.burger span { display: block; width: 16px; height: 2px; margin: 0 auto; background: var(--text); border-radius: 2px; transition: transform .2s ease, opacity .2s ease; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-scrim { position: fixed; inset: 0; z-index: 40; background: rgba(0,0,0,.55); }

/* --------------------------------------------------------------- Category strip (text nav) */
.catstrip {
	display: flex;
	gap: 0;
	overflow-x: auto;
	padding: 0 0 2px;
	border-bottom: 1px solid var(--border);
	scrollbar-width: none;
}
.catstrip::-webkit-scrollbar { display: none; }
.chip {
	flex: 0 0 auto;
	padding: 14px 16px;
	background: none;
	border: none;
	border-bottom: 2px solid transparent;
	border-radius: 0;
	font-size: 14px;
	font-weight: 600;
	color: var(--text-muted);
	transition: color .15s ease, border-color .15s ease;
}
.chip:hover { color: var(--text); }
.chip.is-active {
	color: var(--text);
	font-weight: 700;
	border-bottom-color: var(--text);
	background: none;
}

/* --------------------------------------------------------------- Featured Hero Block */
.featured-hero {
	display: grid;
	grid-template-columns: 1fr 340px;
	gap: 20px;
	padding: 24px 0 0;
}

/* Main featured card */
.feat-card {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 24px 28px;
}
.feat-card__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 20px;
}
.feat-card__label {
	display: flex;
	align-items: center;
	gap: 10px;
}
.feat-card__icon {
	width: 32px;
	height: 32px;
	background: var(--surface-2);
	border-radius: 8px;
	display: grid;
	place-items: center;
	font-size: 16px;
}
.feat-card__cat {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .06em;
	text-transform: uppercase;
	color: var(--text-muted);
}
.feat-card__nav {
	display: flex;
	align-items: center;
	gap: 8px;
	color: var(--text-muted);
	font-size: 13px;
}
.feat-card__nav button {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	border: 1px solid var(--border-2);
	background: var(--surface-2);
	color: var(--text-muted);
	cursor: pointer;
	display: grid;
	place-items: center;
	font-size: 14px;
	transition: background .15s ease;
}
.feat-card__nav button:hover { background: var(--surface-3); }

.feat-card__title {
	font-size: 24px;
	font-weight: 700;
	color: var(--text);
	margin-bottom: 20px;
}

/* Outcomes table */
.feat-card__body {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
}

.outcomes-table {
	width: 100%;
}
.outcomes-table__head {
	display: grid;
	grid-template-columns: 1.4fr .6fr .6fr;
	gap: 8px;
	font-size: 12px;
	color: var(--text-dim);
	padding-bottom: 10px;
	border-bottom: 1px solid var(--border);
	margin-bottom: 6px;
}
.outcome-row {
	display: grid;
	grid-template-columns: 1.4fr .6fr .6fr;
	gap: 8px;
	align-items: center;
	padding: 10px 0;
	border-bottom: 1px solid var(--border);
}
.outcome-row:last-child { border-bottom: none; }
.outcome-name {
	display: flex;
	align-items: center;
	gap: 10px;
	font-weight: 700;
	font-size: 14px;
	color: var(--text);
}
.outcome-flag {
	width: 24px;
	height: 18px;
	border-radius: 3px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 11px;
	font-weight: 800;
	color: #fff;
}
.outcome-flag--a { background: #2c5dcd; }
.outcome-flag--b { background: #c93535; }
.outcome-payout {
	font-size: 13px;
	color: var(--text-muted);
}
.outcome-odds {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 5px 14px;
	border-radius: 999px;
	border: 1px solid var(--border-2);
	font-size: 14px;
	font-weight: 700;
	color: var(--text);
	background: var(--surface-2);
}
.feat-card__vol {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 12px;
	font-size: 13px;
	color: var(--text-dim);
}
.feat-card__vol a { color: var(--text-muted); text-decoration: underline; text-underline-offset: 2px; }

/* Chart area */
.feat-chart {
	display: flex;
	flex-direction: column;
}
.feat-chart__legend {
	display: flex;
	gap: 20px;
	font-size: 13px;
	margin-bottom: 14px;
}
.feat-chart__legend span {
	display: flex;
	align-items: center;
	gap: 6px;
	color: var(--text-muted);
}
.feat-chart__legend .dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	display: inline-block;
}
.feat-chart__legend .dot--a { background: var(--primary); }
.feat-chart__legend .dot--b { background: var(--no); }
.feat-chart__legend strong { color: var(--text); font-weight: 700; }

.feat-chart__canvas {
	flex: 1;
	min-height: 140px;
	position: relative;
	border-left: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
}
.feat-chart__svg { width: 100%; height: 100%; }
.feat-chart__axis {
	display: flex;
	justify-content: space-between;
	font-size: 11px;
	color: var(--text-dim);
	padding-top: 6px;
}
.feat-chart__yaxis {
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	font-size: 11px;
	color: var(--text-dim);
	text-align: right;
	padding: 0 0 0 8px;
}

/* News snippet */
.feat-card__news {
	margin-top: 16px;
	font-size: 13px;
	color: var(--text-muted);
	line-height: 1.5;
}
.feat-card__news strong { color: var(--text); }

/* Sidebar */
.feat-sidebar {
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.sidebar-card {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px 18px;
	background: var(--surface);
	border-radius: var(--radius);
	border: 1px solid var(--border);
	border-left: 4px solid var(--border);
	transition: background .15s ease;
	cursor: pointer;
}
.sidebar-card:hover { background: var(--surface-2); }
.sidebar-card--green  { border-left-color: var(--yes); }
.sidebar-card--orange { border-left-color: var(--accent); }
.sidebar-card--violet { border-left-color: var(--violet); }
.sidebar-card--blue   { border-left-color: var(--primary); }
.sidebar-card__title {
	font-size: 15px;
	font-weight: 700;
	color: var(--text);
	margin-bottom: 3px;
}
.sidebar-card__sub {
	font-size: 12px;
	color: var(--text-dim);
}
.sidebar-card__arrow {
	color: var(--text-dim);
	font-size: 18px;
	flex-shrink: 0;
}

/* Trending sidebar section */
.sidebar-trending {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 18px;
}
.sidebar-trending__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 14px;
}
.sidebar-trending__head h3 {
	font-size: 16px;
	font-weight: 700;
}
.sidebar-trending__head .arrow { color: var(--text-dim); font-size: 18px; cursor: pointer; }
.trending-item {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 12px;
	padding: 10px 0;
	border-top: 1px solid var(--border);
}
.trending-item__q {
	font-size: 13px;
	color: var(--text-muted);
	line-height: 1.4;
}
.trending-item__sub {
	font-size: 11px;
	color: var(--text-dim);
	margin-top: 3px;
}
.trending-item__odds {
	flex-shrink: 0;
	text-align: right;
}
.trending-item__pct {
	font-size: 16px;
	font-weight: 700;
	color: var(--text);
}
.trending-item__delta {
	font-size: 11px;
	font-weight: 700;
}
.trending-item__delta--up { color: var(--yes); }
.trending-item__delta--down { color: var(--no); }

/* Info cards row */
.info-row {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 14px;
	padding: 20px 0 8px;
}
.info-card {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 20px 22px;
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	transition: background .2s ease;
	cursor: pointer;
}
.info-card:hover { background: var(--surface-2); }
.info-card__icon {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: rgba(39,201,149,.1);
	display: grid;
	place-items: center;
	flex-shrink: 0;
}
.info-card__icon svg { width: 20px; height: 20px; color: var(--yes); }
.info-card__title {
	font-size: 15px;
	font-weight: 700;
	color: var(--text);
	margin-bottom: 3px;
}
.info-card__sub {
	font-size: 13px;
	color: var(--text-dim);
}

/* --------------------------------------------------------------- Hero (original, still used by landing) */
.hero {
	display: grid;
	grid-template-columns: 1.15fr .85fr;
	gap: 40px;
	align-items: center;
	padding: 48px 0 40px;
}
.hero__title { font-size: clamp(28px, 4.5vw, 44px); margin-bottom: 14px; }
.hero__lead { font-size: 16px; max-width: 46ch; margin-bottom: 24px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 30px; }
.hero__stats { display: flex; gap: 28px; list-style: none; margin: 0; padding: 0; flex-wrap: wrap; }
.hero__stats strong { display: block; color: var(--text); font-size: 22px; font-weight: 800; }
.hero__stats span { font-size: 12px; color: var(--text-dim); }

.hero__panel { position: relative; }
.hero__panel::before {
	content: "";
	position: absolute;
	inset: -16px;
	background: linear-gradient(135deg, rgba(79,168,255,.1), rgba(139,92,246,.1));
	filter: blur(24px);
	border-radius: 24px;
	z-index: 0;
}

/* --------------------------------------------------------------- Question / market cards */
.qcard {
	position: relative;
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 20px;
	display: flex;
	flex-direction: column;
	gap: 14px;
	transition: border-color .2s ease, background .2s ease;
}
.qcard:hover { border-color: var(--border-2); background: var(--surface-2); }
.qcard--feature { z-index: 1; box-shadow: 0 16px 40px -20px rgba(0,0,0,.6); }
.qcard__cat {
	align-self: flex-start;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: .04em;
	text-transform: uppercase;
	color: var(--text-dim);
	background: none;
	padding: 0;
	border-radius: 0;
}
.qcard__q { color: var(--text); font-weight: 700; font-size: 15px; margin: 0; min-height: 2.4em; line-height: 1.4; }

.quote { height: 3px; border-radius: 999px; background: rgba(255,77,106,.25); overflow: hidden; }
.quote__bar { display: block; height: 100%; width: var(--yes, 50%); background: rgba(39,201,149,.5); }
.quote__row { display: flex; gap: 8px; }

.qcard__foot { display: flex; gap: 8px; margin-top: auto; }
.pill {
	flex: 1;
	text-align: center;
	font-weight: 600;
	font-size: 13px;
	padding: 8px 8px;
	border-radius: var(--radius-sm);
	border: 1px solid var(--border);
	background: var(--surface-2);
	color: var(--text-muted);
	transition: background .15s ease, border-color .15s ease, color .15s ease;
}
.pill:active { transform: translateY(1px); }
.pill--yes { color: var(--yes); background: rgba(39,201,149,.06); border-color: rgba(39,201,149,.18); }
.pill--no  { color: var(--no);  background: rgba(255,77,106,.06); border-color: rgba(255,77,106,.18); }
a.pill:hover { border-color: var(--border-2); background: var(--surface-3); }

/* --------------------------------------------------------------- Section head */
.section-head { display: flex; align-items: center; gap: 12px; margin: 32px 0 18px; }
.section-head h2, .section-head h1 { font-size: 22px; font-weight: 800; }
.section-head__more { font-size: 18px; font-weight: 400; color: var(--text-dim); white-space: nowrap; line-height: 1; }
.section-head__more:hover { color: var(--text); }

/* --------------------------------------------------------------- Market grid */
.market-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
	padding-bottom: 24px;
}

/* --------------------------------------------------------------- Toplist */
.toplist { list-style: none; margin: 0 0 24px; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.tl-card {
	display: flex;
	align-items: center;
	gap: 16px;
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 16px 20px;
}
.tl-card--lead { border-color: var(--yes); box-shadow: 0 0 0 1px rgba(39,201,149,.2), 0 12px 30px -20px rgba(39,201,149,.3); }
.tl-card__rank {
	flex: 0 0 auto;
	width: 38px; height: 38px;
	display: grid; place-items: center;
	font-weight: 800; font-size: 16px;
	color: #fff;
	background: var(--yes);
	border-radius: 10px;
}
.tl-card__body { flex: 1 1 auto; min-width: 0; }
.tl-card__head { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 4px; }
.tl-card__name { color: var(--text); font-weight: 700; font-size: 17px; }
.tl-card__score { color: var(--yes); font-weight: 700; }
.tl-card__pitch { margin: 0 0 6px; font-size: 13px; }
.tl-card__bonus { display: inline-block; font-size: 12px; font-weight: 700; color: var(--yes); background: rgba(39,201,149,.08); padding: 4px 10px; border-radius: 999px; }
.tl-card__cta { flex: 0 0 auto; }
.stars { letter-spacing: 1px; font-size: 14px; }
.star { color: var(--border-2); }
.star.is-on { color: #f5b301; }

/* --------------------------------------------------------------- Review */
.review { display: grid; grid-template-columns: 1fr 310px; gap: 28px; padding: 28px 0; align-items: start; }
.review__card { position: sticky; top: calc(var(--topbar-h) + 16px); }
.infocard { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; }
.infocard__score { display: flex; align-items: baseline; gap: 8px; margin-bottom: 14px; }
.infocard__score strong { font-size: 40px; color: var(--yes); font-weight: 800; }
.infocard__score span { color: var(--text-dim); font-weight: 700; }
.infocard__facts { margin: 0 0 16px; }
.infocard__facts > div { display: flex; justify-content: space-between; gap: 12px; padding: 8px 0; border-bottom: 1px solid var(--border); }
.infocard__facts > div:last-child { border-bottom: 0; }
.infocard__facts dt { color: var(--text-dim); font-size: 13px; margin: 0; }
.infocard__facts dd { color: var(--text); font-size: 13px; font-weight: 700; margin: 0; text-align: right; }
.infocard__cta { width: 100%; }
.infocard__note { margin: 10px 0 0; text-align: center; font-size: 11px; color: var(--text-dim); }

/* --------------------------------------------------------------- Landing */
.lp-hero { text-align: center; padding: 64px 0 36px; max-width: 700px; margin: 0 auto; }
.lp-hero__title { font-size: clamp(28px, 5vw, 46px); margin-bottom: 16px; }
.lp-hero__lead { font-size: 17px; margin-bottom: 26px; }
.lp-props { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; padding: 16px 0 8px; }
.lp-prop { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; }
.lp-prop h3 { color: var(--text); font-size: 16px; margin-bottom: 6px; }
.lp-prop p { margin: 0; font-size: 13px; }
.cta-band {
	text-align: center;
	margin: 36px 0 50px;
	padding: 40px 20px;
	border-radius: 16px;
	background: var(--surface);
	border: 1px solid var(--border);
}
.cta-band h2 { font-size: 24px; margin-bottom: 16px; }

/* --------------------------------------------------------------- Content / prose */
.content { padding: 20px 0 40px; }
.content--plain { max-width: 760px; margin: 0 auto; padding-top: 40px; }
.page-title { font-size: clamp(24px, 3.5vw, 34px); margin-bottom: 16px; }
.prose { color: var(--text-muted); font-size: 15px; }
.prose h2 { color: var(--text); font-size: 22px; margin: 1.5em 0 .5em; }
.prose h3 { color: var(--text); font-size: 18px; margin: 1.3em 0 .4em; }
.prose a { color: var(--primary); text-decoration: underline; text-underline-offset: 2px; }
.prose a:hover { color: var(--primary-h); }
.prose ul, .prose ol { padding-left: 1.3em; margin: 0 0 1em; }
.prose li { margin: .3em 0; }
.prose img { border-radius: var(--radius-sm); margin: 1em 0; height: auto;}
.prose blockquote { margin: 1.2em 0; padding: 12px 16px; border-left: 3px solid var(--primary); background: var(--surface); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }
.table-scroll { overflow-x: auto; margin: 1.2em 0; border-radius: var(--radius-sm); }
.prose table { width: 100%; border-collapse: collapse; font-size: 14px; }
.prose th, .prose td { padding: 10px 14px; border: 1px solid var(--border); text-align: left; }
.prose th { background: var(--surface); color: var(--text); }

/* --------------------------------------------------------------- Footer */
.footer { border-top: 1px solid var(--border); background: var(--bg); margin-top: 28px; }
.footer__inner { display: grid; grid-template-columns: 1.4fr 2fr; gap: 36px; padding-top: 40px; padding-bottom: 32px; }
.footer__brand img { height: 30px; margin-bottom: 12px; }
.footer__tag { font-size: 13px; max-width: 38ch; margin: 0; }
.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.footer-col h4 { color: var(--text); font-size: 13px; margin-bottom: 10px; letter-spacing: .04em; text-transform: uppercase; }
.footer-col a { display: block; font-size: 13px; padding: 4px 0; color: var(--text-muted); }
.footer-col a:hover { color: var(--text); }
.footer__legal { display: flex; align-items: flex-start; gap: 14px; padding-top: 18px; padding-bottom: 28px; border-top: 1px solid var(--border); }
.footer__legal p { margin: 0; font-size: 12px; color: var(--text-dim); }
.footer__age { flex: 0 0 auto; font-weight: 800; font-size: 12px; color: var(--no); border: 1px solid var(--no); padding: 2px 7px; border-radius: 5px; }

/* --------------------------------------------------------------- Responsive */
@media (max-width: 1080px) {
	.featured-hero { grid-template-columns: 1fr; }
	.feat-sidebar { flex-direction: row; flex-wrap: wrap; }
	.feat-sidebar > * { flex: 1 1 200px; }
}

@media (max-width: 960px) {
	.hero { grid-template-columns: 1fr; gap: 28px; padding-top: 40px; }
	.hero__panel { max-width: 420px; }
	.market-grid { grid-template-columns: repeat(2, 1fr); }
	.review { grid-template-columns: 1fr; }
	.review__card { position: static; }
	.footer__inner { grid-template-columns: 1fr; gap: 24px; }
	.feat-card__body { grid-template-columns: 1fr; }
	.info-row { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
	.burger { display: flex; }
	.mainnav {
		position: fixed;
		top: var(--topbar-h);
		left: 0; right: 0;
		z-index: 45;
		flex-direction: column;
		align-items: stretch;
		gap: 2px;
		background: var(--bg);
		border-bottom: 1px solid var(--border);
		padding: 10px;
		transform: translateY(-120%);
		transition: transform .22s ease;
	}
	.mainnav.is-open { transform: translateY(0); }
	.mainnav__link { padding: 12px 14px; }
	.lp-props { grid-template-columns: 1fr; }
	.tl-card { flex-wrap: wrap; }
	.tl-card__cta { width: 100%; }
	.hero__stats { gap: 20px; }
}

@media (max-width: 480px) {
	.market-grid { grid-template-columns: 1fr; }
	.topbar__actions .btn-ghost { display: none; }
	.footer-cols { grid-template-columns: 1fr 1fr; }
	.feat-sidebar { flex-direction: column; }
}