/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #ffffff;
  color: #111827;
  line-height: 1.5;
}

/* Monospace font for brand elements */
.font-mono {
  font-family: 'Courier New', Courier, monospace;
}

/* Header */
header {
  background-color: #ffffff;
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0.5rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
}

.brand-text {
  color: #111827;
  font-family: 'Courier New', Courier, monospace;
  font-size: 1rem;
}

.brand-text-white {
  color: #ffffff;
}

.brand-slash {
  color: #000000;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.875rem;
}

.nav-link {
  color: #000000;
  text-decoration: none;
  transition: all 0.2s;
  font-weight: 500;
}

.nav-link:hover {
  color: #000000;
}

.nav-link-pink:hover {
  color: #000000;
}

/* Hero Section */
.hero-section {
  background-color: #ffffff;
  padding: 0;
  height: calc(100vh - 50px);
  display: flex;
  align-items: center;
}

@media (min-width: 768px) {
  .hero-section {
    height: calc(100vh - 45px);
  }
}

.hero-container {
  padding: 0 1.5rem;
  width: 100%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  border: 3px solid #000000;
  box-shadow: 4px 4px 0px 0px #000000;
  height: 100%;
  max-height: calc(100vh - 60px);
}

@media (min-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    max-height: calc(100vh - 55px);
  }
}

.hero-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: none;
  border-bottom: 3px solid #000000;
  height: 100%;
  overflow: hidden;
}

@media (min-width: 768px) {
  .hero-content {
    padding: 2rem 3rem;
    border-right: 3px solid #000000;
    border-bottom: none;
  }
}

.hero-label {
  color: #000000;
  font-size: 0.875rem;
  margin-bottom: 1rem;
  font-family: 'Courier New', Courier, monospace;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
}

.hero-title {
  font-size: 1.75rem;
  margin-bottom: 0;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #000000;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 2.75rem;
  }
  
  .hero-label {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
}

.hero-description {
  color: #000000;
  font-size: 0.7rem;
  margin-bottom: 0.6rem;
  opacity: 0.8;
  line-height: 1.35;
}

.hero-buttons {
  display: flex;
  gap: 0.5rem;
}

.hero-image-container {
  background-color: #ffffff;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  padding: 0;
  overflow: hidden;
  height: 100%;
  min-height: 180px;
}

@media (min-width: 768px) {
  .hero-image-container {
    min-height: auto;
  }
}

.hero-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* Buttons */
.btn {
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  font-family: 'Courier New', Courier, monospace;
  border: 2px solid #000000;
  cursor: pointer;
  transition: all 0.15s;
  font-weight: 600;
  box-shadow: 2px 2px 0px 0px #000000;
}

.btn-primary {
  background-color: #000000;
  color: #ffffff;
}

.btn-primary:hover {
  transform: translate(2px, 2px);
  box-shadow: 0px 0px 0px 0px #000000;
}

.btn-secondary {
  border: 2px solid #000000;
  background-color: #ffffff;
  color: #000000;
}

.btn-secondary:hover {
  background-color: #000000;
  color: #ffffff;
  transform: translate(2px, 2px);
  box-shadow: 0px 0px 0px 0px #000000;
}

/* Terminal Section */
.terminal-section {
  background-color: #ffffff;
  padding: 1.5rem 0;
}

@media (min-width: 768px) {
  .terminal-section {
    padding: 2rem 0;
  }
}

.terminal-container {
  padding: 0 1.5rem;
}

.terminal-box {
  border: 3px solid #000000;
  background-color: #ffffff;
  box-shadow: 4px 4px 0px 0px #000000;
}

.terminal-header {
  border-bottom: 2px solid #000000;
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.terminal-dots {
  display: flex;
  gap: 0.375rem;
}

.terminal-dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
}

.terminal-dot-purple {
  background-color: #C8B4FF;
}

.terminal-dot-pink {
  background-color: #FFB4C8;
}

.terminal-dot-gray {
  background-color: #96C8E6;
}

.terminal-content {
  padding: 1.5rem;
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.875rem;
  text-align: center;
}

.terminal-text {
  color: #000000;
  font-weight: 500;
}

.terminal-prompt {
  color: #000000;
  font-weight: 600;
}

/* Founders Section */
.founders-section {
  background-color: #ffffff;
  padding: 1.5rem 0;
}

@media (min-width: 768px) {
  .founders-section {
    padding: 2rem 0;
  }
}

.founders-container {
  padding: 0 1.5rem;
}

.founders-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .founders-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.founder-card {
  border: 3px solid #000000;
  padding: 1.5rem;
  background-color: #ffffff;
  box-shadow: 4px 4px 0px 0px #000000;
  transition: all 0.15s;
}

.founder-card:hover {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0px 0px #000000;
}

.founder-header {
  margin-bottom: 1.5rem;
}

.founder-name {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
  font-weight: 600;
  font-family: 'Courier New', Courier, monospace;
}

.founder-role {
  font-size: 0.75rem;
  font-family: 'Courier New', Courier, monospace;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.founder-role-purple {
  color: #000000;
  font-weight: 600;
}

.founder-role-pink {
  color: #000000;
  font-weight: 600;
}

.founder-bio {
  color: #000000;
  font-size: 0.875rem;
  margin-bottom: 1rem;
  opacity: 0.85;
}

.founder-bio p {
  margin-bottom: 1rem;
}

.founder-bio p:last-child {
  margin-bottom: 0;
}

.founder-links {
  margin-top: 1rem;
  display: flex;
  gap: 0.5rem;
}

.founder-link {
  border: 2px solid #000000;
  background-color: #ffffff;
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  font-family: 'Courier New', Courier, monospace;
  text-decoration: none;
  color: #000000;
  transition: all 0.15s;
  display: inline-block;
  font-weight: 600;
  box-shadow: 2px 2px 0px 0px #000000;
}

.founder-link-purple {
  border-color: #000000;
}

.founder-link-purple:hover {
  background-color: #000000;
  color: #ffffff;
  transform: translate(2px, 2px);
  box-shadow: 0px 0px 0px 0px #000000;
}

.founder-link-pink {
  border-color: #000000;
}

.founder-link-pink:hover {
  background-color: #000000;
  color: #ffffff;
  transform: translate(2px, 2px);
  box-shadow: 0px 0px 0px 0px #000000;
}

.founder-link-gray {
  border-color: #000000;
}

.founder-link-gray:hover {
  background-color: #000000;
  color: #ffffff;
  transform: translate(2px, 2px);
  box-shadow: 0px 0px 0px 0px #000000;
}

/* Footer */
.footer {
  background-color: #000000;
  color: #ffffff;
  padding: 2rem 0;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.footer-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  .footer-content {
    flex-direction: row;
  }
}

.footer-brand {
  display: flex;
  align-items: center;
}

.footer-copyright {
  color: #ffffff;
  font-size: 0.75rem;
  font-family: 'Courier New', Courier, monospace;
  opacity: 0.8;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}
