* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: Georgia, 'Times New Roman', serif;
}

body {
  background-color: #1a2133;
  background-image: url(./assets/globe.svg);
  background-repeat: no-repeat;
  background-position: center 60px;
  background-size: 90%;
  min-height: 100vh;
  color: #ffffff;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 60px 24px;
}

/* ── Header ─────────────────────────────────────────── */
.eyebrow {
  text-align: center;
  color: #f5c060;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

h1 {
  font-size: 48px;
  font-weight: 600;
  text-align: center;
  color: #ffffff;
  line-height: 1.2;
  max-width: 700px;
  margin-bottom: 20px;
}

.subtitle {
  font-size: 20px;
  text-align: center;
  color: rgba(255,255,255,0.75);
  max-width: 540px;
  line-height: 1.6;
  margin-bottom: 48px;
  font-style: italic;
}

/* ── Feature cards ──────────────────────────────────── */
.features {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
  justify-content: center;
}

.feature {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(245,192,96,0.2);
  border-radius: 10px;
  padding: 20px 24px;
  width: 200px;
  text-align: center;
}

.feature img {
  width: 40px;
  height: 40px;
  margin-bottom: 12px;
}

.feature h3 {
  font-size: 14px;
  color: #f5c060;
  font-weight: 600;
  margin-bottom: 6px;
  letter-spacing: 0.04em;
}

.feature p {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}

/* ── Stats row ──────────────────────────────────────── */
.stats {
  display: flex;
  flex-direction: row;
  gap: 32px;
  margin-bottom: 48px;
  flex-wrap: wrap;
  justify-content: center;
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: 32px;
  font-weight: 700;
  color: #f5c060;
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ── CTA button ─────────────────────────────────────── */
.cta {
  margin-bottom: 64px;
}

.btn {
  display: inline-block;
  background: #f5c060;
  color: #1a2133;
  text-decoration: none;
  border-radius: 6px;
  padding: 14px 40px;
  font-family: Georgia, serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: background 0.2s, transform 0.1s;
  cursor: pointer;
  border: none;
}

.btn:hover {
  background: #ffd780;
  transform: translateY(-1px);
}

/* ── Footer ─────────────────────────────────────────── */
.footer {
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  line-height: 1.8;
}

.footer a {
  color: rgba(245,192,96,0.6);
  text-decoration: none;
}

/* ── Responsive ─────────────────────────────────────── */
@media (max-width: 600px) {
  h1 { font-size: 28px; }
  .subtitle { font-size: 16px; }
  .features { flex-direction: column; align-items: center; }
  .stats { gap: 20px; }
  .stat-number { font-size: 24px; }
}
