/* ===========================
   Global base for this page
   =========================== */

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: radial-gradient(circle at top, #261b3d 0, #050814 50%, #02030a 100%);
  color: #f5f5f5;
}

/* Prevent layout issues with other pages */
.gold-hero-section,
.gold-mission-section,
.gold-vision-section,
.gold-highlights-section,
.gold-cta-section {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* Make all section headings feel clearly clickable */
.gold-section-title,
.gold-hero-title {
  cursor: pointer;
}

/* ===========================
   Hero section
   =========================== */

.gold-hero-section {
  min-height: 90vh;
  padding: 110px 0 80px;
  display: flex;
  align-items: center;
  background: radial-gradient(circle at top left, #3b274f 0, #070a18 55%, #02030a 100%);
}

/* Subtle starry background layer */
.gold-hero-bg-layer {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 10% 20%, rgba(255, 232, 163, 0.15) 0, transparent 60%),
    radial-gradient(circle at 80% 10%, rgba(255, 191, 105, 0.12) 0, transparent 65%),
    radial-gradient(circle at 50% 100%, rgba(111, 68, 198, 0.4) 0, transparent 70%);
  opacity: 0.55;
  z-index: -2;
}

/* tsParticles canvas container */
.gold-particles-layer {
  position: absolute;
  inset: 0;
  z-index: -1;
}

/* Gold dust decorative blobs */
.gold-dust-container {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.gold-dust {
  position: absolute;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 221, 157, 0.8), rgba(255, 221, 157, 0));
  filter: blur(6px);
  opacity: 0.2;
}

.gold-dust-1 {
  top: 10%;
  left: 8%;
}

.gold-dust-2 {
  bottom: 12%;
  right: 15%;
}

.gold-dust-3 {
  top: 50%;
  right: 45%;
}

/* Hero content layout */

.gold-hero-container {
  position: relative;
  z-index: 2;
}

.gold-hero-title {
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  margin-bottom: 18px;
}

.gold-hero-text {
  font-size: 1rem;
  line-height: 1.7;
  max-width: 540px;
  color: #e6e6f5;
}

/* Buttons */

.gold-hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0 18px;
}

.gold-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1px solid transparent;
  transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease,
    transform 0.15s ease;
}

.gold-btn-primary {
  background: linear-gradient(135deg, #ffbf4b, #ff914d);
  color: #101010 !important;
  box-shadow: 0 8px 18px rgba(255, 171, 74, 0.45);
}

.gold-btn-outline {
  background: transparent;
  border-color: #ffc65a;
  color: #ffc65a !important;
}

.gold-btn-primary:hover,
.gold-btn-outline:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.55);
  filter: brightness(1.05);
}

/* Hero list */

.gold-hero-list {
  list-style: none;
  padding: 0;
  margin: 6px 0 0;
}

.gold-hero-list li {
  display: flex;
  align-items: center;
  font-size: 0.95rem;
  margin-bottom: 6px;
}

.gold-check-icon {
  color: #ffda7c;
  margin-right: 8px;
}

/* ===========================
   Right hero visual
   =========================== */

.gold-visual-wrapper {
  position: relative;
  max-width: 360px;
  margin: 0 auto;
}

.gold-lottie-container {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background: radial-gradient(circle at 15% 0%, #ffde9a 0, #ffb057 16%, #302146 70%);
  box-shadow: 0 20px 40px rgba(3, 0, 10, 0.85);
  padding: 18px;
  transition: transform 0.3s ease;
}

.gold-lottie-player {
  width: 100%;
  height: 260px;
}

/* Floating image overlapping bottom area */

.gold-image-container {
  position: absolute;
  bottom: -22%;
  left: 50%;
  transform: translateX(-50%);
  width: 78%;
}

.gold-float-image {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.75);
}

/* ===========================
   Fade-in helper classes
   =========================== */

.gold-fade-in {
  opacity: 0;
  transform: translateY(24px);
  animation: goldFadeInKey 0.75s ease-out forwards;
}

.gold-fade-in-delay {
  opacity: 0;
  transform: translateY(24px);
  animation: goldFadeInKey 0.75s ease-out 0.25s forwards;
}

@keyframes goldFadeInKey {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================
