@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
  --accent: #00f5ff;
  --text: #ffffff;
  --text-light: rgba(255,255,255,0.85);
}

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

body {
  font-family: 'Inter', system_ui, sans-serif;
  background: #0a0a0a;
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* NAV */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 24px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -2px;
  color: white;
  text-decoration: none;
}

.nav-links a {
  color: white;
  text-decoration: none;
  margin-left: 48px;
  font-weight: 500;
  transition: color 0.3s ease;
}

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

.cta-btn {
  background: var(--accent);
  color: #000;
  padding: 16px 32px;
  border-radius: 9999px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.4s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.cta-btn:hover {
  background: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 245, 255, 0.3);
}

.cta-btn.large {
  padding: 22px 40px;
  font-size: 1.2rem;
}

/* HERO - Now looks stunning */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -2;
  filter: brightness(0.85) contrast(1.15) saturate(1.4);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);
  z-index: -1;
}

.hero-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 2;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-title {
  font-size: 6.2rem;
  line-height: 1.02;
  font-weight: 700;
  letter-spacing: -5px;
  margin-bottom: 16px;
}

.hero-subtitle {
  font-size: 3rem;
  font-weight: 300;
  color: var(--accent);
  margin-bottom: 32px;
}

.hero-desc {
  font-size: 1.45rem;
  max-width: 560px;
  color: var(--text-light);
  margin-bottom: 48px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.secondary-link {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

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

.hero-ai {
  font-size: 18rem;
  font-weight: 700;
  letter-spacing: -25px;
  opacity: 0.12;
  color: var(--accent);
  line-height: 0.8;
  text-align: right;
  pointer-events: none;
}

.diorama-label {
  position: absolute;
  bottom: 48px;
  left: 48px;
  font-size: 0.82rem;
  font-family: monospace;
  letter-spacing: 4px;
  color: rgba(255,255,255,0.45);
  z-index: 2;
}

/* Sections */
.section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 120px 40px;
}

.bg-dark { background: #111111; }

.section-header {
  font-size: 3rem;
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 70px;
}

.about-text {
  font-size: 2.1rem;
  line-height: 1.3;
  max-width: 720px;
  color: var(--text-light);
}

.values {
  margin-top: 40px;
  font-size: 1.3rem;
}

.values span { color: var(--accent); font-weight: 500; }

.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 32px;
}

.card {
  background: #1a1a1a;
  border: 1px solid rgba(255,255,255,0.06);
  padding: 48px 40px;
  border-radius: 28px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover {
  border-color: var(--accent);
  transform: translateY(-16px);
  box-shadow: 0 30px 60px rgba(0, 245, 255, 0.1);
}

.accent-bar {
  height: 5px;
  width: 70px;
  background: var(--accent);
  margin-bottom: 32px;
  border-radius: 9999px;
}

.card h3 {
  font-size: 1.85rem;
  margin-bottom: 20px;
}

.card p {
  color: rgba(255,255,255,0.75);
  margin-bottom: 40px;
  font-size: 1.05rem;
}

.view-link {
  color: var(--accent);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 500;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 48px;
}

.services-grid h4 {
  color: var(--accent);
  font-size: 1.15rem;
  margin-bottom: 16px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 60px;
}

.name { font-weight: 600; font-size: 1.4rem; margin-bottom: 8px; }
.role { color: var(--accent); font-size: 0.95rem; }
.bio { color: rgba(255,255,255,0.7); font-size: 1.05rem; }

.contact-section {
  background: linear-gradient(135deg, #00f5ff, #00c4ff);
  color: #000;
  margin: 60px 40px;
  border-radius: 36px;
  padding: 110px 60px;
  text-align: center;
}

.contact-title { font-size: 3.8rem; line-height: 1.05; font-weight: 700; margin-bottom: 24px; }
.contact-info { font-size: 1.6rem; margin-bottom: 60px; opacity: 0.9; }

.launch-date { margin-top: 50px; opacity: 0.75; font-size: 1rem; }

/* Footer */
footer {
  text-align: center;
  padding: 80px 20px 40px;
  color: rgba(255,255,255,0.35);
  font-size: 0.95rem;
}

/* Mobile */
@media (max-width: 768px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-title { font-size: 4.2rem; }
  .hero-subtitle { font-size: 2.2rem; }
  .hero-ai { display: none; }
  .nav-links { display: none; }
  .section { padding: 80px 24px; }
}
