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

body {
  font-family: "Inter", sans-serif;
  background-color: #0a0a0a;
  color: #f0f0f0;
  line-height: 1.6;
  overflow-x: hidden;
  visibility: visible !important;
  opacity: 1 !important;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}
a:hover {
  color: #964cff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

h1, h2, h3 {
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(3rem, 8vw, 6rem);
  margin-bottom: 1.5rem;
}

h2 {
  font-size: clamp(2rem, 5vw, 4rem);
  margin-bottom: 1.5rem;
}

p {
  font-size: 1.125rem;
  color: #888;
  max-width: 600px;
}

.lead {
  font-size: 1.25rem;
  color: #ccc;
  margin-bottom: 3rem;
  max-width: 800px;
}

.gradient-text {
  background: linear-gradient(90deg, #fff, #964cff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.label {
  display: block;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #964cff;
  margin-bottom: 1rem;
  font-weight: 600;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  mix-blend-mode: difference;
}
.navbar .logo {
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.navbar .logo img {
  height: 32px;
  width: auto;
}
.navbar .nav-links {
  display: flex;
  gap: 2rem;
}
@media (max-width: 768px) {
  .navbar .nav-links {
    display: none;
  }
}

.hero-section {
  height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-section .hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.hero-section .hero-bg video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.6;
}
.hero-section .hero-bg .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(10, 10, 10, 0.3), rgb(10, 10, 10));
}
.hero-section .hero-title {
  opacity: 0;
  transform: translateY(30px);
}
.hero-section .hero-subtitle {
  opacity: 0;
  transform: translateY(20px);
}
.hero-section .scroll-indicator {
  position: absolute;
  bottom: 3rem;
  left: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  opacity: 0;
}
.hero-section .scroll-indicator span {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.hero-section .scroll-indicator .line {
  width: 1px;
  height: 60px;
  background-color: rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
}
.hero-section .scroll-indicator .line::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  transform: translateY(-100%);
  animation: scrollLine 2s cubic-bezier(0.77, 0, 0.175, 1) infinite;
}

@keyframes scrollLine {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(100%);
  }
}
.content-section {
  padding: 120px 0;
  min-height: 80vh;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
}
.content-section:last-child {
  border-bottom: none;
}
.content-section.has-video-bg {
  overflow: hidden;
}
.content-section.has-video-bg .section-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.content-section.has-video-bg .section-video-bg video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.4;
}
.content-section.has-video-bg .section-video-bg .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(10, 10, 10, 0.35), rgba(10, 10, 10, 0.5));
}
.content-section.has-video-bg .container {
  position: relative;
  z-index: 1;
}

.text-only-layout {
  width: 100%;
}
.text-only-layout .text-content {
  width: 100%;
}
.text-only-layout h2 {
  max-width: 800px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 4rem;
}
@media (max-width: 900px) {
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.feature-grid .feature-item h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #fff;
}
.feature-grid .feature-item p {
  font-size: 1rem;
  line-height: 1.7;
}

.contact-grid .feature-item h3 {
  font-size: 1.25rem;
  color: #888;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.contact-grid .feature-item p {
  font-size: 1.5rem;
  color: #fff;
  font-weight: 600;
}

footer {
  padding: 4rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
footer .footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
footer .footer-content h3 {
  font-size: 1.25rem;
  margin: 0;
}
footer .footer-content p {
  font-size: 0.875rem;
  margin: 0;
}/*# sourceMappingURL=site.css.map */