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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  color: white;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  background: #15111d;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 140, 200, 0.18), transparent 26%),
    radial-gradient(circle at 82% 18%, rgba(155, 135, 255, 0.16), transparent 28%),
    radial-gradient(circle at 76% 80%, rgba(255, 120, 180, 0.12), transparent 24%),
    radial-gradient(circle at 20% 78%, rgba(130, 190, 255, 0.10), transparent 22%),
    linear-gradient(180deg, #2a2136 0%, #221b30 30%, #1b1627 62%, #15111d 100%);
  transform: scale(1.05);
  animation: fluffyBackgroundMove 18s ease-in-out infinite alternate;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(rgba(8, 6, 12, 0.26), rgba(8, 6, 12, 0.34));
}

/* TOP BAR */

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 22px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.brand-small {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.4px;
  color: #ffffff;
  text-shadow:
    0 2px 10px rgba(0, 0, 0, 0.55),
    0 1px 2px rgba(0, 0, 0, 0.35);
}

.topbar-buttons {
  display: flex;
  gap: 10px;
}

.top-btn {
  text-decoration: none;
  padding: 11px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  color: white;
  transition: transform 0.18s ease, opacity 0.18s ease, border-color 0.18s ease;
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
}

.top-btn:hover {
  transform: translateY(-1px);
}

.top-btn-secondary {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.06)),
    rgba(80, 62, 128, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 8px 20px rgba(0, 0, 0, 0.18);
}

/* HERO */

.hero-home {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 20px 80px;
  background: transparent;
}

.hero-bg {
  display: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: transparent;
}

.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 860px;
}

.hero-logo {
  width: 128px;
  height: 128px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid rgba(255, 255, 255, 0.94);
  box-shadow:
    0 16px 36px rgba(0, 0, 0, 0.30),
    inset 0 1px 0 rgba(255, 255, 255, 0.30);
  margin-bottom: 22px;
  background: rgba(255, 255, 255, 0.12);
}

.hero-title {
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 14px;
  color: #ffffff;
  text-shadow:
    0 4px 16px rgba(0, 0, 0, 0.60),
    0 1px 3px rgba(0, 0, 0, 0.35);
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.98);
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.6;
  text-shadow:
    0 3px 12px rgba(0, 0, 0, 0.58),
    0 1px 2px rgba(0, 0, 0, 0.34);
}

.hero-main-buttons {
  margin-top: 24px;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* SCROLL INDICATOR */

.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.82);
  animation: scrollIndicatorFloat 1.8s ease-in-out infinite;
}

.scroll-text {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.38);
}

.scroll-arrow {
  font-size: 28px;
  line-height: 1;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.38);
}

/* BUTTONS */

.btn {
  display: inline-block;
  padding: 14px 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  color: white;
  transition: transform 0.18s ease, opacity 0.18s ease, border-color 0.18s ease;
  backdrop-filter: blur(20px) saturate(185%);
  -webkit-backdrop-filter: blur(20px) saturate(185%);
}

.btn:hover {
  transform: translateY(-1px);
  opacity: 0.97;
}

.btn.primary {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.20), rgba(255, 255, 255, 0.08)),
    linear-gradient(135deg, rgba(255, 95, 176, 0.78), rgba(196, 72, 140, 0.74));
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    0 12px 26px rgba(189, 52, 123, 0.28),
    0 8px 24px rgba(0, 0, 0, 0.16);
}

.btn.secondary {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.06)),
    rgba(80, 62, 128, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 8px 20px rgba(0, 0, 0, 0.18);
}

/* CATEGORIES */

.category-section {
  position: relative;
  z-index: 3;
  padding: 20px 20px 110px;
  margin-top: 0;
  background: transparent;
}

.category-grid {
  max-width: 1150px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.category-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 180px;
  padding: 22px;
  border-radius: 24px;
  text-decoration: none;
  color: white;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.05)),
    rgba(50, 40, 85, 0.34);
  backdrop-filter: blur(22px) saturate(180%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 14px 32px rgba(0, 0, 0, 0.22);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.category-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 180, 220, 0.38);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.06)),
    rgba(62, 48, 104, 0.40);
}

.category-title {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: #ffffff;
  text-shadow:
    0 2px 10px rgba(0, 0, 0, 0.42),
    0 1px 2px rgba(0, 0, 0, 0.26);
}

.category-text {
  color: rgba(255, 255, 255, 0.97);
  line-height: 1.45;
  font-size: 0.97rem;
  text-shadow:
    0 2px 8px rgba(0, 0, 0, 0.34),
    0 1px 2px rgba(0, 0, 0, 0.22);
}

/* REVEAL */

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* OTHER PAGES */

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px) saturate(170%);
  -webkit-backdrop-filter: blur(16px) saturate(170%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.nav-logo {
  font-size: 22px;
  font-weight: bold;
  color: white;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.30);
}

.navbar nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.navbar a {
  color: #ffffff;
  text-decoration: none;
  font-size: 15px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.24);
}

.navbar a:hover {
  color: white;
}

.hero {
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
}

.hero-content {
  max-width: 800px;
}

.hero h1 {
  font-size: 42px;
  margin-bottom: 16px;
  color: white;
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.28);
}

.hero p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.98);
  margin-bottom: 28px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.24);
}

/* ANIMATION */

@keyframes fluffyBackgroundMove {
  0% {
    transform: scale(1.03) translate3d(0, 0, 0);
  }
  25% {
    transform: scale(1.04) translate3d(-8px, -4px, 0);
  }
  50% {
    transform: scale(1.035) translate3d(6px, -8px, 0);
  }
  75% {
    transform: scale(1.045) translate3d(-5px, 6px, 0);
  }
  100% {
    transform: scale(1.035) translate3d(8px, 4px, 0);
  }
}

@keyframes scrollIndicatorFloat {
  0% {
    transform: translateX(-50%) translateY(0);
    opacity: 0.75;
  }
  50% {
    transform: translateX(-50%) translateY(6px);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(0);
    opacity: 0.75;
  }
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-logo {
    width: 110px;
    height: 110px;
  }
}

@media (max-width: 640px) {
  .topbar {
    padding: 14px 14px;
  }

  .brand-small {
    font-size: 13px;
  }

  .topbar-buttons {
    gap: 8px;
  }

  .top-btn {
    padding: 10px 13px;
    font-size: 13px;
  }

  .category-grid {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 0.98rem;
  }

  .category-section {
    padding-top: 20px;
  }

  .scroll-indicator {
    bottom: 20px;
  }

  .scroll-arrow {
    font-size: 24px;
  }
}

.staff-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1000px;
  margin: 0 auto;
}

.staff-card {
  padding: 24px;
  border-radius: 24px;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.05)),
    rgba(50, 40, 85, 0.34);
  backdrop-filter: blur(22px) saturate(180%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 14px 32px rgba(0, 0, 0, 0.22);
}

.staff-role {
  font-size: 1.45rem;
  margin-bottom: 14px;
  color: #ffffff;
  text-shadow:
    0 2px 10px rgba(0, 0, 0, 0.42),
    0 1px 2px rgba(0, 0, 0, 0.26);
}

.staff-members {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.97);
  text-shadow:
    0 2px 8px rgba(0, 0, 0, 0.34),
    0 1px 2px rgba(0, 0, 0, 0.22);
}

@media (max-width: 900px) {
  .staff-grid {
    grid-template-columns: 1fr;
  }
}
