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

body {
  font-family: "Segoe UI", system-ui, sans-serif;
  background: #0f0f14;
  color: #f5f5f5;
  line-height: 1.6;
}

/* Hero */
.hero {
  min-height: 100vh;
  position: relative;
  padding: 2rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 20% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
}

.nav {
  position: relative;
  z-index: 2;
  padding: 1rem 2rem;
}

.brand {
  font-size: 1.125rem;
  font-weight: 400;
  color: #d4af37;
  letter-spacing: 1px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding: 10rem 2rem;
}

.hero h1 {
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}

.hero p {
  font-size: 1.125rem;
  color: #a0a0a0;
  margin-bottom: 2.5rem;
}

.btn {
  display: inline-block;
  padding: 1rem 2rem;
  background: transparent;
  color: #d4af37;
  text-decoration: none;
  border: 1px solid #d4af37;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn:hover {
  background: #d4af37;
  color: #0f0f14;
}

/* Process */
.process {
  padding: 6rem 4rem;
  max-width: 800px;
  margin: 0 auto;
}

.process-header {
  margin-bottom: 4rem;
}

.label {
  display: block;
  font-size: 0.75rem;
  color: #d4af37;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.process h2 {
  font-size: 2rem;
  font-weight: 400;
}

.process-steps {
  display: flex;
  flex-direction: column;
}

.step {
  display: flex;
  gap: 2rem;
}

.step-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 20px;
}

.step-dot {
  width: 12px;
  height: 12px;
  background: #d4af37;
  border-radius: 50%;
  flex-shrink: 0;
}

.step-line {
  width: 1px;
  height: 100%;
  background: rgba(212, 175, 55, 0.3);
  margin-bottom: -6px;
}

.step-content {
  padding-bottom: 3rem;
}

.step-content h3 {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.step-content p {
  color: #a0a0a0;
}

/* Footer */
.footer {
  padding: 3rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer p {
  font-size: 0.875rem;
  color: #666;
}

@media (max-width: 768px) {
  .process {
    padding: 4rem 2rem;
  }

  .footer {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
    padding: 2rem;
  }
}
