:root {
  --bg: #121212;
  --accent: #fff;
  --border: rgba(255, 255, 255, 0.1);
  --dim: #444;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: radial-gradient(circle at top center, #111 0%, #121212 70%);
  color: var(--accent);
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
  min-height: 100vh;
}

main {
  font-family: "Inter", sans-serif;
}

.mono {
  font-family: "Space Mono", monospace;
  color: var(--dim);
  font-size: 0.65rem;
  letter-spacing: 4px;
  text-transform: uppercase;
}

/* --- Nav --- */
nav {
  padding: 40px 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  font-weight: 900;
  letter-spacing: 10px;
  font-size: 1.5rem;
  background-color: #ffffff;
  color: #121212;
  padding: 1%;
  margin-left: auto;
  margin-right: auto;
}

/* --- Hero --- */
.hero {
  padding: 100px 8% 60px;
  text-align: left;
}
.hero h1 {
  font-size: clamp(4rem, 15vw, 12rem);
  font-weight: 900;
  letter-spacing: -8px;
  line-height: 0.8;
  margin: 20px 0;
  animation: flicker 3s infinite;
}

@keyframes flicker {
  0%,
  18%,
  22%,
  25%,
  53%,
  57%,
  100% {
    opacity: 1;
  }
  20%,
  24%,
  55% {
    opacity: 0.7;
  }
}

/* --- Compact 4 Venture List --- */
.ventures {
  padding: 40px 8%;
}
.v-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.v-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 40px;
  transition: 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  text-decoration: none;
  color: inherit;
}
.v-card:hover {
  background: var(--accent);
  color: var(--bg);
  transform: translateY(-5px);
}
.v-card h3 {
  font-weight: 900;
  font-size: 1.5rem;
  margin-top: 20px;
  text-transform: uppercase;
}

/* --- Email CTA --- */
.contact {
  padding: 120px 8%;
  text-align: center;
}
.mail-link {
  font-size: clamp(1.5rem, 5vw, 3rem);
  font-weight: 900;
  color: var(--accent);
  text-decoration: none;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 10px;
  transition: 0.3s;
}
.mail-link:hover {
  opacity: 0.5;
}

/* --- Footer (3 Links) --- */
footer {
  padding: 80px 8% 40px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--accent);
  letter-spacing: 5px;
  font-family: "Space Mono", monospace;
}
.footer-links {
  display: flex;
  gap: 10px;
}
.footer-links a {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--accent);
  letter-spacing: 3px;
}

@media (max-width: 768px) {
  .v-list {
    grid-template-columns: 1fr;
  }
  .footer-links {
    gap: 20px;
  }
  .hero h1 {
    letter-spacing: -3px;
  }
}

::-moz-selection {
  color: #121212;
  background: #e0e0e0;
}

::selection {
  color: #121212;
  background: #e0e0e0;
}

.div1 {
  overflow: hidden;
  margin: auto;
  padding: 10px;
}

.span1 {
  background: #e0e0e0;
  color: #f0e7ef;
  width: 18%;
  padding: 60px;
}

.span1 a {
  font-family: "Space Mono", monospace;
  font-weight: 800;
  text-decoration: none;
  color: #121212;
}
