:root {
  --bg: #0e0e0e;
  --text: #ffffff;
}

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

html, body {
  background: var(--bg);
  color: var(--text);
  font-family: Inter, sans-serif;
  height: 100%;
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
}

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 24px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
  opacity: 1;
}

.nav-links,
.nav-buttons {
  display: flex;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Playfair Display", serif;
}

.nav-logo img {
  width: 24px;
  height: 24px;
}

.button {
  padding: 10px 16px;
  border-radius: 6px;
}

.button.primary {
  background: white;
  color: black;
}

.button.secondary {
  border: 1px solid rgba(255,255,255,0.3);
}

/* Sections */
section {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

/* Hero */
.hero {
  position: relative;
}

canvas {
  position: absolute;
  inset: 0;
}

/* Hero Content */
.hero-content {
  position: absolute;
  top: 120px;
  width: 100%;
  perspective: 1000px;
  padding: 0 48px;
}

.header {
  max-width: 720px;
  transform-style: preserve-3d;
}

.header h1 {
  font-family: "Playfair Display", serif;
  font-size: 64px;
  font-weight: 300;
  line-height: 1.1;
}

.header p {
  margin-top: 24px;
  opacity: 0.7;
}

.client-logos {
  display: flex;
  gap: 24px;
  margin-top: 32px;
}

.client-logo {
  width: 80px;
  height: 24px;
}

/* Dashboard Image */
.hero-image-container {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1000px;
}

.hero-image {
  width: 70%;
  opacity: 0;
  transform: translateZ(600px);
}

/* Outro */
.outro {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #111;
}

/* Responsive */
@media (max-width: 768px) {
  .header h1 {
    font-size: 40px;
  }

  .nav-links,
  .nav-buttons {
    display: none;
  }
}
