* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, system-ui, Arial, sans-serif;
  background: #0e1117;
  color: #e6e8ec;
}

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

/* ================= NAVBAR ================= */

.navbar {
  background: #0e1117;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 10px 20px; /* mai jos */
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.logo span {
  color: #2dd4bf;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 18px;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-size: 14px;
  opacity: 0.85;
}

.nav-links a:hover {
  opacity: 1;
}

.btn-primary {
  background: linear-gradient(135deg, #2dd4bf, #22c55e);
  color: #05130f;
  padding: 7px 14px;
  border-radius: 6px;
  font-weight: 600;
}

.btn-outline {
  border: 1px solid rgba(45,212,191,0.6);
  padding: 7px 14px;
  border-radius: 6px;
}

/* ================= HERO ================= */

.hero {
  max-width: 1100px;
  margin: auto;
  padding: 90px 20px 60px;
  text-align: center;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}

.hero p {
  font-size: 18px;
  color: #a9b0c2;
  max-width: 720px;
  margin: auto;
}

.hero-actions {
  margin-top: 35px;
  display: flex;
  justify-content: center;
  gap: 16px;
}

/* scroll arrow */
.scroll-down {
  margin-top: 50px;
  font-size: 28px;
  color: #2dd4bf;
  animation: bounce 1.6s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* ================= FEATURES ================= */

.features {
  max-width: 1200px;
  margin: 40px auto 80px;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.feature {
  background: #111827;
  border-radius: 14px;
  padding: 30px 26px;
  border: 1px solid rgba(255,255,255,0.05);
  transition: all 0.25s ease;
}

.feature:hover {
  transform: translateY(-4px);
  border-color: rgba(45,212,191,0.5);
}

.feature-icon {
  font-size: 32px;
  margin-bottom: 14px;
}

.feature h3 {
  margin: 0 0 10px;
  font-size: 18px;
}

.feature p {
  margin: 0;
  color: #a0a7b8;
  font-size: 14.5px;
  line-height: 1.5;
}

/* ================= CTA ================= */

.cta {
  background: linear-gradient(135deg, #111827, #0b1220);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 70px 20px;
  text-align: center;
}

.cta h2 {
  font-size: 34px;
  margin-bottom: 12px;
}

.cta p {
  color: #a9b0c2;
  margin-bottom: 30px;
}

/* ===== EARN PAGE EXTRAS ===== */

.stats-preview {
  max-width: 1000px;
  margin: 60px auto;
  padding: 0 20px;
}

.stats-preview h2 {
  text-align: center;
  margin-bottom: 25px;
}

.stats-table {
  width: 100%;
  border-collapse: collapse;
  background: #111827;
  border-radius: 12px;
  overflow: hidden;
}

.stats-table th,
.stats-table td {
  padding: 14px 16px;
  text-align: left;
  font-size: 14px;
}

.stats-table th {
  background: #0b1220;
  color: #2dd4bf;
  font-weight: 600;
}

.stats-table tr:not(:last-child) {
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.stats-note {
  margin-top: 15px;
  font-size: 13px;
  color: #9aa2b1;
  text-align: center;
}

/* ===== EARNINGS OVERVIEW (PREMIUM) ===== */

.earnings-overview {
  max-width: 1100px;
  margin: 80px auto;
  padding: 0 20px;
  text-align: center;
}

.earnings-overview h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.earnings-subtitle {
  color: #9aa2b1;
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 15px;
}

.earnings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.earnings-card {
  background: linear-gradient(180deg, #111827, #0b1220);
  border-radius: 16px;
  padding: 34px 26px;
  border: 1px solid rgba(255,255,255,0.06);
  position: relative;
  transition: all 0.25s ease;
}

.earnings-card:hover {
  transform: translateY(-6px);
  border-color: rgba(45,212,191,0.6);
}

.earnings-card h3 {
  margin: 10px 0 15px;
  font-size: 20px;
}

.price-range {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #e6e8ec;
}

.price-range.highlight {
  color: #22c55e;
}

.earnings-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.earnings-card li {
  margin-bottom: 10px;
  font-size: 14.5px;
  color: #a0a7b8;
}

.earnings-card li::before {
  content: "✓";
  color: #2dd4bf;
  margin-right: 8px;
}

/* BADGES */

.badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: rgba(45,212,191,0.15);
  color: #2dd4bf;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 20px;
  font-weight: 600;
}

.premium-badge {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #04120c;
}

/* NOTE */

.earnings-note {
  margin-top: 30px;
  font-size: 13px;
  color: #8b93a5;
}


/* ===== EARNINGS TIERS (UP TO MODEL) ===== */

.earnings-card.tier1 {
  border-color: rgba(34,197,94,0.6);
}

.earnings-card.tier2 {
  border-color: rgba(45,212,191,0.4);
}

.earnings-card.tier3 {
  border-color: rgba(255,255,255,0.15);
}

.price-range {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 18px;
}

.price-range.highlight {
  color: #22c55e;
}

/* ===== AUTH FORMS (REGISTER / LOGIN) ===== */

.form-wrapper {
  width: 90%;
  max-width: 420px;
  margin: 0 auto;
  background: #111827;
  padding: 30px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.06);
}

.form-wrapper label {
  display: block;
  margin-top: 14px;
  font-size: 14px;
  color: #a9b0c2;
}

.form-wrapper input {
  width: 100%;
  padding: 12px;
  margin-top: 6px;
  border-radius: 8px;
  border: 1px solid #2a324a;
  background: #0b1220;
  color: #e6e8ec;
  font-size: 15px;
}

.form-wrapper input:focus {
  outline: none;
  border-color: #2dd4bf;
}

.form-wrapper button {
  margin-top: 18px;
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #2dd4bf, #22c55e);
  color: #04120c;
  border: none;
  font-weight: 700;
  border-radius: 10px;
  cursor: pointer;
  font-size: 15px;
}

.error-box {
  background: #3a1d1d;
  padding: 12px;
  border-left: 4px solid #ff5c5c;
  margin-bottom: 15px;
  font-size: 14px;
}

.success-box {
  background: #1d3a25;
  padding: 12px;
  border-left: 4px solid #22c55e;
  margin-bottom: 15px;
  font-size: 14px;
}

