:root {
    --orange: #FF5F1F;
    --black: #0F0F0F;
    --white: #ffffff;
    --gray: #F2F2F2;
    --border: #e0e0e0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none; /* Custom cursor remains */
}

body {
    background-color: var(--white);
    color: var(--black);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

/* Watermark (Tero-Tech) */
.watermark::before{
  content: "Tero-Tech";
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  display: grid !important;
  place-items: center;
  font-size: clamp(52px, 12vw, 160px);
  font-weight: 800;
  letter-spacing: 2px;
  color: rgba(15, 15, 15, .70);
  -webkit-text-stroke: 1px rgba(15, 15, 15, .30);
  text-stroke: 1px rgba(15, 15, 15, .30);
  text-shadow: 0 2px 8px rgba(0,0,0,.25);
  transform: rotate(-18deg);
  pointer-events: none !important;
  z-index: 999999 !important;
}
.watermark *{ position: relative; z-index: auto; }

/* --- TEXTURE & CURSOR --- */
.noise-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none; z-index: 9999; opacity: 0.04;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1MDAiIGhlaWdodD0iNTAwIj48ZmlsdGVyIGlkPSJub2lzZSI+PGZlVHVyYnVsZW5jZSB0eXBlPSJmcmFjdGFsTm9pc2UiIGJhc2VGcmVxdWVuY3k9IjAuNjUiIG51bT1PY3RhdmVzPSIzIiBzdGl0Y2hUaWxlcz0ic3RpdGNoIi8+PC9maWx0ZXI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsdGVyPSJ1cmwoI25vaXNlKSIgb3BhY2l0eT0iMSIvPjwvc3ZnPg==');
}

.cursor-dot {
    width: 6px; height: 6px; background-color: var(--black);
    position: fixed; top: 0; left: 0; border-radius: 50%; z-index: 10000;
    pointer-events: none; transform: translate(-50%, -50%);
}
.cursor-outline {
    width: 30px; height: 30px; border: 1px solid rgba(0,0,0,0.5);
    position: fixed; top: 0; left: 0; border-radius: 50%; z-index: 10000;
    pointer-events: none; transform: translate(-50%, -50%);
}

/* --- NAV --- */
nav {
    position: fixed; top: 0; width: 100%; padding: 1.5rem 5%; z-index: 5000;
    background: rgba(255,255,255,0.8); backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.nav-wrapper { display: flex; justify-content: space-between; align-items: center; }
.logo { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.4rem; letter-spacing: -1px; }
.orange-dot { color: var(--orange); }
.menu-items a { text-decoration: none; color: var(--black); margin-left: 2rem; font-weight: 600; font-size: 0.9rem; }
.donate-link { background: var(--black); color: var(--white) !important; padding: 0.6rem 1.2rem; border-radius: 4px; transition: 0.3s; }
.donate-link:hover { background: var(--orange); }

/* --- NEW HERO SECTION (Balanced) --- */
.hero-split {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 0.8fr 1fr; /* Text takes less space, image takes more */
    padding-top: 80px; /* Space for nav */
    overflow: hidden;
}

.hero-text {
    padding: 6rem 10% 4rem 10%; /* Comfortable padding */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.status-pill {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--gray); padding: 6px 14px; border-radius: 50px;
    font-size: 0.8rem; font-weight: 600; width: fit-content; margin-bottom: 2rem;
}
.dot-live { width: 8px; height: 8px; background: var(--orange); border-radius: 50%; animation: pulse 2s infinite; }

.hero-text h1 {
    font-family: 'Syne', sans-serif;
    font-size: 4rem; /* Big, but not crazy */
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}
.highlight-text { font-style: italic; color: var(--orange); }

.hero-sub { font-size: 1.15rem; line-height: 1.6; color: #555; max-width: 450px; margin-bottom: 2.5rem; }

.hero-actions { display: flex; align-items: center; gap: 1.5rem; margin-bottom: 4rem; }
.btn-primary {
    background: var(--black); color: var(--white); text-decoration: none;
    padding: 1rem 2rem; font-weight: 600; border-radius: 4px; transition: 0.3s;
}
.btn-primary:hover { background: var(--orange); transform: translateY(-2px); }
.btn-link { color: var(--black); text-decoration: none; font-weight: 600; border-bottom: 1px solid var(--black); }

.stat-row { display: flex; gap: 3rem; border-top: 1px solid var(--border); padding-top: 1.5rem; }
.stat-row div { display: flex; flex-direction: column; }
.stat-row strong { font-family: 'Syne', sans-serif; font-size: 1.5rem; }
.stat-row span { font-size: 0.85rem; color: #666; }

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 100%;
    padding: 2rem; /* creates a frame around image */
}
.image-reveal {
    width: 100%; height: 100%;
    overflow: hidden;
    border-radius: 20px;
    position: relative;
}
.image-reveal img {
    width: 100%; height: 100%;
    object-fit: cover;
    animation: zoomReveal 1.5s ease-out;
}

/* --- MANIFESTO --- */
.manifesto { background: var(--black); color: var(--white); padding: 8rem 5%; }
.big-statement {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.3;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}
.white-highlight { border-bottom: 2px solid var(--orange); }

/* --- STACKING CARDS (Kept intact) --- */
.stack-area { background: var(--gray); padding: 5rem 5% 8rem 5%; }
.stack-header { margin-bottom: 4rem; text-align: center; }
.stack-header h2 { font-family: 'Syne', sans-serif; font-size: 3rem; margin-bottom: 0.5rem; }

.sticky-card {
    position: sticky; top: 120px;
    margin-bottom: 40px;
    max-width: 1000px; margin-left: auto; margin-right: auto;
}

.card-inner {
    padding: 4rem; border-radius: 20px;
    min-height: 400px;
    display: flex; flex-direction: column; justify-content: space-between;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}
.sticky-card:hover .card-inner { transform: translateY(-10px); }

.theme-dark { background: var(--black); color: var(--white); }
.theme-orange { background: var(--orange); color: var(--white); }
.theme-light { background: var(--white); color: var(--black); border: 1px solid #ddd; }

.card-top { display: flex; justify-content: space-between; align-items: flex-start; }
.card-num { font-size: 4rem; opacity: 0.2; font-family: 'Syne', sans-serif; font-weight: 800; }
.card-top h3 { font-size: 2.5rem; font-family: 'Syne', sans-serif; margin-top: 1rem; }

.card-bottom { display: flex; justify-content: space-between; align-items: flex-end; margin-top: 3rem; }
.card-bottom p { max-width: 400px; font-size: 1.1rem; line-height: 1.5; }

.card-btn {
    padding: 0.8rem 1.5rem; background: transparent; border: 1px solid rgba(255,255,255,0.4);
    color: inherit; border-radius: 50px; font-weight: 600; transition: 0.3s;
}
.white-btn { border-color: var(--white); color: var(--white); }
.dark-btn { border-color: var(--black); color: var(--black); }
.card-btn:hover { background: var(--white); color: var(--black); border-color: var(--white); }

/* --- FOOTER --- */
footer { background: var(--black); color: var(--white); padding: 5rem 5% 2rem 5%; }
.footer-content { display: flex; justify-content: space-between; margin-bottom: 4rem; }
.footer-left h2 { font-family: 'Syne', sans-serif; font-size: 2.5rem; }
.footer-right { display: flex; gap: 2rem; }
.footer-right a { color: var(--white); text-decoration: none; font-size: 1.1rem; }
.copyright { border-top: 1px solid #333; padding-top: 2rem; font-size: 0.9rem; color: #777; }

/* Animations */
@keyframes pulse { 0% { opacity: 1; } 50% { opacity: 0.4; } 100% { opacity: 1; } }
@keyframes zoomReveal { from { transform: scale(1.1); } to { transform: scale(1); } }

/* Mobile */
@media (max-width: 768px) {
    .hero-split { grid-template-columns: 1fr; padding-top: 60px; }
    .hero-visual { height: 400px; padding: 1rem; }
    .hero-text h1 { font-size: 3rem; }
    .card-bottom { flex-direction: column; gap: 1.5rem; align-items: flex-start; }
}