:root {
  --bg: #112630;
  --bg-2: #0e1f27;
  --card: rgba(255, 255, 255, 0.05);
  --text: #d9e4ec;
  --muted: #8ea6b5;
  --accent: #f7b500;
}

html,
body {
  overflow-x: hidden !important;
  /* Prevents horizontal scrollbar */
  overflow-y: auto;
}

body {
  font-family: 'Montserrat', system-ui, -apple-system, sans-serif;
  background: radial-gradient(120% 120% at 20% 20%, #193442 0%, #0f232d 35%, #0c1d25 70%, #0a1920 100%);
  color: var(--text);
  min-height: 100vh;
}

.glass {
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 15px 60px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(8px);
}

.section-title {
  position: relative;
}

.section-title::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  top: 12px;
  left: 8px;
  color: rgba(255, 255, 255, 0.05);
  font-size: 48px;
  font-weight: 800;
  text-transform: uppercase;
  pointer-events: none;
  letter-spacing: 0.2em;
  white-space: nowrap;
}

.progress-bar {
  position: relative;
  height: 6px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.progress-bar::before {
  content: "";
  position: absolute;
  inset: 0;
  width: var(--value, 50%);
  background: linear-gradient(90deg, #f7b500, #ffda62);
}

/* Fix background blobs causing overflow on mobile */
@media (max-width: 768px) {
  .absolute.inset-0>div {
    width: 180px !important;
    height: 180px !important;
    top: auto !important;
    left: auto !important;
    right: -40px !important;
    bottom: -40px !important;
  }
}

@media (max-width: 480px) {
  .absolute.inset-0>div {
    display: none;
    /* Optional: completely hide blobs on very small screens */
  }
}

/* Make hero images fully responsive */
@media (max-width: 640px) {
  .aspect-[3/4] {
    width: 85vw !important;
    max-width: 280px;
    margin: 0 auto;
  }

  #home h1 {
    font-size: 2.25rem;
    line-height: 1.1;
  }
}

/* Extra safety for containers */
.max-w-6xl {
  padding-left: 1rem;
  padding-right: 1rem;
}

/* Ensure no element overflows */
* {
  box-sizing: border-box;
}