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

body {
  font-family: 'Inter', sans-serif;
  background: #0f1115;
  color: #f5f5f5;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 24px;
  background:
    linear-gradient(
      135deg,
      rgba(15,17,21,0.92),
      rgba(20,24,30,0.85)
    ),
    url('https://images.unsplash.com/photo-1495474472287-4d71bcdd2085?q=80&w=1600&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
}

.container {
  max-width: 1100px;
  width: 100%;
}

.glass-card {
  backdrop-filter: blur(12px);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 28px;
  padding: 60px;
  box-shadow:
    0 20px 60px rgba(0,0,0,0.35),
    inset 0 1px 0 rgba(255,255,255,0.06);
}

.tag {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: #d9d9d9;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

h1 {
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.95;
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: -0.05em;
}

.highlight {
  color: #c9a46c;
}

.lead {
  max-width: 700px;
  font-size: 1.15rem;
  color: #d0d0d0;
  margin-bottom: 40px;
}

.button-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.btn {
  padding: 14px 26px;
  border-radius: 14px;
  font-weight: 600;
  transition: 0.25s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-primary {
  background: #c9a46c;
  color: #111;
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: #ddb57a;
}

.btn-secondary {
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.04);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.08);
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.feature {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 24px;
  transition: 0.25s ease;
}

.feature:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.06);
}

.feature h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.feature p {
  color: #bcbcbc;
  font-size: 0.95rem;
}

footer {
  text-align: center;
  padding: 30px 20px;
  color: #888;
  font-size: 0.9rem;
  background: #0b0d10;
}

@media (max-width: 768px) {
  .glass-card {
    padding: 36px 28px;
  }

  .lead {
    font-size: 1rem;
  }

  .button-group {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }
}
