/* ── ABOUT US PAGE SPECIFIC STYLES ── */

body {
    background-color: #0B1229;
    color: #F8FAFF;
    overflow-x: hidden;
}

.glass-card {
    background: rgba(20, 30, 56, 0.4);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(37, 99, 235, 0.15);
    transition: all 0.3s ease;
}

.glass-card:hover {
    border-color: rgba(37, 99, 235, 0.4);
    box-shadow: 0 0 20px rgba(37, 99, 235, 0.15);
}

.rim-light {
    border: 1px solid transparent;
    background-image: linear-gradient(#141e38, #141e38), linear-gradient(135deg, #3b82f6 0%, #8B5CF6 100%);
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

.gradient-text {
    background: linear-gradient(135deg, #3b82f6 0%, #8B5CF6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ethereal-glow {
    position: absolute;
    width: 40vw;
    height: 40vw;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.15;
    z-index: -1;
    pointer-events: none;
}

.glow-primary { background: #3b82f6; top: -10%; left: -10%; }
.glow-secondary { background: #8B5CF6; bottom: -10%; right: -10%; }
.glow-tertiary { background: #F59E0B; top: 40%; left: 50%; }

.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.shimmer-text {
    background: linear-gradient(90deg, #3b82f6, #8B5CF6, #3b82f6);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 8s linear infinite;
}

@keyframes shimmer {
    to { background-position: 200% center; }
}

.mist-layer {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
    opacity: 0.15;
    animation: pulse-glow 10s infinite ease-in-out;
}

@keyframes pulse-glow {
    0%, 100% { opacity: 0.1; transform: scale(1); }
    50% { opacity: 0.2; transform: scale(1.1); }
}

.rim-light:hover {
    box-shadow: inset 0 0 20px rgba(59, 130, 246, 0.1), 0 0 30px rgba(139, 92, 246, 0.1);
    border-color: rgba(139, 92, 246, 0.3);
}

/* ── RESPONSIVE: ABOUT US ── */
@media (max-width: 1200px) {
  main {
    padding-left: 24px;
    padding-right: 24px;
  }

  .mist-layer {
    width: 420px;
    height: 420px;
  }
}

@media (max-width: 992px) {
  main.pt-32,
  main {
    padding-top: 6rem !important;
    padding-bottom: 3rem !important;
  }

  .glass-card {
    padding: 1.5rem !important;
  }

  .ethereal-glow,
  .mist-layer {
    width: 65vw;
    height: 65vw;
  }

  h1.font-headline-xl,
  .font-headline-xl {
    font-size: clamp(1.75rem, 5vw, 2.5rem) !important;
  }
}

@media (max-width: 768px) {
  main.pt-32,
  main {
    padding-top: 5rem !important;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  .mb-24 {
    margin-bottom: 3rem !important;
  }

  .glass-card {
    padding: 1.25rem !important;
    border-radius: 1.25rem !important;
  }
}

@media (max-width: 480px) {
  main.pt-32,
  main {
    padding-top: 4.5rem !important;
  }

  .glass-card {
    padding: 1rem !important;
  }

  .mist-layer {
    display: none;
  }

  h1 {
    font-size: 1.6rem !important;
  }

  h2,
  h3 {
    font-size: 1.2rem !important;
  }
}
