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

html, body {
  height: 100%;
  font-family: 'Inter', sans-serif;
  background: radial-gradient(
    circle at top,
    #0f1f1a 0%,
    #050505 40%,
    #000000 100%
  );
  color: #ffffff;
}

body {
  display: flex;
  flex-direction: column;
}

/* NAVBAR */
.navbar {
  height: 72px;
  padding: 0 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 20px;
  font-weight: 600;
}

.logo span {
  color: #22c55e;
}

.navbar nav a {
  margin-left: 32px;
  text-decoration: none;
  color: #cbd5e1;
  font-size: 14px;
  transition: color 0.2s;
}

.navbar nav a:hover {
  color: #ffffff;
}

/* HERO */
.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 24px;
}

.hero h1 {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero h1 span {
  color: #22c55e;
}

.hero p {
  max-width: 640px;
  font-size: 18px;
  line-height: 1.6;
  color: #94a3b8;
  margin-bottom: 40px;
}

/* ACTIONS */
.actions {
  display: flex;
  gap: 16px;
}

button {
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
}

button.primary {
  background: #22c55e;
  color: #052e16;
}

button.primary:hover {
  background: #16a34a;
}

button.secondary {
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

button.secondary:hover {
  background: rgba(255, 255, 255, 0.12);
}
