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

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

/* NAV */
.nav {
  position: fixed;
  top: 0;
  width: 100%;
  height: 72px;
  padding: 0 6%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(14px);
  z-index: 100;
}

.logo {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 2px;
}

.logo span {
  color: #7cf5ff;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.btn-glass {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  padding: 8px 20px;
  border-radius: 999px;
  cursor: pointer;
}

/* HERO */
.hero {
  position: relative;
  height: 100vh;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.2));
}

.hero-text {
  position: absolute;
  bottom: 20%;
  left: 6%;
}

.hero-text h1 {
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 1;
}

.hero-text p {
  margin-top: 16px;
  max-width: 420px;
  color: #ccc;
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.6;
}

/* STRIP */
.strip {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 30px;
  padding: 80px 6%;
  background: #050505;
}

.strip-card {
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 32px;
  backdrop-filter: blur(10px);
}

.strip-card h3 {
  margin-bottom: 10px;
}

/* RAIL */
.rail {
  padding: 80px 6%;
}

.rail h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.rail-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
}

.tile {
  min-width: 260px;
  height: 160px;
  background-size: cover;
  background-position: center;
  border-radius: 16px;
  transition: transform 0.4s ease;
}

.tile:hover {
  transform: scale(1.08);
}

/* GLASS */
.glass {
  min-height: 80vh;
  background: url("https://images.unsplash.com/photo-1524985069026-dd778a71c7b4") center/cover;
  display: flex;
  align-items: center;
  padding: 0 6%;
}

.glass-card {
  max-width: 520px;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(18px);
  padding: 48px;
  border-radius: 22px;
}

.glass-card h2 {
  font-size: 2.6rem;
  margin-bottom: 14px;
}

.btn-primary {
  margin-top: 28px;
  padding: 14px 36px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg,#7cf5ff,#4aa3ff);
  font-weight: 700;
  cursor: pointer;
}

/* STACK */
.stack {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 40px;
  padding: 100px 6%;
}

.stack-item h3 {
  margin-bottom: 10px;
}

/* FOOTER */
footer {
  padding: 50px;
  text-align: center;
  background: #020202;
  color: #777;
}

.footer-logo {
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 10px;
}


































///
