/*
  VIKRAM — Luxury Global Design
  Typography: Syne (headlines) + Plus Jakarta Sans (body)
  Palette: Deep black, champagne gold, soft white
*/

/* ---------- Variables ---------- */
:root {
  --bg-deep: #050507;
  --bg-card: #0c0c0f;
  --bg-elevated: #12121a;
  --accent-gold: #d4af37;
  --accent-gold-soft: rgba(212, 175, 55, 0.15);
  --accent-gold-glow: rgba(212, 175, 55, 0.25);
  --accent-champagne: #f5e6c8;
  --accent-blue: #5b8def;
  --accent-blue-soft: rgba(91, 141, 239, 0.12);
  --text-primary: #fafafa;
  --text-secondary: #b8b8c0;
  --text-muted: #6b6b78;
  --border-subtle: rgba(255, 255, 255, 0.06);
  --border-gold: rgba(212, 175, 55, 0.25);
  --font-display: 'Syne', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --glass-blur: 20px;
  --nav-height: 88px;
  --nav-height-scrolled: 72px;
  --radius: 16px;
  --radius-lg: 24px;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --transition: 0.5s var(--ease-out-expo);
  --transition-slow: 0.8s var(--ease-out-expo);
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-primary);
  background: var(--bg-deep);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--accent-gold);
  outline-offset: 3px;
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

.section {
  padding: 120px 0;
  position: relative;
}

.section__head {
  text-align: center;
  margin-bottom: 64px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.section__label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 12px;
  display: block;
}

.section__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.25rem, 5vw, 3rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.section__desc {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  border-radius: var(--radius);
  transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s var(--ease-out-expo), color 0.3s, background 0.3s;
}

.btn:hover {
  transform: translateY(-2px) scale(1.02);
}

.btn:active {
  transform: translateY(0) scale(0.98);
}

.btn--primary {
  background: linear-gradient(135deg, var(--accent-gold) 0%, #c9a227 100%);
  color: #0a0a0a;
  border: 1px solid rgba(212, 175, 55, 0.4);
}

.btn--primary:hover {
  box-shadow: 0 12px 40px var(--accent-gold-glow), 0 0 60px var(--accent-gold-soft);
}

.btn--secondary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-primary);
  border: 1px solid var(--border-subtle);
}

.btn--secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--border-gold);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.btn--ghost {
  color: var(--text-secondary);
  border: 1px solid var(--border-subtle);
}

.btn--ghost:hover {
  color: var(--accent-champagne);
  border-color: var(--border-gold);
}

.btn--sm { padding: 10px 20px; font-size: 0.85rem; }
.btn--xl { padding: 20px 48px; font-size: 1.05rem; }

.btn--glow {
  position: relative;
  box-shadow: 0 0 40px var(--accent-gold-soft);
}

.btn--glow:hover {
  box-shadow: 0 0 50px var(--accent-gold-glow), 0 12px 40px var(--accent-gold-soft);
}

.btn--glow-ring {
  position: relative;
}

.btn--glow-ring::before {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: calc(var(--radius) + 6px);
  background: linear-gradient(135deg, var(--accent-gold), #c9a227);
  opacity: 0.35;
  filter: blur(16px);
  z-index: -1;
  animation: glow-breath 3s var(--ease-in-out) infinite;
}

@keyframes glow-breath {
  0%, 100% { opacity: 0.25; transform: scale(1); }
  50% { opacity: 0.45; transform: scale(1.03); }
}

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: height 0.5s var(--ease-out-expo), background 0.5s var(--ease-out-expo), box-shadow 0.5s;
}

.nav.nav--scrolled {
  height: var(--nav-height-scrolled);
  background: rgba(5, 5, 7, 0.88);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  box-shadow: 0 1px 0 var(--border-subtle);
}

.nav__inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: 0.12em;
  color: var(--text-primary);
  transition: letter-spacing 0.4s var(--ease-out-expo), color 0.3s;
}

.nav__logo:hover {
  color: var(--accent-champagne);
  letter-spacing: 0.14em;
}

.nav__links {
  display: flex;
  gap: 40px;
}

.nav__links a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
  transition: color 0.35s var(--ease-out-expo), transform 0.35s var(--ease-out-expo);
}

.nav__links a:hover {
  color: var(--accent-champagne);
  transform: translateY(-1px);
}

.nav-user {
  display: flex;
  align-items: center;
  margin-right: 12px;
}

.nav-user__link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  transition: border-color 0.3s, background 0.3s, transform 0.3s var(--ease-out-expo);
}

.nav-user__link:hover {
  border-color: var(--border-gold);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.nav-user__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
}

.nav-user__coins {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--accent-gold);
}

.nav__cta {
  padding: 12px 24px;
  font-size: 0.9rem;
  white-space: nowrap;
}

.nav__glow-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--accent-gold) 50%, transparent 100%);
  opacity: 0;
  transition: opacity 0.5s;
}

.nav.nav--scrolled .nav__glow-line { opacity: 0.4; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 10px;
  transition: transform 0.3s;
}

.nav__burger span {
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform 0.3s var(--ease-out-expo), opacity 0.3s;
}

.nav__burger:hover span:nth-child(1) { transform: translateY(-2px); }
.nav__burger:hover span:nth-child(3) { transform: translateY(2px); }

@media (max-width: 900px) {
  .nav__links {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: rgba(5, 5, 7, 0.98);
    backdrop-filter: blur(var(--glass-blur));
    flex-direction: column;
    padding: 32px;
    gap: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    transform: translateY(-20px);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.5s var(--ease-out-expo), opacity 0.5s, visibility 0.5s;
  }
  .nav__links.nav__links--open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    display: flex;
  }
  .nav__cta {
    margin-left: auto;
    margin-right: 12px;
    padding: 8px 18px;
    font-size: 0.8rem;
    border-radius: 999px;
  }
  .nav__burger { display: flex; }
}

/* ---------- Hero ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: var(--nav-height) 28px 100px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero__gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 60% at 50% -10%, rgba(212, 175, 55, 0.08) 0%, transparent 55%),
    radial-gradient(ellipse 70% 50% at 80% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 20% 90%, rgba(91, 141, 239, 0.04) 0%, transparent 50%),
    linear-gradient(180deg, var(--bg-deep) 0%, #08080b 50%, var(--bg-deep) 100%);
}

.hero__noise {
  position: absolute;
  inset: 0;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero__particles {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(2px 2px at 100px 80px, rgba(212,175,55,0.2), transparent),
    radial-gradient(2px 2px at 200px 200px, rgba(255,255,255,0.08), transparent),
    radial-gradient(2px 2px at 300px 120px, rgba(212,175,55,0.12), transparent),
    radial-gradient(2px 2px at 80px 280px, rgba(255,255,255,0.06), transparent),
    radial-gradient(2px 2px at 400px 300px, rgba(212,175,55,0.1), transparent);
  background-size: 420px 420px;
  animation: particles-float 80s linear infinite;
  pointer-events: none;
}

@keyframes particles-float {
  0% { transform: translate(0, 0); }
  100% { transform: translate(-420px, -420px); }
}

.hero__orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  animation: orb-drift 25s var(--ease-in-out) infinite;
}

.hero__orb--1 {
  width: 480px;
  height: 480px;
  background: var(--accent-gold);
  top: -120px;
  right: -80px;
  animation-delay: 0s;
}

.hero__orb--2 {
  width: 360px;
  height: 360px;
  background: var(--accent-champagne);
  bottom: -80px;
  left: -60px;
  animation-delay: -8s;
}

.hero__orb--3 {
  width: 240px;
  height: 240px;
  background: var(--accent-gold);
  top: 55%;
  left: 25%;
  animation-delay: -16s;
}

@keyframes orb-drift {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.35; }
  33% { transform: translate(40px, -40px) scale(1.08); opacity: 0.4; }
  66% { transform: translate(-30px, 30px) scale(0.95); opacity: 0.3; }
}

.hero__content { position: relative; z-index: 1; }

.hero__title { margin-bottom: 28px; }

.hero__title-main {
  display: block;
  overflow: hidden;
  margin-bottom: 12px;
}

.hero__word {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3.5rem, 12vw, 6rem);
  letter-spacing: -0.02em;
  line-height: 1.05;
  background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-champagne) 45%, var(--accent-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0;
  transform: translateY(40px);
  animation: hero-word-in 1.2s var(--ease-out-expo) 0.2s forwards;
}

.hero__title-sub {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.15rem, 2.5vw, 1.4rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  opacity: 0;
  transform: translateY(24px);
  animation: hero-word-in 0.9s var(--ease-out-expo) 0.5s forwards;
}

@keyframes hero-word-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__tagline {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: var(--text-secondary);
  max-width: 480px;
  margin: 0 auto 40px;
  line-height: 1.75;
  opacity: 0;
  transform: translateY(24px);
  animation: hero-word-in 0.9s var(--ease-out-expo) 0.7s forwards;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-bottom: 56px;
  opacity: 0;
  transform: translateY(24px);
  animation: hero-word-in 0.9s var(--ease-out-expo) 0.9s forwards;
}

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
  opacity: 0;
  animation: hero-word-in 0.9s var(--ease-out-expo) 1.1s forwards;
}

.stat {
  padding: 16px 28px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  backdrop-filter: blur(8px);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
  min-width: 150px;
  transition: border-color 0.4s, box-shadow 0.4s, transform 0.4s var(--ease-out-expo);
}

.stat:hover {
  border-color: var(--border-gold);
  box-shadow: 0 8px 32px var(--accent-gold-soft);
  transform: translateY(-2px);
}

.stat__num { margin-right: 0.35em; color: var(--accent-champagne); }
.stat__label { color: var(--text-muted); font-weight: 600; font-size: 0.9rem; }

.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
}

.hero__scroll-line {
  display: block;
  width: 2px;
  height: 48px;
  background: linear-gradient(to bottom, var(--accent-gold), transparent);
  border-radius: 2px;
  animation: scroll-bounce 2.2s var(--ease-in-out) infinite;
}

@keyframes scroll-bounce {
  0%, 100% { transform: translateY(0) scaleY(1); opacity: 1; }
  50% { transform: translateY(12px) scaleY(0.7); opacity: 0.5; }
}

/* ---------- Reveal (staggered via JS/CSS) ---------- */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo);
}

.reveal.reveal--visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.features__grid .feature-card.reveal:nth-child(1) { transition-delay: 0.05s; }
.features__grid .feature-card.reveal:nth-child(2) { transition-delay: 0.1s; }
.features__grid .feature-card.reveal:nth-child(3) { transition-delay: 0.15s; }
.features__grid .feature-card.reveal:nth-child(4) { transition-delay: 0.2s; }
.features__grid .feature-card.reveal:nth-child(5) { transition-delay: 0.25s; }
.features__grid .feature-card.reveal:nth-child(6) { transition-delay: 0.3s; }

.staff__grid .staff-card.reveal:nth-child(1) { transition-delay: 0.05s; }
.staff__grid .staff-card.reveal:nth-child(2) { transition-delay: 0.1s; }
.staff__grid .staff-card.reveal:nth-child(3) { transition-delay: 0.15s; }
.staff__grid .staff-card.reveal:nth-child(4) { transition-delay: 0.2s; }
.staff__grid .staff-card.reveal:nth-child(5) { transition-delay: 0.25s; }

/* ---------- Features ---------- */
.features {
  background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-card) 40%, var(--bg-deep) 100%);
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

.feature-card {
  padding: 36px 32px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
  transition: transform 0.6s var(--ease-out-expo), border-color 0.5s, box-shadow 0.6s var(--ease-out-expo);
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-gold);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(212, 175, 55, 0.08);
}

.feature-card__icon {
  font-size: 2.25rem;
  margin-bottom: 20px;
  display: inline-block;
  filter: grayscale(0.2);
  transition: transform 0.5s var(--ease-out-expo), filter 0.5s;
}

.feature-card:hover .feature-card__icon {
  transform: scale(1.15);
  filter: grayscale(0);
}

.feature-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.feature-card__text {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* ---------- Why Join ---------- */
.why-join {
  padding: 140px 0;
  background: var(--bg-card);
}

.why-join__inner {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 28px;
}

.why-join__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 2.75rem);
  letter-spacing: -0.03em;
  margin-bottom: 32px;
  color: var(--text-primary);
}

.why-join__list { list-style: none; }

.why-join__list li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 20px;
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.6;
  transition: color 0.3s, transform 0.3s var(--ease-out-expo);
}

.why-join__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-champagne));
  box-shadow: 0 0 20px var(--accent-gold-soft);
}

.why-join__list li:hover {
  color: var(--text-primary);
  transform: translateX(4px);
}

/* ---------- Profile (Login / Dashboard) ---------- */
.profile-section { background: var(--bg-card); }

.profile-guest__card {
  max-width: 480px;
  margin: 0 auto;
  padding: 56px 48px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
  transition: border-color 0.5s, box-shadow 0.5s var(--ease-out-expo);
}

.profile-guest__card:hover {
  border-color: var(--border-gold);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.4), 0 0 0 1px var(--border-gold);
}

.profile-guest__icon {
  font-size: 3.5rem;
  margin-bottom: 20px;
  display: block;
  animation: float-icon 4s var(--ease-in-out) infinite;
}

@keyframes float-icon {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.profile-guest__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.75rem;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.profile-guest__text {
  color: var(--text-secondary);
  margin-bottom: 28px;
  line-height: 1.7;
}

.profile-guest__btn { min-width: 220px; }

.profile-dashboard__card {
  max-width: 560px;
  margin: 0 auto;
  padding: 40px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
  animation: card-in 0.8s var(--ease-out-expo) forwards;
}

@keyframes card-in {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.profile-dashboard__header {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border-subtle);
}

.profile-dashboard__avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--border-gold);
  box-shadow: 0 0 30px var(--accent-gold-soft);
}

.profile-dashboard__info { flex: 1; }

.profile-dashboard__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  margin-bottom: 4px;
  color: var(--text-primary);
}

.profile-dashboard__meta {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.profile-dashboard__logout {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: underline;
  transition: color 0.3s;
}

.profile-dashboard__logout:hover { color: var(--accent-gold); }

.profile-dashboard__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.profile-stat {
  text-align: center;
  padding: 24px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius);
  border: 1px solid var(--border-subtle);
  transition: border-color 0.3s, transform 0.3s var(--ease-out-expo);
}

.profile-stat:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
}

.profile-stat__value {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.25rem;
  color: var(--accent-gold);
  margin-bottom: 6px;
  animation: count-up 0.6s var(--ease-out-expo) forwards;
}

@keyframes count-up {
  from { opacity: 0; transform: translateY(10px) scale(0.9); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.profile-stat__label {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ---------- Shop ---------- */
.shop-section { background: var(--bg-deep); }

.shop-notice {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  max-width: 920px;
  margin: 0 auto 32px;
  padding: 20px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(239, 68, 68, 0.35);
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.12) 0%, rgba(15, 15, 20, 0.85) 50%, rgba(212, 175, 55, 0.06) 100%);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.shop-notice__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  border-radius: 12px;
  background: rgba(239, 68, 68, 0.2);
  color: #fca5a5;
}

.shop-notice__title {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: #fecaca;
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.shop-notice__text {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

.shop-notice__text strong {
  color: var(--text-primary);
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  position: relative;
  min-height: 120px;
  visibility: visible;
  opacity: 1;
}

.shop-grid--empty {
  display: block;
  min-height: 200px;
}

.shop-empty {
  text-align: center;
  color: var(--text-muted);
  padding: 48px 24px;
  font-size: 1.05rem;
}

.shop-loading {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--text-muted);
  padding: 48px;
}

.shop-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: border-color 0.4s, transform 0.4s var(--ease-out-expo), box-shadow 0.4s;
  animation: shop-card-in 0.6s var(--ease-out-expo) backwards;
}

.shop-card:nth-child(1) { animation-delay: 0.05s; }
.shop-card:nth-child(2) { animation-delay: 0.1s; }
.shop-card:nth-child(3) { animation-delay: 0.15s; }
.shop-card:nth-child(4) { animation-delay: 0.2s; }
.shop-card:nth-child(5) { animation-delay: 0.25s; }
.shop-card:nth-child(6) { animation-delay: 0.3s; }

@keyframes shop-card-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.shop-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35);
}

.shop-card__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.shop-card__desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.55;
}

.shop-card__price {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--accent-gold);
  margin-bottom: 20px;
}

.shop-card__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.shop-card__btns .shop-card__btn {
  flex: 1;
  min-width: 120px;
}

.shop-card__btn {
  width: 100%;
  padding: 14px;
  font-size: 0.95rem;
  border-radius: var(--radius);
}

.shop-card__btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.shop-card--owned .shop-card__btn {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
}

.shop-card__btn--owned {
  font-weight: 800 !important;
  letter-spacing: 0.12em;
  font-size: 0.82rem !important;
  color: rgba(212, 175, 55, 0.95) !important;
  border: 1px solid rgba(212, 175, 55, 0.35) !important;
  background: rgba(212, 175, 55, 0.06) !important;
}

.shop-card--perm {
  border-color: rgba(88, 101, 242, 0.35);
  background: linear-gradient(160deg, rgba(88, 101, 242, 0.08) 0%, var(--bg-card) 55%);
}

.shop-card--perm:hover {
  border-color: rgba(88, 101, 242, 0.55);
}

.shop-card--nitro {
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
  background:
    linear-gradient(var(--bg-card), var(--bg-card)) padding-box,
    linear-gradient(135deg, #f47fff 0%, #7c3aed 40%, #06b6d4 100%) border-box;
  box-shadow:
    0 0 0 1px rgba(244, 127, 255, 0.15),
    0 24px 64px rgba(124, 58, 237, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.shop-card--nitro::before {
  content: '';
  position: absolute;
  inset: -40% -20%;
  background: conic-gradient(from 180deg at 50% 50%, transparent, rgba(244, 127, 255, 0.15), transparent 40%);
  animation: nitro-shimmer 8s linear infinite;
  pointer-events: none;
  opacity: 0.9;
}

@keyframes nitro-shimmer {
  to { transform: rotate(360deg); }
}

.shop-card--nitro .shop-card__name {
  background: linear-gradient(90deg, #fce7ff, #e9d5ff, #a5f3fc);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.shop-card--nitro .shop-card__price {
  color: #e879f9;
  text-shadow: 0 0 24px rgba(244, 127, 255, 0.35);
}

.shop-card__nitro-ribbon {
  position: absolute;
  top: 18px;
  right: -32px;
  transform: rotate(42deg);
  padding: 6px 40px;
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.35em;
  text-indent: 0.35em;
  color: #0f0f12;
  background: linear-gradient(90deg, #f0abfc, #e879f9, #c084fc);
  box-shadow: 0 4px 20px rgba(192, 132, 252, 0.5);
  z-index: 1;
}

.shop-card--nitro:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow:
    0 0 0 1px rgba(244, 127, 255, 0.35),
    0 28px 72px rgba(124, 58, 237, 0.35);
}

.shop-card__btn--nitro {
  background: linear-gradient(135deg, #e879f9 0%, #a855f7 50%, #6366f1 100%) !important;
  color: #fff !important;
  font-weight: 800;
  letter-spacing: 0.03em;
  border: none;
  box-shadow: 0 8px 28px rgba(168, 85, 247, 0.45);
}

.shop-card__btn--nitro:hover:not(:disabled) {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

.shop-card__btn--nitro:disabled {
  opacity: 0.55;
}

/* ---------- Events Timeline ---------- */
.events { background: var(--bg-deep); }

.timeline { max-width: 700px; margin: 0 auto; }

.timeline__item {
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  margin-bottom: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(12px);
  transition: border-color 0.5s, box-shadow 0.5s var(--ease-out-expo);
}

.timeline__item:hover { border-color: rgba(212, 175, 55, 0.2); }

.timeline__item.timeline__item--open {
  border-color: var(--border-gold);
  box-shadow: 0 8px 32px var(--accent-gold-soft);
}

.timeline__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 28px;
  text-align: left;
  color: var(--text-primary);
  font-size: 1rem;
  transition: background 0.3s;
}

.timeline__trigger:hover { background: rgba(255, 255, 255, 0.02); }

.timeline__day {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--accent-gold);
  min-width: 90px;
  letter-spacing: 0.02em;
}

.timeline__name { flex: 1; font-weight: 600; }

.timeline__chevron {
  width: 20px;
  height: 20px;
  border-right: 2px solid var(--text-muted);
  border-bottom: 2px solid var(--text-muted);
  transform: rotate(45deg);
  transition: transform 0.5s var(--ease-out-expo);
}

.timeline__item--open .timeline__chevron { transform: rotate(-135deg); }

.timeline__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s var(--ease-out-expo);
}

.timeline__panel p {
  padding: 20px 28px 16px;
  color: var(--text-secondary);
  font-size: 0.98rem;
  line-height: 1.65;
  border-top: 1px solid var(--border-subtle);
  margin: 0 28px;
  padding-top: 20px;
}

.timeline__panel .btn { margin: 0 28px 24px; }

/* ---------- Staff ---------- */
.staff {
  background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-card) 100%);
}

.staff__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 28px;
}

.staff-card {
  padding: 36px 28px;
  text-align: center;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
  transition: transform 0.6s var(--ease-out-expo), border-color 0.5s, box-shadow 0.6s var(--ease-out-expo);
}

.staff-card:hover {
  transform: translateY(-8px) rotateX(3deg);
  border-color: var(--border-gold);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35), 0 0 40px var(--accent-gold-soft);
}

.staff-card__avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--accent-gold), #b8962e);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.75rem;
  color: #0a0a0a;
  transition: transform 0.5s var(--ease-out-expo), box-shadow 0.5s;
}

.staff-card:hover .staff-card__avatar {
  transform: scale(1.08);
  box-shadow: 0 0 30px var(--accent-gold-glow);
}

.staff-card__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.staff-card__role {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 10px;
}

.staff-card__vibe {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

.staff__grid--founders {
  grid-template-columns: repeat(2, minmax(240px, 380px));
  justify-content: center;
  gap: 40px;
}

@media (max-width: 560px) {
  .staff__grid--founders {
    grid-template-columns: 1fr;
  }
}

/* ---------- Live from Discord ---------- */
.live {
  background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-deep) 100%);
}

.live__stats-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 48px;
}

.live-stat {
  padding: 16px 24px;
  min-width: 100px;
  text-align: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  transition: border-color 0.35s, box-shadow 0.35s, transform 0.35s var(--ease-out-expo);
}

.live-stat:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.live-stat__num {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.75rem;
  color: var(--text-primary);
  line-height: 1.2;
}

.live-stat__label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.live-stat--online .live-stat__num { color: #43b581; }
.live-stat--idle .live-stat__num { color: #faa61a; }
.live-stat--dnd .live-stat__num { color: #f04747; }
.live-stat--offline .live-stat__num { color: var(--text-muted); }

.live__voice-section {
  margin-bottom: 48px;
}

.live__voice-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-primary);
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}

.live__voice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.voice-room {
  padding: 20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  transition: border-color 0.35s, box-shadow 0.35s, transform 0.35s var(--ease-out-expo);
}

.voice-room:hover {
  border-color: rgba(212, 175, 55, 0.2);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
  transform: translateY(-2px);
}

.voice-room__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--accent-champagne);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.voice-room__name::before {
  content: '🔊';
  font-size: 1rem;
}

.voice-room__avatars {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.voice-room__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.1);
  transition: border-color 0.3s, transform 0.3s var(--ease-out-expo);
}

.voice-room__avatar:hover {
  border-color: var(--accent-gold);
  transform: scale(1.1);
}

.live__grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 36px;
  align-items: start;
}

@media (max-width: 900px) {
  .live__grid {
    grid-template-columns: 1fr;
  }
}

.live-card {
  position: relative;
  padding: 32px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
  transition: border-color 0.5s, box-shadow 0.6s var(--ease-out-expo);
}

.live-card:hover {
  border-color: var(--border-gold);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(212, 175, 55, 0.06);
}

.live-card--online {
  text-align: center;
}

.live-card__icon {
  font-size: 2rem;
  margin-bottom: 12px;
  display: block;
  animation: live-pulse-dot 2s var(--ease-in-out) infinite;
}

@keyframes live-pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.1); }
}

.live-card__value {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 3rem;
  letter-spacing: -0.02em;
  color: var(--accent-champagne);
  line-height: 1.1;
  transition: transform 0.4s var(--ease-out-expo);
}

.live-card--online.updated .live-card__value {
  animation: live-number-pop 0.5s var(--ease-out-expo);
}

@keyframes live-number-pop {
  0% { transform: scale(1); }
  50% { transform: scale(1.08); }
  100% { transform: scale(1); }
}

.live-card__label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-top: 8px;
  letter-spacing: 0.05em;
}

.live-card__pulse {
  position: absolute;
  inset: -2px;
  border-radius: calc(var(--radius-lg) + 4px);
  border: 1px solid var(--accent-gold);
  opacity: 0;
  pointer-events: none;
}

.live-card--online.updated .live-card__pulse {
  animation: live-pulse-ring 0.8s var(--ease-out-expo);
}

@keyframes live-pulse-ring {
  0% { opacity: 0.5; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.05); }
}

/* Chat card — تصميم أجمل */
.live-card--chat {
  min-height: 380px;
  padding: 0;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.live-card--chat:hover {
  border-color: rgba(212, 175, 55, 0.2);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.4), 0 0 40px rgba(212, 175, 55, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.live-card__chat-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 24px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  color: var(--text-primary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.2);
}

.live-card__chat-header::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-gold);
  box-shadow: 0 0 12px var(--accent-gold-glow);
  animation: live-dot-blink 1.5s var(--ease-in-out) infinite;
}

@keyframes live-dot-blink {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.9); }
}

.live-card__chat-list {
  max-height: 440px;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 16px 20px;
  scroll-behavior: smooth;
  transition: opacity 0.35s var(--ease-out-expo);
}

.live-card__chat-list::-webkit-scrollbar {
  width: 6px;
}

.live-card__chat-list::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 3px;
}

.live-card__chat-list::-webkit-scrollbar-thumb {
  background: rgba(212, 175, 55, 0.25);
  border-radius: 3px;
}

.live-card__chat-list::-webkit-scrollbar-thumb:hover {
  background: rgba(212, 175, 55, 0.4);
}

.live-chat__list--updating .live-chat__msg {
  animation: live-msg-in 0.5s var(--ease-out-expo) backwards;
}

.live-chat__placeholder {
  text-align: center;
  color: var(--text-muted);
  padding: 56px 24px;
  font-size: 0.95rem;
  line-height: 1.6;
}

.live-chat__msg {
  display: flex;
  gap: 16px;
  padding: 16px 18px;
  border-radius: 14px;
  margin-bottom: 10px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.04);
  animation: live-msg-in 0.55s var(--ease-out-expo) backwards;
  transition: background 0.35s var(--ease-out-expo), border-color 0.35s, transform 0.35s var(--ease-out-expo), box-shadow 0.35s;
}

.live-chat__msg:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.03) 100%);
  border-color: rgba(212, 175, 55, 0.12);
  transform: translateX(4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.live-chat__msg:last-child {
  margin-bottom: 0;
}

@keyframes live-msg-in {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.live-chat__avatar-wrap {
  flex-shrink: 0;
  position: relative;
}

.live-chat__avatar-wrap::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.2);
  opacity: 0;
  transition: opacity 0.35s;
  pointer-events: none;
}

.live-chat__msg:hover .live-chat__avatar-wrap::after {
  opacity: 1;
}

.live-chat__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  border: 2px solid rgba(255, 255, 255, 0.1);
  transition: border-color 0.35s, box-shadow 0.35s;
}

.live-chat__msg:hover .live-chat__avatar {
  border-color: rgba(212, 175, 55, 0.35);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.15);
}

.live-chat__body {
  flex: 1;
  min-width: 0;
}

.live-chat__meta {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 6px;
}

.live-chat__name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-primary);
  letter-spacing: 0.01em;
}

.live-chat__time {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}

.live-chat__content {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
  word-break: break-word;
}

.live-chat__content a {
  color: var(--accent-gold);
  text-decoration: none;
}

.live-chat__content a:hover {
  text-decoration: underline;
}

.stat--live .stat__num {
  color: var(--accent-champagne);
}

/* ---------- Testimonials ---------- */
.testimonials { background: var(--bg-card); }

.carousel {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  overflow: hidden;
}

.carousel__track {
  display: flex;
  transition: transform 0.7s var(--ease-out-expo);
}

.carousel__slide {
  flex: 0 0 100%;
  padding: 56px 40px;
  text-align: center;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
  transition: box-shadow 0.5s;
}

.carousel__slide:hover {
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.carousel__stars {
  color: var(--accent-gold);
  font-size: 1.1rem;
  letter-spacing: 4px;
  margin-bottom: 20px;
  opacity: 0.95;
}

.carousel__slide p {
  font-size: 1.2rem;
  line-height: 1.75;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.carousel__slide cite {
  font-style: normal;
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 600;
}

.carousel__dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.carousel__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border-subtle);
  border: none;
  cursor: pointer;
  transition: all 0.4s var(--ease-out-expo);
}

.carousel__dot:hover { background: var(--text-muted); }

.carousel__dot.carousel__dot--active {
  background: var(--accent-gold);
  transform: scale(1.3);
  box-shadow: 0 0 20px var(--accent-gold-soft);
}

/* ---------- FAQ ---------- */
.faq { background: var(--bg-deep); }

.accordion { max-width: 700px; margin: 0 auto; }

.accordion__item {
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  margin-bottom: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(12px);
  transition: border-color 0.4s, box-shadow 0.4s;
}

.accordion__item:hover { border-color: rgba(212, 175, 55, 0.15); }

.accordion__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 28px;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-primary);
  transition: background 0.3s;
}

.accordion__trigger:hover { background: rgba(255, 255, 255, 0.02); }

.accordion__icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-right: 2px solid var(--text-muted);
  border-bottom: 2px solid var(--text-muted);
  transform: rotate(45deg);
  transition: transform 0.5s var(--ease-out-expo);
}

.accordion__trigger[aria-expanded="true"] .accordion__icon { transform: rotate(-135deg); }

.accordion__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s var(--ease-out-expo);
}

.accordion__panel p {
  padding: 0 28px 24px;
  color: var(--text-secondary);
  font-size: 0.98rem;
  line-height: 1.7;
  border-top: 1px solid var(--border-subtle);
  padding-top: 20px;
  margin: 0 28px;
}

/* ---------- Final CTA ---------- */
.cta-final {
  padding: 160px 28px;
  position: relative;
  text-align: center;
}

.cta-final__bg { position: absolute; inset: 0; }

.cta-final__gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 70% at 50% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 50% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
}

.cta-final__noise {
  position: absolute;
  inset: 0;
  opacity: 0.02;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.cta-final__content { position: relative; z-index: 1; }

.cta-final__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.cta-final__text {
  color: var(--text-secondary);
  font-size: 1.2rem;
  margin-bottom: 40px;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Footer ---------- */
.footer {
  padding: 40px 28px;
  border-top: 1px solid var(--border-subtle);
  background: var(--bg-card);
}

.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.footer__links {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 20px;
}

.footer__links a {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 600;
  transition: color 0.35s, transform 0.35s var(--ease-out-expo);
}

.footer__links a:hover {
  color: var(--accent-gold);
  transform: translateY(-2px);
}

.footer__copy {
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* ---------- Cursor glow ---------- */
.cursor-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.06) 0%, transparent 65%);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s;
}

body:hover .cursor-glow { opacity: 1; }

@media (max-width: 768px) { .cursor-glow { display: none; } }

/* ---------- Mobile ---------- */
@media (max-width: 600px) {
  .section { padding: 80px 0; }
  .section__head { margin-bottom: 48px; }
  .hero__stats { flex-direction: column; align-items: center; }
  .stat { width: 100%; max-width: 220px; }
  .features__grid { grid-template-columns: 1fr; }
  .staff__grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .carousel__slide { padding: 40px 24px; }
}
