/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Lato', sans-serif;
  background: #121212;
  color: #fff;
  overflow-x: hidden;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: #111;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: 72px;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 0.5rem;
}

.logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: #fff;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: #3d97e9;
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.social-icons img {
  width: 24px;
  height: 24px;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

.social-icons a:hover img {
  opacity: 1;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-bg .hero-video,
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-bg .hero-video {
  filter: blur(2px);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 65% 50%,
    rgba(12, 12, 12, 0.3) 0%,
    rgba(12, 12, 12, 0.7) 100%
  );
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem 2rem 4rem;
  display: flex;
  align-items: center;
  gap: 4rem;
  width: 100%;
}

.hero-phone {
  flex-shrink: 0;
  width: 320px;
  max-height: 80vh;
  object-fit: contain;
}

.hero-content {
  flex: 1;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 2rem;
  text-align: right;
  text-transform: uppercase;
}

.title-line {
  display: block;
}

.title-line strong {
  color: #3d97e9;
}

.hero-description {
  font-size: 1.15rem;
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  margin-left: 200px;
  text-align: right;
  color: rgba(255, 255, 255, 0.9);
}

.hero-cta {
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 2rem;
  text-align: right;
  color: rgba(255, 255, 255, 0.8);
}

.app-store-link {
  display: inline-block;
  float: right;
}

.app-store-link img {
  height: 64px;
  object-fit: contain;
}

/* Responsive */
@media (max-width: 960px) {
  .hero-inner {
    flex-direction: column;
    text-align: center;
    padding-top: 8rem;
  }

  .hero-phone {
    width: 260px;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-title {
    font-size: 2.75rem;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-phone {
    width: 200px;
  }

  .logo-text {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.75rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .app-store-link img {
    height: 52px;
  }
}