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

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #0a0a0a;
  color: #f5f5f5;
  overflow-x: hidden;
}

#matrix {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.2;
  pointer-events: none;
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  padding: 0.875rem 0;
  background: rgba(10,10,10,0.8);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

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

.logo {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.logo span {
  color: #f97316;
}

nav a {
  color: #9ca3af;
  text-decoration: none;
  margin-left: 1.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
}

nav a:hover {
  color: #f97316;
}

.btn-launch {
  background: #f97316;
  color: white !important;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-size: 0.8125rem !important;
  margin-left: 2rem !important;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 6rem 1.5rem 3rem;
}

.hero-content {
  text-align: center;
  max-width: 720px;
  z-index: 10;
  position: relative;
}

h1 {
  font-size: clamp(2.5rem, 7vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #f97316;
  line-height: 1;
  margin-bottom: 1rem;
}

.tagline {
  font-size: clamp(1.25rem, 3.5vw, 1.5rem);
  font-weight: 600;
  margin-bottom: 0.75rem;
  line-height: 1.3;
  color: #e5e7eb;
}

.subtitle {
  font-size: 0.9375rem;
  color: #6b7280;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 2.5rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.stat {
  text-align: center;
}

.number {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  color: #fb923c;
  line-height: 1;
  letter-spacing: -0.02em;
}

.label {
  margin-top: 0.375rem;
  color: #6b7280;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.cta-group {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.btn {
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.625rem 1.25rem;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.primary {
  background: #f97316;
  color: white;
  box-shadow: 0 4px 14px rgba(249,115,22,0.25);
}

.primary:hover {
  background: #ea580c;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(249,115,22,0.35);
}

.secondary {
  border: 1px solid rgba(249,115,22,0.5);
  color: #f97316;
  background: transparent;
}

.secondary:hover {
  background: rgba(249,115,22,0.08);
  transform: translateY(-1px);
}

.powered {
  position: absolute;
  bottom: 1.5rem;
  left: 0;
  right: 0;
  text-align: center;
  color: #4b5563;
  font-size: 0.6875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.logos span {
  color: #6b7280;
  margin: 0 0.75rem;
  font-size: 0.8125rem;
  font-weight: 500;
}

.logos span:nth-child(1) { color: #f97316; }
.logos span:nth-child(2) { color: #a78bfa; }
.logos span:nth-child(3) { color: #60a5fa; }

@media (max-width: 768px) {
  .stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .container { flex-direction: column; gap: 1rem; }
  nav { text-align: center; }
  nav a { margin: 0 0.75rem 0.5rem; font-size: 0.8125rem; }
  .btn-launch { margin: 0.75rem auto 0 !important; display: inline-block; }
}
/* About Page Styles */
.about-page main {
  padding-top: 6rem;
}

.about-hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 1.5rem;
  text-align: center;
}

.about-hero__content {
  max-width: 720px;
}

.about-hero__content h1 {
  font-size: clamp(2.5rem, 5vw, 3.25rem);
  margin-bottom: 1rem;
}

.about-hero__content p {
  color: #9ca3af;
  line-height: 1.6;
}

.pillar-grid {
  width: min(1100px, 90vw);
  margin: 0 auto 3rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.pillar-grid article {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 1.75rem;
}

.pillar-grid h2 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.pillar-grid p {
  color: #d1d5db;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.pillar-grid ul {
  list-style: none;
  color: #9ca3af;
}

.pillar-grid li {
  margin-bottom: 0.4rem;
}

.about-contact {
  width: min(900px, 90vw);
  margin: 0 auto 4rem;
  padding: 2rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.about-contact h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.about-contact p {
  color: #9ca3af;
}
