:root {
  --primary: #DAA520;
  --primary-light: #DAA520;
  --primary-dark: #8B6914;
  --secondary: #722F37;
  --accent: #2D5A27;
  --accent-warm: #C75146;
  --bg-dark: #0F1419;
  --bg-warm: #1A1F26;
  --bg-card: rgba(255, 248, 240, 0.03);
  --bg-card-hover: rgba(255, 248, 240, 0.08);
  --text-primary: #FDF8F3;
  --text-secondary: rgba(253, 248, 243, 0.7);
  --text-muted: rgba(253, 248, 243, 0.4);
  --gradient-gold: linear-gradient(135deg, #DAA520 0%, #B8860B 50%, #8B6914 100%);
  --glow-gold: 0 0 40px rgba(218, 165, 32, 0.4);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 400ms cubic-bezier(0.4, 0, 0, 1);
  --transition-spring: 600ms cubic-bezier(0.34, 1.56, 0.64, 1);
  scrollbar-color: var(--primary) var(--bg-dark);
  box-sizing: border-box;
  margin: 0px;
  padding: 0px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
   font-family: var(--font-body);
   color: var(--text-primary);
   line-height: 1.6;
   overflow-x: hidden;
   cursor: none;
   background: var(--bg-dark);
   text-align: center;
}

.text-line-3 {
   display: -webkit-box;
   -webkit-line-clamp: 3;
   -webkit-box-orient: vertical;
   overflow: hidden;
   text-overflow: ellipsis;
}

a, button {
  cursor: none;
}

::selection {
  background: var(--primary);
  color: var(--bg-dark);
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 4px;
}

.gradient-text {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.glass {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 248, 240, 0.08);
}

.glass:hover {
  background: var(--bg-card-hover);
}

.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

/* Custom Cursor */
.cursor {
  position: fixed;
  width: 32px;
  height: 32px;
  border: 2px solid white;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  mix-blend-difference;
  transition: transform 0.15s ease, width 0.2s ease, height 0.2s ease, border-color 0.2s ease;
  transform: translate(-50%, -50%);
}

.cursor.hover {
  width: 48px;
  height: 48px;
  border-color: rgba(255, 255, 255, 0.5);
}

.cursor-dot {
  position: fixed;
  width: 6px;
  height: 6px;
  background: white;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
}

/* Noise */
.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  opacity: 0.03;
}

/* Canvas Background */
#canvas-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

/* Hide breadcrumbs from visual display but keep in DOM for SEO */
.breadcrumbs,
.breadcrumbs.hidden,
nav.breadcrumbs,
nav.breadcrumbs.hidden {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  height: 0 !important;
  overflow: hidden !important;
}

/* Nav */
.nav {
   position: fixed;
   top: 0;
   left: 0;
   right: 0;
   z-index: 100;
   padding: 1rem 0;
   background: transparent;
   border-bottom: none;
   transition: var(--transition-smooth);
}

.nav-inner {
   max-width: 1400px;
   margin: 0 auto;
   padding: 0 1rem;
   display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.nav-logo img {
  height: 52px;
  width: auto;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color var(--transition-fast);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary-light);
}

.nav-cta {
  padding: 0.5rem 1.25rem;
  background: var(--gradient-gold);
  color: var(--bg-dark);
  font-weight: 600;
  font-size: 0.875rem;
  border: none;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: var(--transition-fast);
}

.nav-cta:hover {
  box-shadow: var(--glow-gold);
}

.nav-links .nav-cta {
  display: none;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  cursor: pointer;
  padding: 0.5rem;
}

.hamburger {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  position: relative;
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  left: 0;
}

.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }

/* Mobile menu open state */
.nav-open .nav-links {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: #0a0a0f;
  padding: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  gap: 1.5rem;
}

.nav-open .nav-links .nav-cta {
  display: block;
  text-align: center;
  margin-top: 0.5rem;
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 1.5rem 2rem;
  position: relative;
}

.hero-grid {
  max-width: 1024px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: rgba(255, 248, 240, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 9999px;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-family: monospace;
  margin-bottom: 2rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 640px;
  margin: 0 auto 3rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: var(--transition-fast);
}

.btn-primary {
  background: var(--gradient-gold);
  color: var(--bg-dark);
}

.btn-primary:hover {
  box-shadow: 0 0 40px rgba(218, 165, 32, 0.5);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
  border-color: var(--primary-light);
  color: var(--primary-light);
}

.hero-social-proof {
  margin-top: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.avatar-stack {
  display: flex;
}

.avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  border: 2px solid var(--bg-dark);
  margin-left: -8px;
}

.avatar:first-child {
  margin-left: 0;
}

/* Bento */
.bento {
   padding: 6rem 1rem;
}

.bento-inner {
   max-width: 1400px;
   margin: 0 auto;
}

.bento-header {
  text-align: center;
  margin-bottom: 4rem;
}

.bento-header span {
  color: var(--primary-light);
  font-family: monospace;
  font-size: 0.875rem;
}

.bento-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-top: 0.5rem;
}

.bento-header p {
  color: var(--text-secondary);
  margin-top: 1rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.bento-card {
  padding: 2rem;
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 248, 240, 0.08);
  border-radius: var(--radius-lg);
  transition: var(--transition-smooth);
}

.bento-card:hover {
  background: var(--bg-card-hover);
  transform: translateY(-4px);
}

.bento-icon {
  width: 3rem;
  height: 3rem;
  background: rgba(255, 248, 240, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--primary-light);
}

.bento-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.bento-card p {
   color: var(--text-secondary);
   font-size: 0.875rem;
   display: -webkit-box;
   -webkit-line-clamp: 3;
   -webkit-box-orient: vertical;
   overflow: hidden;
   text-overflow: ellipsis;
   text-align: justify;
}

.bento-card .stat {
  margin-top: 1.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-light);
}

/* CTA */
.cta-section {
   padding: 6rem 1rem;
}

.cta-inner {
   max-width: 1200px;
   margin: 0 auto;
}

.cta-card {
  padding: 4rem;
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 248, 240, 0.08);
  border-radius: var(--radius-xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 24rem;
  height: 24rem;
  background: rgba(218, 165, 32, 0.1);
  filter: blur(120px);
  border-radius: 50%;
}

.cta-card h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  position: relative;
}

.cta-card p {
  color: var(--text-secondary);
  margin: 1rem auto 2rem;
  max-width: 512px;
  position: relative;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* Footer */
.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 3rem 1.5rem;
}

.footer-inner {
   max-width: 1400px;
   margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
  text-align: left;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-top: 0.5rem;
  text-align: left;
}

.footer-heading {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-primary);
  text-align: left;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: left;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-top: 0.5rem;
}

.footer-heading {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color var(--transition-fast);
  text-align: left;
}

.footer-links a:hover {
  color: var(--primary-light);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Page Headers */
.page-header {
   padding: 10rem 1rem 4rem;
   text-align: center;
   max-width: 1400px;
   margin: 0 auto;
}

.page-header span {
  color: var(--primary-light);
  font-family: monospace;
  font-size: 0.875rem;
}

.page-header h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-top: 0.5rem;
}

.page-header p {
   color: var(--text-secondary);
   margin-top: 1rem;
   max-width: 640px;
   margin-left: auto;
   margin-right: auto;
}

/* Blog Post Content - justified text, centered headings */
.post-content {
   text-align: justify;
   width: 100%;
}

.post-content p,
.post-content li,
.post-content div {
   text-align: justify;
}

.post-content h1,
.post-content h2,
.post-content h3,
.post-content h4,
.post-content h5,
.post-content h6 {
   text-align: center;
}

/* Centered body text - all non-heading elements */
body {
   font-family: var(--font-body);
   color: var(--text-primary);
   line-height: 1.6;
   overflow-x: hidden;
   cursor: none;
   background: var(--bg-dark);
}

/* All body text is justified by default */
body p,
body li,
body div:not(.hero-*) {
   text-align: justify;
}

/* Form elements and other text */
.post-content ul,
.post-content ol {
   text-align: justify;
   padding-left: 2rem;
}

/* Contact Form */
.contact-form {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 1.5rem 6rem;
}

.form-group {
   margin-bottom: 1.5rem;
   text-align: left;
}

.form-label {
   display: block;
   font-size: 0.875rem;
   font-weight: 500;
   margin-bottom: 0.5rem;
   color: rgba(253, 248, 243, 0.8);
   text-align: left;
}

.form-input {
   width: 100%;
   padding: 0.875rem 1rem;
   background: rgba(255, 248, 240, 0.03);
   border: 1px solid rgba(255, 255, 255, 0.1);
   border-radius: var(--radius-sm);
   color: var(--text-primary);
   font-size: 1rem;
   transition: border-color var(--transition-fast);
   text-align: left;
}

.form-input::placeholder {
  color: rgba(253, 248, 243, 0.3);
}

.form-input:focus {
  outline: none;
  border-color: var(--primary-light);
}

textarea.form-input {
  min-height: 150px;
  resize: vertical;
}

/* Grid layouts */
.grid-3 {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 2rem;
   max-width: 1400px;
   margin: 0 auto;
   padding: 0 1rem 6rem;
}

.grid-3 .card {
  padding: 2rem;
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 248, 240, 0.08);
  border-radius: var(--radius-lg);
}

.grid-3 .card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.grid-3 .card p {
   color: var(--text-secondary);
   font-size: 0.875rem;
   display: -webkit-box;
   -webkit-line-clamp: 3;
   -webkit-box-orient: vertical;
   overflow: hidden;
   text-overflow: ellipsis;
   text-align: justify;
}

/* Placeholder */
.placeholder {
  max-width: 1280px;
  margin: 0 auto;
  padding: 4rem 1.5rem 6rem;
  text-align: center;
}

.placeholder p {
  color: var(--text-secondary);
}

/* Legal pages */
.legal-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 1.5rem 6rem;
}

.legal-content {
  background: rgba(255, 248, 240, 0.03);
  border: 1px solid rgba(218, 165, 32, 0.15);
  border-radius: var(--radius-md);
  padding: 3rem;
}

.legal-content h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-light);
  margin: 2rem 0 1rem;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.legal-content ul {
  color: var(--text-secondary);
  line-height: 1.8;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-content ul li {
  margin-bottom: 0.5rem;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate {
  animation: fadeIn 0.8s cubic-bezier(0.4, 0, 0, 1) forwards;
}

.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }

/* Testimonials */
.testimonials {
   padding: 6rem 1rem;
   background: var(--bg-dark);
}

.testimonials-inner {
   max-width: 1400px;
   margin: 0 auto;
}

.testimonials-header {
   text-align: center;
   margin-bottom: 4rem;
}

.testimonials-header span {
   color: var(--primary-light);
   font-family: monospace;
   font-size: 0.875rem;
}

.testimonials-header h2 {
   font-family: var(--font-display);
   font-size: clamp(1.75rem, 4vw, 2.5rem);
   margin-top: 0.5rem;
   color: var(--text-primary);
}

.testimonials-grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
   gap: 2rem;
   margin: 0 auto;
}

.testimonial-card {
   background: var(--bg-card);
   backdrop-filter: blur(20px);
   border: 1px solid rgba(255, 248, 240, 0.08);
   border-radius: var(--radius-lg);
   padding: 2.5rem;
   transition: var(--transition-smooth);
   position: relative;
   overflow: hidden;
}

.testimonial-card:hover {
   background: var(--bg-card-hover);
   transform: translateY(-4px);
   box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.testimonial-card::before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   width: 4px;
   height: 100%;
   background: var(--gradient-gold);
}

.testimonial-text {
   font-family: var(--font-body);
   font-size: 1.125rem;
   line-height: 1.7;
   color: var(--text-secondary);
   margin-bottom: 2rem;
   position: relative;
   padding-left: 1rem;
}

.testimonial-text::before {
   content: '"';
   font-size: 4rem;
   opacity: 0.1;
   position: absolute;
   top: -10px;
   left: 0;
   font-family: serif;
   color: var(--primary);
}

.testimonial-author {
   display: flex;
   align-items: flex-start;
   gap: 1.5rem;
}

.testimonial-avatar {
   width: 50px;
   height: 50px;
   background: var(--primary);
   color: var(--bg-dark);
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 1.5rem;
   font-weight: 600;
   border-radius: 50%;
   flex-shrink: 0;
}

.testimonial-author-info {
   display: flex;
   flex-direction: column;
}

.testimonial-author-name {
   font-family: var(--font-display);
   font-size: 1.25rem;
   font-weight: 600;
   color: var(--text-primary);
   margin-bottom: 0.25rem;
}

.testimonial-author-title {
   font-size: 0.95rem;
   color: var(--primary-light);
   font-weight: 500;
}

/* Mobile */
@media (max-width: 768px) {
   .nav-links { display: none; }
   .nav-cta { display: none; }
   .nav-toggle { display: block; }
   
   .cursor, .cursor-dot { display: none; }
   
   .hero { padding: 8rem 1.5rem 4rem; }
   .hero-title { font-size: 2.5rem; }
   
   .cta-card { padding: 2rem; }
   
   .testimonials {
      padding: 4rem 1rem;
   }
   
   .testimonial-card {
      padding: 2rem;
   }
   
   .testimonial-text {
      font-size: 1rem;
      margin-bottom: 1.5rem;
   }
   
   .testimonial-author {
      flex-direction: column;
      align-items: center;
      text-align: center;
   }
   
   .testimonial-avatar {
       width: 40px;
       height: 40px;
       font-size: 1.25rem;
    }
}

/* FAQ Accordion */
.faq-section {
   max-width: 1400px;
   margin: 0 auto;
   padding: 4rem 1rem;
}

.faq-section h2 {
   text-align: center;
   font-family: var(--font-display);
   font-size: 2rem;
   color: var(--text-primary);
   margin-bottom: 2rem;
}

.faq-container {
   display: flex;
   flex-direction: column;
   gap: 1rem;
}

.faq-item {
   background: rgba(253, 248, 243, 0.03);
   border: 1px solid rgba(218, 165, 32, 0.2);
   border-radius: 12px;
   overflow: hidden;
   transition: border-color 0.3s ease;
}

.faq-item:hover {
   border-color: rgba(218, 165, 32, 0.4);
}

.faq-item.active {
   border-color: var(--primary);
}

.faq-question {
   width: 100%;
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding: 1.25rem 1.5rem;
   background: transparent;
   border: none;
   cursor: pointer;
   text-align: left;
   font-family: var(--font-display);
   font-size: 1.1rem;
   font-weight: 500;
   color: var(--text-primary);
   transition: color 0.3s ease;
}

.faq-question:hover {
   color: var(--primary);
}

.faq-question:focus {
   outline: none;
}

.faq-question:focus-visible {
   outline: 2px solid var(--primary);
   outline-offset: -2px;
   border-radius: 8px;
}

.faq-icon {
   flex-shrink: 0;
   width: 24px;
   height: 24px;
   display: flex;
   align-items: center;
   justify-content: center;
   color: var(--primary);
   transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
   transform: rotate(180deg);
}

.faq-answer {
   max-height: 0;
   overflow: hidden;
   transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-answer-inner {
   padding: 0 1.5rem 1.5rem;
   color: var(--text-secondary);
   line-height: 1.7;
   font-size: 1rem;
   text-align: justify;
}

.faq-item.active .faq-answer {
   max-height: 500px;
}

@media (max-width: 768px) {
   .faq-section {
      padding: 3rem 1rem;
   }

   .faq-section h2 {
      font-size: 1.5rem;
   }

   .faq-question {
      font-size: 1rem;
      padding: 1rem 1.25rem;
   }

.faq-answer-inner {
       padding: 0 1.25rem 1.25rem;
       font-size: 0.95rem;
    }
}

.nav-dropdown {
  position: relative;
}
.nav-dropdown > a {
  cursor: pointer;
}
.nav-dropdown-content {
  display: none;
  position: absolute;
  top: calc(100% - 2px);
  left: 0;
  background: #0a0a0f;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  padding: 0.5rem;
  min-width: 160px;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}
.nav-dropdown:hover .nav-dropdown-content {
  display: block;
}
.nav-dropdown-content a {
  display: block;
  padding: 0.5rem 0.75rem;
  color: var(--text-secondary);
  font-size: 0.875rem;
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: color var(--transition-fast), background var(--transition-fast);
}
.nav-dropdown-content a:hover {
  color: var(--primary-light);
  background: rgba(255,255,255,0.05);
}
