:root {
	--ink: #0a0b0d;
	--panel: #121418;
	--panel-2: #191c21;
	--line: #2a2e35;
	--paper: #f4f3ed;
	--muted: #9ba1aa;
	--lime: #c8ff37;
	--orange: #ff7043;
	--max: 1200px;
}
* {
	box-sizing: border-box;
}
html {
	scroll-behavior: smooth;
}
body {
	margin: 0;
	background: var(--ink);
	color: var(--paper);
	font-family: Inter, Arial, Helvetica, sans-serif;
	font-size: 16px;
	line-height: 1.6;
}
a {
	color: inherit;
	text-decoration: none;
}
img {
	display: block;
	width: 100%;
	object-fit: cover;
}
button,
input,
textarea {
	font: inherit;
}
.container {
	width: min(var(--max), calc(100% - 40px));
	margin: 0 auto;
}
.topline {
	height: 4px;
	background: linear-gradient(90deg, var(--lime), #62ffc6 42%, var(--orange));
}
.site-header {
	position: sticky;
	top: 0;
	z-index: 20;
	border-bottom: 1px solid var(--line);
	background: rgba(10, 11, 13, 0.94);
	backdrop-filter: blur(14px);
}
.header-main {
	min-height: 76px;
	display: flex;
	align-items: center;
	gap: 38px;
}
.logo {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-weight: 900;
	letter-spacing: -0.055em;
	font-size: 1.75rem;
	white-space: nowrap;
}
.logo-mark {
	width: 31px;
	height: 31px;
	background: var(--lime);
	color: #070807;
	display: grid;
	place-items: center;
	transform: rotate(-7deg);
	font-size: 1rem;
	letter-spacing: -0.08em;
}
.nav {
	display: flex;
	align-items: center;
	gap: 25px;
	margin-left: auto;
}
.nav a {
	color: #d9dbe0;
	font-size: 0.83rem;
	font-weight: 800;
	letter-spacing: 0.09em;
	text-transform: uppercase;
}
.nav a:hover,
.nav a.active {
	color: var(--lime);
}
.menu-btn {
	display: none;
	margin-left: auto;
	border: 1px solid var(--line);
	background: transparent;
	color: white;
	padding: 8px 11px;
	cursor: pointer;
}
.ticker {
	background: var(--lime);
	color: #0b0d0c;
	font-size: 0.76rem;
	font-weight: 850;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	overflow: hidden;
	white-space: nowrap;
}
.ticker-track {
	padding: 9px 0;
	display: inline-block;
	animation: crawl 24s linear infinite;
}
.ticker-track span {
	margin-right: 42px;
}
@keyframes crawl {
	to {
		transform: translateX(-50%);
	}
}
.eyebrow {
	display: flex;
	align-items: center;
	gap: 10px;
	color: var(--lime);
	font-weight: 850;
	font-size: 0.75rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}
.eyebrow::before {
	content: '';
	width: 24px;
	height: 2px;
	background: currentColor;
}
.hero {
	padding: 52px 0 44px;
}
.hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.65fr) minmax(300px, 0.75fr);
	gap: 18px;
}
.lead {
	min-height: 560px;
	position: relative;
	overflow: hidden;
	background: #17191d;
}
.lead img {
	position: absolute;
	inset: 0;
	height: 100%;
	filter: saturate(0.85) contrast(1.08);
	transition: transform 0.7s ease;
}
.lead:hover img {
	transform: scale(1.025);
}
.lead::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(3, 4, 5, 0.04) 25%, rgba(3, 4, 5, 0.92) 88%);
}
.lead-copy {
	position: absolute;
	z-index: 2;
	left: 34px;
	right: 34px;
	bottom: 30px;
}
.lead h1 {
	margin: 13px 0 12px;
	max-width: 850px;
	font-size: clamp(2.4rem, 5vw, 4.9rem);
	line-height: 0.96;
	letter-spacing: -0.055em;
	text-transform: uppercase;
}
.lead p {
	margin: 0;
	color: #d4d7da;
	max-width: 680px;
}
.side-stack {
	display: grid;
	gap: 18px;
}
.mini-feature {
	background: var(--panel);
	border: 1px solid var(--line);
	display: grid;
	grid-template-rows: 155px 1fr;
	overflow: hidden;
}
.mini-feature img {
	height: 155px;
}
.mini-copy {
	padding: 20px;
}
.tag {
	color: var(--lime);
	font-weight: 900;
	font-size: 0.69rem;
	text-transform: uppercase;
	letter-spacing: 0.12em;
}
.mini-feature h2 {
	margin: 8px 0 0;
	font-size: 1.35rem;
	line-height: 1.14;
	letter-spacing: -0.02em;
}
.section {
	padding: 42px 0 64px;
	border-top: 1px solid var(--line);
}
.section-head {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 24px;
}
.section-head h2,
.page-title {
	margin: 5px 0 0;
	font-size: clamp(2rem, 4vw, 3.8rem);
	line-height: 1;
	letter-spacing: -0.05em;
	text-transform: uppercase;
}
.text-link {
	color: var(--lime);
	font-size: 0.78rem;
	font-weight: 850;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}
.news-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
}
.card {
	background: var(--panel);
	border: 1px solid var(--line);
	transition:
		transform 0.2s,
		border-color 0.2s;
}
.card:hover {
	transform: translateY(-4px);
	border-color: #59606c;
}
.card-media {
	height: 205px;
	overflow: hidden;
}
.card-media img {
	height: 100%;
	transition: transform 0.5s;
}
.card:hover img {
	transform: scale(1.035);
}
.card-copy {
	padding: 21px;
}
.card h3 {
	margin: 8px 0 13px;
	font-size: 1.25rem;
	line-height: 1.2;
	letter-spacing: -0.018em;
}
.meta {
	color: var(--muted);
	font-size: 0.78rem;
}
.split {
	display: grid;
	grid-template-columns: 1.3fr 0.7fr;
	gap: 28px;
}
.rank-list {
	list-style: none;
	padding: 0;
	margin: 0;
	border-top: 1px solid var(--line);
}
.rank-list li {
	display: grid;
	grid-template-columns: 44px 1fr;
	gap: 16px;
	padding: 18px 0;
	border-bottom: 1px solid var(--line);
}
.rank-number {
	color: var(--lime);
	font-size: 1.5rem;
	line-height: 1;
	font-weight: 900;
}
.rank-list h3 {
	margin: 0 0 5px;
	font-size: 1rem;
	line-height: 1.35;
}
.newsletter {
	background: var(--lime);
	color: var(--ink);
	padding: 31px;
	align-self: start;
}
.newsletter h3 {
	margin: 0 0 8px;
	font-size: 1.85rem;
	line-height: 1;
	letter-spacing: -0.04em;
	text-transform: uppercase;
}
.newsletter p {
	margin: 0 0 18px;
}
.newsletter-form {
	display: flex;
	gap: 8px;
}
.newsletter input {
	min-width: 0;
	flex: 1;
	border: 2px solid var(--ink);
	background: transparent;
	color: var(--ink);
	padding: 11px 12px;
}
.newsletter button,
.button {
	border: 2px solid var(--ink);
	background: var(--ink);
	color: white;
	padding: 11px 17px;
	font-weight: 850;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	cursor: pointer;
}
.page-hero {
	padding: 66px 0 40px;
}
.page-hero p {
	max-width: 680px;
	color: var(--muted);
	margin: 16px 0 0;
	font-size: 1.05rem;
}
.filter-bar {
	display: flex;
	flex-wrap: wrap;
	gap: 9px;
	margin: 0 0 27px;
}
.filter {
	border: 1px solid var(--line);
	color: #bec2c9;
	background: transparent;
	padding: 8px 14px;
	cursor: pointer;
	font-size: 0.76rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}
.filter.active,
.filter:hover {
	background: var(--lime);
	color: var(--ink);
	border-color: var(--lime);
}
.feed {
	border-top: 1px solid var(--line);
}
.feed-item {
	display: grid;
	grid-template-columns: 260px 1fr;
	gap: 26px;
	padding: 24px 0;
	border-bottom: 1px solid var(--line);
}
.feed-item img {
	height: 170px;
}
.feed-item h2 {
	margin: 8px 0 8px;
	font-size: 1.65rem;
	line-height: 1.13;
	letter-spacing: -0.03em;
}
.feed-item p {
	color: var(--muted);
	margin: 0 0 10px;
}
.article-wrap {
	max-width: 880px;
	margin: 0 auto;
	padding: 62px 0 70px;
}
.article-wrap h1 {
	font-size: clamp(2.6rem, 6.5vw, 5.5rem);
	line-height: 0.95;
	letter-spacing: -0.06em;
	text-transform: uppercase;
	margin: 14px 0 22px;
}
.article-deck {
	color: #bcc1c8;
	font-size: 1.25rem;
	max-width: 750px;
}
.article-meta {
	display: flex;
	gap: 15px;
	color: var(--muted);
	font-size: 0.8rem;
	margin: 25px 0 31px;
}
.article-hero {
	height: 500px;
	margin-bottom: 34px;
}
.article-body {
	max-width: 720px;
	margin: 0 auto;
	font-family: Georgia, 'Times New Roman', serif;
	font-size: 1.13rem;
	line-height: 1.85;
}
.article-body h2 {
	font-family: Inter, Arial, sans-serif;
	font-size: 2rem;
	line-height: 1.1;
	letter-spacing: -0.035em;
	margin: 45px 0 14px;
}
.article-body blockquote {
	margin: 34px 0;
	padding: 24px 28px;
	border-left: 4px solid var(--lime);
	background: var(--panel);
	font-size: 1.35rem;
	line-height: 1.55;
}
.legal {
	max-width: 820px;
	padding: 64px 0 80px;
}
.legal h1 {
	font-size: clamp(2.5rem, 6vw, 4.8rem);
	line-height: 1;
	text-transform: uppercase;
	letter-spacing: -0.055em;
}
.legal h2 {
	margin-top: 38px;
	font-size: 1.4rem;
}
.legal p,
.legal li {
	color: #c1c5cb;
}
.contact-box {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 35px;
	margin-top: 32px;
	padding: 30px;
	border: 1px solid var(--line);
	background: var(--panel);
}
.contact-box a {
	color: var(--lime);
}
.contact-form {
	display: grid;
	gap: 12px;
}
.contact-form input,
.contact-form textarea {
	width: 100%;
	border: 1px solid var(--line);
	background: var(--ink);
	color: white;
	padding: 12px;
}
.contact-form textarea {
	min-height: 120px;
	resize: vertical;
}
.contact-form button {
	border: 0;
	background: var(--lime);
	color: var(--ink);
	padding: 12px;
	font-weight: 900;
	cursor: pointer;
}
.form-note {
	min-height: 24px;
	color: var(--lime);
	font-size: 0.85rem;
}
.footer {
	border-top: 1px solid var(--line);
	background: #070809;
	padding: 38px 0 22px;
}
.footer-grid {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 28px;
	align-items: start;
}
.footer p {
	color: var(--muted);
	max-width: 520px;
	font-size: 0.85rem;
}
.footer-links {
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
	font-size: 0.78rem;
	font-weight: 750;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}
.footer-links a:hover {
	color: var(--lime);
}
.copyright {
	border-top: 1px solid #1b1d20;
	margin-top: 30px;
	padding-top: 18px;
	color: #777d86;
	font-size: 0.73rem;
}
.ad-zone {
	width: min(var(--max), calc(100% - 40px));
	margin: 24px auto;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}
.ad-zone iframe {
	display: block;
	border: 0;
	max-width: 100%;
}
.ad-zone--native { min-height: 90px; }
.ad-zone--rectangle { min-height: 250px; }
.ad-zone--banner { min-height: 50px; }
.ad-zone:empty {
	display: none;
	min-height: 0;
	margin-block: 0;
}
@media (max-width: 850px) {
	.container {
		width: min(100% - 28px, var(--max));
	}
	.header-main {
		min-height: 66px;
	}
	.menu-btn {
		display: block;
	}
	.nav {
		display: none;
		position: absolute;
		top: 66px;
		left: 0;
		right: 0;
		padding: 19px 20px 23px;
		background: var(--ink);
		border-bottom: 1px solid var(--line);
		flex-direction: column;
		align-items: flex-start;
		gap: 16px;
	}
	.nav.open {
		display: flex;
	}
	.hero {
		padding-top: 26px;
	}
	.hero-grid,
	.split,
	.contact-box {
		grid-template-columns: 1fr;
	}
	.lead {
		min-height: 510px;
	}
	.news-grid {
		grid-template-columns: 1fr 1fr;
	}
}
@media (max-width: 580px) {
	.lead {
		min-height: 455px;
	}
	.lead-copy {
		left: 21px;
		right: 21px;
		bottom: 22px;
	}
	.side-stack,
	.news-grid {
		grid-template-columns: 1fr;
	}
	.mini-feature {
		grid-template-rows: 185px 1fr;
	}
	.mini-feature img {
		height: 185px;
	}
	.section-head {
		align-items: flex-start;
		flex-direction: column;
	}
	.feed-item {
		grid-template-columns: 1fr;
		gap: 15px;
	}
	.feed-item img {
		height: 210px;
	}
	.article-hero {
		height: 310px;
	}
	.newsletter-form {
		flex-direction: column;
	}
	.footer-grid {
		grid-template-columns: 1fr;
	}
}
