@import url("https://fonts.googleapis.com/css2?family=Fraunces:wght@400;600;700&family=Manrope:wght@400;500;600&display=swap");

:root {
  --bg-deep: #0e1118;
  --bg-mid: #1b1f2e;
  --bg-glow: #2a1f3b;
  --ink: #f8f3ff;
  --ink-dim: #c8c3d8;
  --accent: #ffb454;
  --accent-2: #7bd5ff;
  --card: rgba(255, 255, 255, 0.08);
  --card-border: rgba(255, 255, 255, 0.14);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

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

body {
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at top left, #33264d 0%, transparent 45%),
    radial-gradient(circle at 20% 20%, #1f3356 0%, transparent 50%),
    linear-gradient(135deg, var(--bg-deep), var(--bg-mid));
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 48px 20px 64px;
}

.scene {
  width: min(1080px, 100%);
  display: grid;
  gap: 32px;
}

.hero {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--card-border);
  border-radius: 28px;
  padding: 40px 40px 32px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: -40% -10% auto auto;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(255, 180, 84, 0.35), transparent 70%);
  filter: blur(12px);
  opacity: 0.7;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 12px;
  color: var(--accent-2);
  margin-bottom: 12px;
}

.title {
  font-family: "Fraunces", serif;
  font-size: clamp(36px, 5vw, 64px);
  margin-bottom: 12px;
}

.subtitle {
  font-size: 18px;
  max-width: 520px;
  color: var(--ink-dim);
  margin-bottom: 24px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.cta {
  border-radius: 999px;
  padding: 12px 26px;
  font-size: 15px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta.primary {
  background: linear-gradient(120deg, var(--accent), #ffd58a);
  color: #20140a;
  box-shadow: 0 10px 24px rgba(255, 180, 84, 0.3);
}

.cta.ghost {
  background: transparent;
  border-color: var(--card-border);
  color: var(--ink);
}

.cta:hover {
  transform: translateY(-2px);
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
}

.stat {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 16px 18px;
  backdrop-filter: blur(12px);
}

.stat-label {
  font-size: 12px;
  color: var(--ink-dim);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.stat-value {
  display: block;
  margin-top: 8px;
  font-size: 22px;
  font-weight: 600;
}

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

.card {
  background: var(--card);
  border-radius: 20px;
  border: 1px solid var(--card-border);
  padding: 22px;
  box-shadow: var(--shadow);
  min-height: 150px;
}

.card h2 {
  font-family: "Fraunces", serif;
  font-size: 22px;
  margin-bottom: 10px;
}

.card p {
  color: var(--ink-dim);
  line-height: 1.6;
}

.map {
  background: radial-gradient(circle at 30% 20%, rgba(123, 213, 255, 0.15), transparent 55%),
    rgba(17, 21, 33, 0.85);
  border: 1px solid var(--card-border);
  border-radius: 26px;
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.map-header h3 {
  font-family: "Fraunces", serif;
  font-size: 26px;
  margin-bottom: 6px;
}

.map-header p {
  color: var(--ink-dim);
  margin-bottom: 20px;
}

.map-grid {
  height: 220px;
  border-radius: 18px;
  border: 1px dashed rgba(255, 255, 255, 0.15);
  position: relative;
  background-image: linear-gradient(
      to right,
      rgba(255, 255, 255, 0.08) 1px,
      transparent 1px
    ),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 28px 28px;
}

.dot {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 14px rgba(123, 213, 255, 0.9);
  animation: drift 6s ease-in-out infinite;
}

.d1 { top: 20%; left: 18%; animation-delay: 0s; }
.d2 { top: 40%; left: 30%; animation-delay: 1s; }
.d3 { top: 65%; left: 22%; animation-delay: 2s; }
.d4 { top: 30%; left: 52%; animation-delay: 0.5s; }
.d5 { top: 55%; left: 60%; animation-delay: 1.5s; }
.d6 { top: 18%; left: 70%; animation-delay: 2.5s; }
.d7 { top: 70%; left: 78%; animation-delay: 3s; }
.d8 { top: 40%; left: 84%; animation-delay: 1.2s; }
.d9 { top: 78%; left: 40%; animation-delay: 2.2s; }
.d10 { top: 15%; left: 42%; animation-delay: 0.8s; }

@keyframes drift {
  0%, 100% { transform: translate(0, 0); opacity: 0.8; }
  50% { transform: translate(6px, -8px); opacity: 1; }
}

@media (max-width: 720px) {
  body {
    padding: 32px 16px 48px;
  }

  .hero {
    padding: 32px 24px;
  }

  .title {
    font-size: 40px;
  }

  .subtitle {
    font-size: 16px;
  }
}
