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

:root {
  --black:        #07070f;
  --dark:         #0d0d1c;
  --border:       rgba(201,168,70,0.15);
  --gold:         #C9A846;
  --gold-light:   #E8C96A;
  --gold-glow:    rgba(201,168,70,0.25);
  --purple:       #7B2BE2;
  --purple-bright:#9B4DF5;
  --purple-dark:  #3D1580;
  --purple-glow:  rgba(123,43,226,0.3);
  --white:        #F8F6FF;
  --grey:         #8882A4;
  --grey-light:   #C4C0D8;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  padding: 18px 0;
  background: rgba(7,7,15,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201,168,70,0.08);
}
nav .container { display: flex; align-items: center; justify-content: space-between; }
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; flex-shrink: 0;
}
.nav-logo img { width: 36px; height: 36px; border-radius: 8px; object-fit: contain; }
.nav-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; font-weight: 700;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.nav-right { display: flex; align-items: center; gap: 12px; }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-menu-btn {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  color: var(--grey-light);
  padding: 9px 18px; border-radius: 100px;
  font-size: 0.875rem; font-weight: 500;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  display: flex; align-items: center; gap: 6px;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  white-space: nowrap;
}
.nav-menu-btn:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(201,168,70,0.3);
  color: var(--white);
}
.nav-menu-btn .arrow { font-size: 0.65rem; transition: transform 0.2s; display: inline-block; }
.nav-dropdown.open .arrow { transform: rotate(180deg); }

.nav-dropdown-panel {
  display: none;
  position: absolute; top: calc(100% + 10px); right: 0;
  background: #12121f;
  border: 1px solid rgba(201,168,70,0.18);
  border-radius: 16px; padding: 8px;
  min-width: 200px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.6);
  z-index: 300;
}
.nav-dropdown.open .nav-dropdown-panel { display: block; }
.nav-dropdown-panel a {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 14px; border-radius: 10px;
  text-decoration: none; color: var(--grey-light); font-size: 0.9rem;
  transition: background 0.15s, color 0.15s;
}
.nav-dropdown-panel a:hover { background: rgba(123,43,226,0.12); color: var(--white); }
.dd-icon {
  width: 28px; height: 28px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; flex-shrink: 0;
}
.dd-icon.purple-bg { background: rgba(123,43,226,0.18); }
.dd-icon.gold-bg   { background: rgba(201,168,70,0.12); }
.dd-divider { height: 1px; background: var(--border); margin: 6px 8px; }
.dd-label {
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--grey); padding: 8px 14px 4px; display: block;
}

.nav-cta {
  background: var(--purple); color: #fff;
  border: none; padding: 10px 20px; border-radius: 100px;
  font-size: 0.875rem; font-weight: 600;
  cursor: pointer; text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  white-space: nowrap;
}
.nav-cta:hover {
  background: var(--purple-bright);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px var(--purple-glow);
}

/* ── SHARED SECTION STYLES ── */
.section-tag {
  display: inline-block; font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 900;
  line-height: 1.2; margin-bottom: 20px;
}
.section-sub { font-size: 1.05rem; color: var(--grey-light); max-width: 560px; line-height: 1.7; }

.gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.purple {
  background: linear-gradient(135deg, var(--purple-bright), var(--purple));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* ── FOOTER ── */
footer { background: var(--dark); border-top: 1px solid var(--border); padding: 48px 0 32px; }
.footer-inner {
  display: flex; flex-wrap: wrap; gap: 32px;
  justify-content: space-between; align-items: flex-start; margin-bottom: 40px;
}
.footer-brand p { font-size: 0.85rem; color: var(--grey); max-width: 260px; line-height: 1.6; }
.footer-links { display: flex; gap: 48px; flex-wrap: wrap; }
.footer-col h4 {
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 0.875rem; color: var(--grey); text-decoration: none; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 28px;
  display: flex; flex-wrap: wrap; gap: 16px;
  justify-content: space-between; align-items: center;
}
.footer-bottom p { font-size: 0.8rem; color: var(--grey); }
.footer-bottom span { color: var(--gold); }

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }

@media (max-width: 768px) {
  .footer-inner { flex-direction: column; }
  .footer-links { gap: 32px; }
}
@media (max-width: 480px) {
  .nav-menu-btn span:first-child { display: none; }
  .nav-menu-btn { padding: 9px 14px; }
}
