* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Reset & body */
body {
  margin: 0;
  padding: 20px;
  font-family: 'Inter', sans-serif;
  color: #00f0ff;
  overflow-x: hidden;
}

/* NAV - MATCH HOMEPAGE EXACTLY */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #00f0ff22;
  position: relative;
  z-index: 20; /* ensure it's above video */
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo img {
  height: 40px;
}

.logo span {
  font-family: 'Orbitron', sans-serif;
  color: #00f0ff;
  font-size: 1.2rem;
}

nav a {
  margin-left: 30px;
  color: #aaa;
  text-decoration: none;
  transition: 0.3s;
}

nav a:hover {
  color: #00f0ff;
}

/* MOBILE (important - you were missing this) */
@media(max-width: 768px) {
  nav {
    padding: 20px;
  }
}

body {
  background: #050505;
  color: #eaeaea;
  font-family: 'Inter', sans-serif;
}

/* CTA Section */
.cta-pt {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px; /* perfect spacing between elements */
  text-align: center;
  padding: 60px 20px;
  border-top: 2px solid #00f0ff;
  position: relative;
  z-index: 10;
  color: #00f0ff;
}

.cta-pt a {
  background-color: #00f0ff;
  color: #000;
  padding: 15px 30px;
  font-weight: bold;
  border-radius: 5px;
  text-decoration: none;
}
.cta-pt a:hover {
  background-color: #00cc6a;
}

footer {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 30px;
  border-top: 1px solid #00f0ff22;
  color: #777;
}

/* Video background */
#hero-video {
  position: fixed;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
  filter: brightness(0.25);
}

/* Cyber grid overlay */
.cyber-grid {
  position: fixed;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(0,255,255,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,255,255,0.08) 1px, transparent 1px);
  background-size: 40px 40px;
  animation: moveGrid 8s linear infinite;
}
@keyframes moveGrid {
  0% { background-position: 0 0, 0 0; }
  100% { background-position: 0 40px, 40px 0; }
}

/* Container content */
.container {
  position: relative;
  z-index: 10;
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px;
  padding-bottom: 100px; /* ADD THIS */
}

/* Hero Section */
.hero-pt {
  text-align: center;
  padding: 60px 20px;
  position: relative;
  z-index: 10;
}
.hero-pt h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: 3rem;
  margin-bottom: 20px;
  color: #00f0ff;
}
.hero-pt p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
}

/* Team Section */
.section h2 {
  text-align: center;
  font-family: 'Orbitron', sans-serif;
  font-size: 2rem;
  margin-bottom: 40px;
  color: #00f0ff;
  
/* Terminal box */
.terminal-box {
  background: rgba(0, 0, 0, 0.85);
  border: 1px solid #00ff88;
  padding: 20px;
  border-radius: 8px;
  max-width: 600px;
  margin: 40px auto;
  font-family: 'Courier New', monospace;
  color: #00ff88;
  box-shadow: 0 0 20px #00ff8844;

  height: 260px;
  overflow-y: auto;
}

/* Glitch flash */
.glitch {
  animation: glitchFlash 0.3s;
}

@keyframes glitchFlash {
  0% { box-shadow: 0 0 5px #00ff88; }
  50% { box-shadow: 0 0 25px red; }
  100% { box-shadow: 0 0 5px #00ff88; }
}  
}
.grid-pt {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.card-pt {
  background-color: rgba(0,0,0,0.7);
  padding: 20px;
  border-radius: 8px;
  border: 1px solid #00ff88;
  transition: transform 0.2s, box-shadow 0.2s;
}
.card-pt:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 15px #00ff88;
}
.card-pt h3 {
  font-family: 'Orbitron', sans-serif;
  color: #00ff88;
  margin-bottom: 10px;
}
.card-pt p {
  color: #fff;
}

/* Founder photo styling */
.founder-photo {
  width: 120px;           /* smaller size */
  height: 120px;          /* maintain square */
  object-fit: cover;      /* crop image nicely */
  border-radius: 50%;     /* make it circular */
  display: block;         /* allows centering */
  margin: 0 auto 15px;    /* center horizontally, add space below */
  border: 2px solid #00ff88;
}

/* Music Player */
.music-player {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 20px;

  background: rgba(0,0,0,0.7);
  border: 1px solid #00f0ff;
  padding: 15px;
  border-radius: 10px;
  z-index: 20;
  text-align: center;
  font-family: 'Orbitron', sans-serif;

  cursor: grab;
  user-select: none;
}

.music-player:active {
  cursor: grabbing;
}

.music-player p {
  margin-bottom: 10px;
  color: #00f0ff;
}

.music-player button {
  background: transparent;
  border: 1px solid #00f0ff;
  color: #00f0ff;
  padding: 6px 12px;
  margin: 5px;
  cursor: pointer;
  transition: 0.3s;
}

.music-player button:hover {
  background: #00f0ff;
  color: #000;
  box-shadow: 0 0 10px #00f0ff;
}

.music-player {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 20px;

  width: 220px;
  background: rgba(0,0,0,0.85);
  border: 1px solid #00f0ff;
  border-radius: 10px;
  font-family: 'Orbitron', sans-serif;
  z-index: 20;
  box-shadow: 0 0 15px #00f0ff33;
}

.music-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 10px;
  border-bottom: 1px solid #00f0ff33;
  cursor: grab;
  font-size: 12px;
}

.music-header button {
  background: none;
  border: none;
  color: #00f0ff;
  cursor: pointer;
  font-size: 14px;
}

.music-body {
  padding: 10px;
  text-align: center;
}

.music-player.playing {
  box-shadow: 0 0 20px #00ff88;
  border-color: #00ff88;
}

#boot-text {
  font-size: 11px;
  margin-bottom: 8px;
  color: #00ff88;
}

.controls button {
  background: transparent;
  border: 1px solid #00f0ff;
  color: #00f0ff;
  padding: 5px 10px;
  margin: 5px;
  cursor: pointer;
}

.controls button:hover {
  background: #00f0ff;
  color: black;
}

#volume {
  width: 100%;
  margin-top: 8px;
}

.cursor {
  display: inline-block;
  width: 10px;
  background-color: #00ff88;
  margin-left: 2px;
  animation: blink 1s steps(1) infinite;
}

@keyframes blink {
  0%,50%,100% { opacity: 1; }
  25%,75% { opacity: 0; }
}


.terminal-box {
  background: rgba(0,0,0,0.85);
  border: 1px solid #00ff88;
  padding: 20px;
  border-radius: 8px;
  max-width: 600px;
  margin: 40px auto;
  font-family: 'Courier New', monospace;
  color: #00ff88;
  box-shadow: 0 0 20px #00ff8844;
  overflow-y: auto;
  height: 300px;
  position: relative;
}

.cursor {
  display: inline-block;
  width: 10px;
  background-color: #00ff88;
  margin-left: 2px;
  animation: blink 1s steps(1) infinite;
}

@keyframes blink {
  0%,50%,100% { opacity: 1; }
  25%,75% { opacity: 0; }
}