:root {
  --bg-color: #0d0d0d;
  --text-color: #ededed;
  --accent-color: #cfff04; /* Acid Green */
  --accent-secondary: #ff0055; /* Hot Pink */
  --font-primary: "Anton", sans-serif;
  --font-secondary: "Oswald", sans-serif;
  --font-mono: "Syncopate", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: var(--font-secondary);
  overflow-x: hidden;
  cursor: crosshair;
}

.cursor-follower {
  position: fixed;
  width: 20px;
  height: 20px;
  border: 2px solid var(--accent-color);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
  z-index: 9999;
  transition: width 0.2s, height 0.2s;
  display: none; /* JS will handle enabling */
}

/* Nav */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  mix-blend-mode: difference;
}

.logo {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
}

.nav-logo-img {
  height: 70px; /* Increased size for better visibility */
  width: auto;
  /* border-radius removed to show full logo */
  border: 1px solid var(--accent-color); /* Thinner border for cleaner look */
  object-fit: contain;
}

.nav-controls {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.menu-btn {
  font-family: var(--font-mono);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s;
}

.menu-btn:hover {
  border-color: var(--accent-color);
}

/* Hero */
.hero {
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-content {
  position: absolute;
  z-index: 2;
  text-align: center;
  width: 100%;
  pointer-events: none; /* Let clicks pass through text to image if needed, mostly for visual stacking */
}

.glitch-text {
  font-family: var(--font-primary);
  font-size: 15vw;
  line-height: 0.8;
  text-transform: uppercase;
  position: relative;
  pointer-events: auto;
  color: transparent;
  -webkit-text-stroke: 2px var(--text-color);
}

.glitch-text::before {
  content: attr(data-text);
  position: absolute;
  left: 4px;
  top: 0;
  color: var(--text-color);
  opacity: 0.8;
  mix-blend-mode: overlay;
  z-index: -1;
}

.sub-hero {
  color: var(--text-color);
  -webkit-text-stroke: 0;
  font-size: 15vw;
  margin-top: -2vw;
  display: block;
}

.hero-visual {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.floating-car {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.8));
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(1deg);
  }
}

.tagline {
  font-family: var(--font-mono);
  margin-top: 2rem;
  font-size: 1.2rem;
  letter-spacing: 1px;
  pointer-events: auto;
}

.highlight {
  color: var(--accent-color);
  font-weight: 700;
}

.cta-container {
  margin-top: 3rem;
  pointer-events: auto;
}

.btn-primary {
  display: inline-block;
  padding: 1rem 3rem;
  background: var(--text-color);
  color: var(--bg-color);
  font-family: var(--font-mono);
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--accent-color);
  transform: translateX(-100%);
  transition: transform 0.3s;
  mix-blend-mode: difference;
  z-index: 1;
}

.btn-primary:hover::before {
  transform: translateX(0);
}

.btn-primary:hover {
  color: var(--bg-color); /* Fallback */
}

.btn-primary.small {
  padding: 0.5rem 1.5rem;
  font-size: 0.9rem;
  margin: 0;
}

/* Mission */
.mission {
  padding: 10rem 2rem;
  position: relative;
}

.section-title {
  font-family: var(--font-primary);
  font-size: 8rem;
  text-transform: uppercase;
  margin-bottom: 4rem;
  line-height: 1;
}

.grid-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.mission-card {
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 2rem;
  transition: transform 0.3s;
  background: rgba(255, 255, 255, 0.02);
}

.mission-card:hover {
  transform: translateY(-10px);
  border-color: var(--accent-color);
  background: linear-gradient(
    180deg,
    rgba(207, 255, 4, 0.1) 0%,
    rgba(0, 0, 0, 0) 100%
  );
}

.mission-card h3 {
  font-family: var(--font-mono);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--accent-color);
}

.mission-card p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #bbb;
}

/* Process */
.process {
  padding: 5rem 2rem;
  background: #000;
  color: #fff;
}

.outline-text {
  color: transparent;
  -webkit-text-stroke: 2px var(--accent-color);
  opacity: 0.5;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step {
  display: flex;
  align-items: flex-start;
  padding: 4rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.3s;
}

.step:hover {
  background: rgba(255, 255, 255, 0.05);
}

.step-number {
  font-family: var(--font-primary);
  font-size: 6rem;
  color: rgba(255, 255, 255, 0.1);
  margin-right: 4rem;
  line-height: 0.8;
}

.step-info h3 {
  font-family: var(--font-mono);
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.step-info p {
  font-size: 1.2rem;
  max-width: 600px;
}

/* Community */
.community {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
  border-top: 1px solid #333;
}

.large-text {
  font-family: var(--font-primary);
  font-size: clamp(3rem, 10vw, 10rem);
  line-height: 1;
  margin-bottom: 2rem;
}

.stroke {
  -webkit-text-stroke: 2px var(--accent-secondary);
  color: transparent;
  display: block;
}

.community-desc {
  font-family: var(--font-mono);
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #aaa;
}

.community-sub {
  font-size: 1rem;
  margin-bottom: 4rem;
  color: #666;
}

.btn-giant {
  font-family: var(--font-primary);
  font-size: 4rem;
  text-decoration: none;
  color: var(--text-color);
  border: 2px solid var(--text-color);
  padding: 1rem 3rem;
  border-radius: 100px;
  transition: all 0.5s;
}

.btn-giant:hover {
  background: var(--accent-color);
  color: #000;
  border-color: var(--accent-color);
  transform: scale(1.05);
}

/* Footer */
footer {
  padding: 3rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: #555;
  flex-wrap: wrap;
}

.footer-links a {
  color: #555;
  margin-right: 2rem;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--accent-color);
}

/* Responsive */
@media (max-width: 768px) {
  .section-title {
    font-size: 4rem;
  }

  .step {
    flex-direction: column;
  }

  .step-number {
    margin-bottom: 1rem;
    font-size: 4rem;
  }

  .hero-content {
    margin-top: 5rem;
  }
}

/* Waitlist Modal */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  background: rgba(13, 13, 13, 0.9);
  border: 1px solid var(--accent-color);
  padding: 3rem;
  width: 90%;
  max-width: 600px;
  position: relative;
  transform: translateY(50px);
  transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 0 50px rgba(207, 255, 4, 0.1);
}

.modal-overlay.active .modal-content {
  transform: translateY(0);
}

.close-btn {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--text-color);
  font-family: var(--font-mono);
  font-size: 1.5rem;
  cursor: pointer;
  transition: color 0.3s;
}

.close-btn:hover {
  color: var(--accent-secondary);
}

.modal-title {
  font-family: var(--font-primary);
  font-size: 3rem;
  margin-bottom: 2rem;
  text-align: center;
}

.form-group {
  margin-bottom: 2rem;
}

.form-group label {
  display: block;
  font-family: var(--font-mono);
  margin-bottom: 0.5rem;
  color: #888;
  font-size: 0.9rem;
}

.waitlist-form input,
.waitlist-form select {
  width: 100%;
  background: transparent;
  border: 2px solid #333;
  padding: 1rem;
  color: var(--text-color);
  font-family: var(--font-secondary);
  font-size: 1.2rem;
  transition: border-color 0.3s;
}

.waitlist-form input:focus,
.waitlist-form select:focus {
  outline: none;
  border-color: var(--accent-color);
  background: rgba(207, 255, 4, 0.05);
}

.waitlist-form select option {
  background: var(--bg-color);
}

.full-width {
  width: 100%;
  margin-top: 1rem;
  cursor: pointer;
  border: none;
}
