:root {
  --bg: #000;
  --fg: #e8e8e8;
  --muted: #9a9a9a;
  --accent: #6ee7b7;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  height: 100%;
  background: var(--bg);
  color: var(--fg);
  font-family: 'IBM Plex Mono', monospace;
}

/* Loader */
.loader {
  position: fixed;
  inset: 0;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.loader.hidden { opacity: 0; visibility: hidden; }

.loader-text {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.85rem;
  color: var(--muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.loader-dot {
  width: 7px;
  height: 7px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 1.4s infinite;
}

/* Background */
.bg-image {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 65% 30%, rgba(255,255,255,0.08), rgba(5,5,5,0.96) 60%),
    url("assets/jay.png") 80% center / 35% no-repeat;
  opacity: 0.5;
  filter: grayscale(100%);
  pointer-events: none;
  z-index: 0;
}

.bg-grid {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.15;
  pointer-events: none;
  z-index: 1;
}

/* 🔥 FIXED LOGO */
.bg-logo {
  position: fixed;
  top: 2%;
  right: 2%;
  width: 220px;
  height: 220px;
  background: url("assets/founders-view.png") center / contain no-repeat;
  opacity: 0.45;
  filter: grayscale(100%);
  mix-blend-mode: screen;

  z-index: 10;
  pointer-events: auto;
  cursor: pointer;
}

/* Layout */
.page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 3;
}

.content {
  max-width: 720px;
  padding: 4rem 3rem;
}

/* Typography */
h1 {
  font-size: 2.6rem;
  margin: 0;
  color: #fff;
}
.meta {
  font-size: 0.9rem;
  color: var(--muted);
}
.statement {
  font-size: 1.15rem;
  margin-top: 1rem;
}

/* Status */
.status {
  margin-top: 1.6rem;
  display: flex;
  gap: 0.6rem;
  align-items: center;
}
.status span {
  width: 9px;
  height: 9px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 1.4s infinite;
}

@keyframes pulse {
  0% { opacity: .3; }
  50% { opacity: 1; }
  100% { opacity: .3; }
}

/* Social */
.social {
  display: flex;
  gap: 1.6rem;
  margin-top: 2rem;
}
.social img {
  width: 14px;
  filter: invert(1);
  opacity: .65;
}
.social a {
  color: var(--muted);
  text-decoration: none;
}
.social a:hover { color: var(--fg); }

/* Footer */
footer {
  margin-top: 2.5rem;
  font-size: .7rem;
  color: var(--muted);
}

/* Responsive */
@media (max-width: 768px) {
  .bg-logo {
    width: 140px;
    height: 140px;
    right: 50%;
    transform: translateX(50%);
  }
}
