:root {
  --nftm-night: #07111f;
  --nftm-deep: #0d1b2a;
  --nftm-forest: #12372a;
  --nftm-sand: #d8cbb1;
  --nftm-ice: #f4f7f5;
  --nftm-muted: #8fa3a3;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--nftm-night);
  color: var(--nftm-ice);
  font-family: 'Inter', sans-serif;
}

/* Navbar */
.nftm-navbar {
  background: rgba(7, 17, 31, 0.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(216, 203, 177, 0.08);
}

.nftm-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--nftm-sand) !important;
  font-weight: 600;
  letter-spacing: 0.08rem;
}

.nftm-brand-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  object-fit: cover;
}

.nav-link {
  color: rgba(244, 247, 245, 0.78) !important;
  font-size: 0.9rem;
  letter-spacing: 0.05rem;
}

.nav-link:hover {
  color: var(--nftm-sand) !important;
}

/* Language selector */
.nftm-language-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--nftm-ice);
  border: 1px solid rgba(216, 203, 177, 0.35);
  border-radius: 999px;
  padding: 0.45rem 0.7rem;
}

.nftm-language-menu {
  min-width: 220px;
  padding: 0.45rem;
  border: 1px solid rgba(216, 203, 177, 0.16);
  background: rgba(7, 17, 31, 0.96);
  backdrop-filter: blur(14px);
}

.nftm-language-menu .dropdown-item {
  display: grid;
  grid-template-columns: 1.8rem 1fr auto;
  align-items: center;
  /* gap: 0.6rem; */
}

.nftm-language-menu .dropdown-item:hover,
.nftm-language-menu .dropdown-item.active {
  background: rgba(216, 203, 177, 0.12);
  color: var(--nftm-sand);
}

.language-flag {
  width: 22px;
  height: 22px;
  object-fit: contain;
  border-radius: 4px;
}

.language-code {
  font-weight: 600;
  color: var(--nftm-sand);
}

.language-name {
  opacity: 0.82;
}

/* Hero */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(rgba(7, 17, 31, 0.58), rgba(7, 17, 31, 0.88)),
    radial-gradient(circle at 50% 30%, rgba(216, 203, 177, 0.10), transparent 36%),
    radial-gradient(circle at 50% 70%, rgba(18, 55, 42, 0.45), transparent 48%),
    linear-gradient(135deg, #07111f 0%, #0d1b2a 55%, #12372a 100%);
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.18;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
}

.eyebrow,
.section-kicker {
  color: var(--nftm-sand);
  letter-spacing: 0.28rem;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 600;
}

.hero-title,
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
}

.hero-title {
  font-size: clamp(4rem, 10vw, 8.5rem);
  line-height: 0.86;
  letter-spacing: -0.03em;
}

.hero-subtitle {
  max-width: 640px;
  margin: 0 auto;
  color: rgba(244, 247, 245, 0.76);
  font-size: 1.08rem;
  line-height: 1.8;
}

/* Buttons */
.nftm-primary-btn,
.nftm-outline-btn {
  border-radius: 999px;
  padding: 0.85rem 1.5rem;
  font-weight: 600;
  letter-spacing: 0.03rem;
}

.nftm-primary-btn {
  background: var(--nftm-sand);
  color: var(--nftm-night);
  border: 1px solid var(--nftm-sand);
}

.nftm-primary-btn:hover {
  background: #f0e3c7;
  color: var(--nftm-night);
}

.nftm-outline-btn {
  color: var(--nftm-ice);
  border: 1px solid rgba(244, 247, 245, 0.28);
}

.nftm-outline-btn:hover {
  border-color: var(--nftm-sand);
  color: var(--nftm-sand);
}

/* Paths */
.paths-section {
  background: linear-gradient(180deg, #07111f 0%, #0d1b2a 100%);
}

.section-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
}

.path-card {
  min-height: 100%;
  padding: 2.4rem;
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(216, 203, 177, 0.12);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
  display: flex;
  flex-direction: column;
}

.path-card p {
  flex-grow: 1;
}

.path-card-link {
  display: block;
  width: 100%;
  text-decoration: none;
  color: inherit;
}

.path-card-link:hover {
  color: inherit;
}

.path-cta {
  margin-top: auto;
  color: var(--nftm-sand);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}


.path-cta::after {
  content: "→";
  display: inline-block;
  transition: transform 0.2s ease;
}

.path-card:hover .path-cta::after {
  transform: translateX(4px);
}

.path-card:hover {
  transform: translateY(-8px);
  border-color: rgba(216, 203, 177, 0.42);
  background: rgba(255, 255, 255, 0.055);
}

.path-icon {
  display: inline-block;
  font-size: 2rem;
  margin-bottom: 1.2rem;    
}

.path-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  color: var(--nftm-ice);
}

.path-card p,
.featured-text,
.footer-copy {
  color: rgba(244, 247, 245, 0.68);
  line-height: 1.8;
}

/* About */
.about-section {
  background:
    radial-gradient(circle at 20% 20%, rgba(216, 203, 177, 0.08), transparent 32%),
    linear-gradient(180deg, #0d1b2a 0%, #07111f 100%);
  border-top: 1px solid rgba(216, 203, 177, 0.08);
  border-bottom: 1px solid rgba(216, 203, 177, 0.08);
}

.about-text {
  color: rgba(244, 247, 245, 0.74);
  font-size: 1.08rem;
  line-height: 1.9;
}

/* Featured */
.featured-section {
  background:
    radial-gradient(circle at 50% 10%, rgba(216, 203, 177, 0.08), transparent 38%),
    linear-gradient(180deg, #0d1b2a 0%, #07111f 100%);
}

.featured-text {
  max-width: 560px;
}

/* Footer */
.nftm-footer {
  background: #050b14;
  border-top: 1px solid rgba(216, 203, 177, 0.08);
}

.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  color: var(--nftm-sand);
}

/* Responsive */
@media (max-width: 768px) {
  .hero-title {
    font-size: clamp(3.6rem, 18vw, 6rem);
  }

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

  .nftm-brand span {
    font-size: 0.9rem;
  }
}

.disabled-language {
  cursor: not-allowed;
  opacity: 0.62;
}

.disabled-language:hover {
  background: transparent !important;
  color: rgba(244, 247, 245, 0.78) !important;
}

.soon-badge {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 46px;
  padding: 0.18rem 0.48rem;

  border: 1px solid rgba(216, 203, 177, 0.35);
  border-radius: 999px;

  background: rgba(216, 203, 177, 0.12);
  color: var(--nftm-sand);

  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08rem;
  line-height: 1;
}

.path-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.path-card-link:hover {
  color: inherit;
}

.path-card-link .path-card {
  cursor: pointer;
}

.path-card-link:hover .path-cta::after {
  transform: translateX(4px);
}