:root {
	--bg: #0b0b0b;
	--text: #e0e0e0;
	--accent: #d4ff00;
	--gray: #222;
}

body {
	margin: 0;
	font-family: "Inter", sans-serif;
	background: var(--bg);
	color: var(--text);
	overflow-x: hidden;
}
footer {
	text-align: center;
}

.hero {
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
}

.hero h1 {
	font-size: 4rem;
	color: var(--accent);
	margin-bottom: 0;
}

.case-study {
	display: flex;
	min-height: 80vh;
	align-items: center;
	padding: 50px;
	gap: 50px;
	opacity: 0;
	transform: translateY(50px);
	transition: all 1s ease-out;
}

.case-study.reveal.active {
	opacity: 1;
	transform: translateY(0);
}

.case-study.reverse {
	flex-direction: row-reverse;
}

.content {
	flex: 1;
}
.visual {
	flex: 1;
	height: 400px;
	border: 1px solid var(--gray);
	border-radius: 8px;
}

.btn {
	display: inline-block;
	margin-top: 20px;
	padding: 10px 20px;
	border: 1px solid var(--accent);
	color: var(--accent);
	text-decoration: none;
	transition: 0.3s;
}

.btn:hover {
	background: var(--accent);
	color: #000;
}

@media (max-width: 768px) {
	.case-study,
	.case-study.reverse {
		flex-direction: column;
		padding: 20px;
		text-align: center;
	}

	.visual {
		width: 100%;
		height: 300px;
		flex: none;
		order: -1;
		background-position: center;
	}

	.hero h1 {
		font-size: 2.5rem;
	}
}

.ner-irony {
	background: #1a1a1a;
	padding: 100px 50px;
	border-top: 4px solid var(--accent);
	border-bottom: 4px solid var(--accent);
	margin: 100px 0;
}

.content-full {
	max-width: 1000px;
	margin: 0 auto;
}

.irony-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	margin-top: 30px;
}

.punchline {
	background: #000;
	padding: 30px;
	border-left: 5px solid var(--accent);
	font-style: italic;
	display: flex;
	align-items: center;
}

blockquote {
	font-size: 1.4rem;
	line-height: 1.6;
	margin: 0;
}

@media (max-width: 768px) {
	.irony-grid {
		grid-template-columns: 1fr;
	}
}

.counter-container {
	margin-top: 30px;
	padding: 20px;
	background: #000;
	border: 1px solid var(--accent);
	border-radius: 8px;
	text-align: center;
}

#oil-counter {
	font-size: 3rem;
	font-weight: bold;
	color: var(--accent);
	font-family: "Courier New", monospace;
}

.unit {
	color: var(--accent);
	font-weight: bold;
}

.oil-leak-anim {
	background: #111;
	position: relative;
	overflow: hidden;
	height: 400px;
	border: 1px solid var(--gray);
}

.puddle {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	background: linear-gradient(to top, #000, #1a1a1a);
	height: 5%;
	transition: height 0.5s ease-out;
	border-top: 2px solid var(--accent);
	box-shadow: 0 -10px 30px rgba(212, 255, 0, 0.1);
}

.oil-leak-anim::after {
	content: "\f043";
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	font-size: 2rem;
	color: var(--accent);
	opacity: 0;
	animation: leak-drop 3s infinite cubic-bezier(0.6, 0.04, 0.98, 0.33);
}

@keyframes leak-drop {
	0% {
		top: -10%;
		opacity: 0;
	}
	30% {
		opacity: 0.8;
	}
	90% {
		opacity: 0.8;
		top: 90%;
	}
	100% {
		top: 100%;
		opacity: 0;
	}
}

.ner-finance {
	padding: 100px 20px;
	background: #080808;
	border-top: 1px solid #1a1a1a;
}

.section-title {
	text-align: center;
	font-size: 2.5rem;
	color: var(--accent);
	margin-bottom: 10px;
}

.section-subtitle {
	text-align: center;
	color: #888;
	margin-bottom: 50px;
}

.finance-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 25px;
	max-width: 1400px;
	margin: 0 auto;
}

@media (min-width: 768px) {
	.finance-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1200px) {
	.finance-grid {
		grid-template-columns: repeat(4, 1fr);
	}
}
.card {
	background: #111;
	padding: 40px 30px;
	border: 1px solid #222;
	border-radius: 15px;
	position: relative;
	transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.card.highlight {
	border: 1px solid var(--accent);
	background: linear-gradient(145deg, #111, #050505);
}

.card:hover {
	transform: scale(1.03);
	border-color: var(--accent);
	box-shadow: 0 10px 30px rgba(212, 255, 0, 0.05);
}

.tag {
	display: inline-block;
	background: var(--accent);
	color: #000;
	padding: 4px 10px;
	font-size: 0.7rem;
	font-weight: bold;
	text-transform: uppercase;
	border-radius: 4px;
	margin-bottom: 15px;
}

.ner-fact {
	margin-top: 25px;
	padding-top: 20px;
	border-top: 1px dashed #333;
	display: flex;
	gap: 15px;
	font-size: 0.9rem;
	color: #aaa;
	line-height: 1.4;
}

.ner-fact i {
	color: var(--accent);
	font-size: 1.2rem;
}

strong {
	color: #fff;
	border-bottom: 1px solid var(--accent);
}
.mini-timeline {
	margin: 20px 0;
	border-left: 2px solid #333;
	padding-left: 15px;
}

.t-item {
	margin-bottom: 15px;
	position: relative;
}

.t-item::before {
	content: "";
	position: absolute;
	left: -20px;
	top: 5px;
	width: 8px;
	height: 8px;
	background: #444;
	border-radius: 50%;
}

.t-item.active-item::before {
	background: var(--accent);
	box-shadow: 0 0 10px var(--accent);
}

.t-date {
	display: block;
	font-size: 0.8rem;
	font-weight: bold;
	color: var(--accent);
	margin-bottom: 2px;
}

.t-desc {
	font-size: 0.85rem;
	color: #ccc;
}

@media (min-width: 1024px) {
	.finance-grid {
		grid-template-columns: 1fr 1fr;
	}
}

.final-footer {
	background: #000;
	padding: 60px 20px;
	text-align: center;
	border-top: 2px solid var(--accent);
	margin-top: 50px;
}

.footer-content p {
	font-size: 1.1rem;
	line-height: 1.8;
	color: #888;
}

.warning-text {
	display: block;
	color: #fff;
	font-weight: bold;
	margin-top: 10px;
}

.footer-link {
	color: var(--accent);
	text-decoration: none;
	font-weight: bold;
	border-bottom: 1px solid transparent;
	transition: 0.3s;
	font-size: 1.3rem;
}

.footer-link:hover {
	border-bottom: 1px dotted var(--accent);
	text-shadow: 0 0 10px var(--accent);
}

.ink-link {
	text-transform: lowercase;
}

.insult-subtext {
	display: block;
	font-size: 0.85rem;
	color: #444;
	margin-top: 15px;
	font-style: italic;
}
.safety-declaration {
	background: #0d0d0d;
	color: #bbb;
	padding: 50px 20px;
	border-top: 2px solid #333;
	line-height: 1.6;
}

.safety-content {
	max-width: 700px;
	margin: 0 auto;
	background: #111;
	padding: 30px;
	border-radius: 15px;
	border: 1px solid #222;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.safety-header {
	text-align: center;
	margin-bottom: 20px;
}

.safety-header i {
	color: #ff3e3e;
	font-size: 2rem;
	margin-bottom: 10px;
}

.safety-header h3 {
	color: #fff;
	letter-spacing: 2px;
}

.legal-tone {
	margin-top: 20px;
	font-size: 0.9rem;
	color: #888;
	border-top: 1px solid #222;
	padding-top: 20px;
	font-style: italic;
}

.safety-content strong {
	color: var(--accent);
	border-bottom: none;
}
