html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/*font-family: 'Barlow', sans-serif;
font-family: 'Play', sans-serif;*/
:root {
    --concrete-raw: #b1b1b1;
    --concrete-dark: #2a2a2a;
    --moss-glow: #a3e635;
    --moss-deep: #14532d;
    --rust: #78350f;
    --void: #0a0c0b;
    --font-main: 'Inter', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
}

body {
    background-color: var(--void);
    color: var(--concrete-raw);
    font-family: var(--font-main);
    overflow-x: hidden;
    line-height: 1.4;
}

/* --- SVG Filters --- */
.noise-filter {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none;
    opacity: 0.05;
    z-index: 9999;
}

/* --- Layout Utility --- */
.brutalist-border {
    border: 4px solid var(--concrete-dark);
    position: relative;
}

.eroded-edge {
    clip-path: polygon(0% 0%, 98% 2%, 100% 100%, 2% 98%, 0% 100%);
}

.verdant-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(163, 230, 53, 0.1) 0%, transparent 100%);
    pointer-events: none;
}

/* --- Header --- */
nav {
    padding: 2rem;
    mix-blend-mode: difference;
    z-index: 100;
}

.nav-link {
    font-family: var(--font-mono);
    color: var(--moss-glow) !important;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.2rem;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: #fff !important;
    text-shadow: 0 0 10px var(--moss-glow);
}

/* --- Hero --- */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: radial-gradient(circle at center, #1a1c1a 0%, #0a0c0b 100%);
}

.hero-title {
    font-size: clamp(4rem, 15vw, 12rem);
    line-height: 0.8;
    margin: 0;
    color: transparent;
    -webkit-text-stroke: 2px var(--concrete-raw);
    text-transform: uppercase;
    position: relative;
}

.hero-title span {
    color: var(--concrete-raw);
    display: block;
}

.hero-title::after {
    content: "ECOHUB";
    position: absolute;
    top: 5px; left: 5px;
    color: var(--moss-glow);
    z-index: -1;
    filter: blur(15px);
    opacity: 0.5;
}

.hero-stats {
    position: absolute;
    bottom: 4rem;
    right: 4rem;
    font-family: var(--font-mono);
    text-align: right;
}

/* --- Sections --- */
.section-padding { padding: 10rem 0; }

.slab {
    background: var(--concrete-dark);
    padding: 4rem;
    position: relative;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.slab:hover {
    transform: translateY(-10px);
}

.section-label {
    font-family: var(--font-mono);
    color: var(--moss-glow);
    font-size: 0.9rem;
    display: block;
    margin-bottom: 1rem;
}

.crack-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0; left: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 20 L20 25 L15 40 L30 45 L25 60 L40 70' stroke='rgba(255,255,255,0.05)' fill='none'/%3E%3C/svg%3E");
    background-size: cover;
    pointer-events: none;
}

/* --- Buttons --- */
.btn-brutalist {
    background: var(--moss-glow);
    color: var(--void);
    font-family: var(--font-mono);
    font-weight: 700;
    padding: 1.5rem 3rem;
    border: none;
    clip-path: polygon(10% 0, 100% 0, 90% 100%, 0% 100%);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-brutalist:hover {
    background: #fff;
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(163, 230, 53, 0.4);
}

/* --- Footer --- */
footer {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 4rem 0;
    background: #050505;
}

.data-stream {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    opacity: 0.4;
    white-space: nowrap;
    overflow: hidden;
}

/* --- Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .hero-title { font-size: 5rem; }
    .slab { padding: 2rem; }
    .hero-stats { position: relative; bottom: 0; right: 0; margin-top: 2rem; text-align: left; }
}
