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


:root {

  --accent: #00f5ff;

}


* {

  margin: 0;

  padding: 0;

  box-sizing: border-box;

}


body {

  font-family: 'Inter', system_ui, sans-serif;

  background: #000;

  color: #fff;

  line-height: 1.6;

}


/* NAV */

.nav {

  position: fixed;

  top: 0;

  left: 0;

  right: 0;

  z-index: 50;

  background: rgba(0, 0, 0, 0.9);

  backdrop-filter: blur(12px);

  border-bottom: 1px solid rgba(255,255,255,0.1);

}


.nav-container {

  max-width: 1400px;

  margin: 0 auto;

  padding: 20px 32px;

  display: flex;

  align-items: center;

  justify-content: space-between;

}


.logo {

  font-size: 32px;

  font-weight: 700;

  letter-spacing: -2px;

  text-decoration: none;

  color: white;

}


.nav-links a {

  color: white;

  text-decoration: none;

  margin-left: 40px;

  font-weight: 500;

  transition: color 0.3s ease;

}


.nav-links a:hover {

  color: var(--accent);

}


.cta-btn {

  background: var(--accent);

  color: #000;

  padding: 14px 28px;

  border-radius: 9999px;

  font-weight: 600;

  text-decoration: none;

  transition: all 0.3s ease;

  display: inline-flex;

  align-items: center;

  gap: 10px;

}


.cta-btn:hover {

  background: white;

  transform: translateY(-2px);

}


.cta-btn.large {

  padding: 20px 36px;

  font-size: 1.15rem;

}


/* HERO */

.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.95) contrast(1.25) saturate(1.55) hue-rotate(5deg);

  transform: scale(1.08);

}


.hero-overlay {

  position: absolute;

  inset: 0;

  background: radial-gradient(circle at center, transparent 40%, rgba(0,0,0,0.65) 100%);

  z-index: -1;

}


.hero-content {

  max-width: 1400px;

  margin: 0 auto;

  padding: 0 32px;

  position: relative;

  z-index: 2;

}


.hero-grid {

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 60px;

  align-items: center;

}


.hero-title {

  font-size: 5.5rem;

  line-height: 1.05;

  font-weight: 700;

  letter-spacing: -4px;

}


.hero-subtitle {

  font-size: 2.75rem;

  font-weight: 300;

  color: var(--accent);

  margin: 20px 0 30px;

}


.hero-desc {

  font-size: 1.35rem;

  max-width: 520px;

  color: rgba(255,255,255,0.95);

}


.hero-actions {

  margin-top: 40px;

  display: flex;

  align-items: center;

  gap: 30px;

}


.hero-ai {

  font-size: 16rem;

  font-weight: 700;

  letter-spacing: -20px;

  opacity: 0.15;

  color: var(--accent);

  line-height: 1;

  text-align: right;

}


.diorama-label {

  position: absolute;

  bottom: 40px;

  left: 40px;

  font-size: 0.8rem;

  font-family: monospace;

  letter-spacing: 3px;

  color: rgba(255,255,255,0.5);

}


/* SECTIONS */

.section {

  max-width: 1400px;

  margin: 0 auto;

  padding: 100px 32px;

}


.bg-dark {

  background: rgba(255,255,255,0.03);

}


.section-header {

  font-size: 2.75rem;

  line-height: 1.1;

  font-weight: 700;

  margin-bottom: 60px;

}


.about-text {

  font-size: 1.85rem;

  line-height: 1.35;

  max-width: 680px;

}


.values span {

  color: var(--accent);

}


/* WORK */

.work-grid {

  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));

  gap: 30px;

}


.card {

  background: #111;

  border: 1px solid rgba(255,255,255,0.08);

  padding: 40px 32px;

  border-radius: 24px;

  transition: all 0.4s ease;

}


.card:hover {

  border-color: var(--accent);

  transform: translateY(-12px);

}


.accent-bar {

  height: 4px;

  width: 60px;

  background: var(--accent);

  margin-bottom: 24px;

  border-radius: 9999px;

}


.card h3 {

  font-size: 1.65rem;

  margin-bottom: 16px;

}


.card p {

  color: rgba(255,255,255,0.75);

  margin-bottom: 32px;

}


.view-link {

  color: var(--accent);

  font-size: 0.9rem;

  text-transform: uppercase;

  letter-spacing: 1px;

  font-weight: 500;

}


/* SERVICES */

.services-grid {

  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));

  gap: 40px;

}


.services-grid h4 {

  color: var(--accent);

  font-size: 1.1rem;

  margin-bottom: 12px;

}


/* TEAM */

.team-grid {

  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));

  gap: 50px;

}


.name {

  font-weight: 600;

  font-size: 1.3rem;

}


.role {

  color: var(--accent);

  font-size: 0.95rem;

}


.bio {

  color: rgba(255,255,255,0.7);

  margin-top: 12px;

}


/* CONTACT */

.contact-section {

  background: linear-gradient(135deg, #00f5ff, #00b8ff);

  color: #000;

  margin: 40px;

  border-radius: 32px;

  padding: 100px 40px;

  text-align: center;

}


.contact-title {

  font-size: 3.5rem;

  line-height: 1.1;

  font-weight: 700;

}


.contact-info {

  font-size: 1.5rem;

  margin: 30px 0 50px;

}


.launch-date {

  margin-top: 40px;

  opacity: 0.75;

  font-size: 0.95rem;

}


/* FOOTER */

footer {

  text-align: center;

  padding: 60px 20px;

  color: rgba(255,255,255,0.3);

  font-size: 0.9rem;

}


/* Responsive */

@media (max-width: 768px) {

  .hero-grid {

    grid-template-columns: 1fr;

    gap: 40px;

  }

  .hero-title {

    font-size: 3.8rem;

  }

  .hero-ai {

    font-size: 10rem;

    opacity: 0.08;

  }

  .nav-links {

    display: none;

  }

}