/* ============================================================
   AUXIONMARKETS — Hero Section (Quiet Luxury)
   ============================================================ */

.hero {
  position: relative;
  background-color: var(--bg-surface);
  /* extremely faint noise/gradient effect for matte finish */
  background-image: radial-gradient(circle at 100% 0%, #FFFFFF 0%, var(--bg-surface) 100%);
  padding: calc(var(--nav-height) + 120px) 0 80px 0;
  overflow: hidden;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 360px; /* Thinner right column for elegant asymmetry */
  gap: 100px;
  align-items: center;
}

.hero__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  background: var(--bg-primary);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  color: var(--text-dark-secondary);
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 32px;
  letter-spacing: 0.5px;
}

.hero__title {
  font-size: clamp(48px, 6vw, var(--text-3xl));
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
  color: var(--text-dark);
}

.hero__subtitle {
  font-size: var(--text-lg);
  color: var(--text-muted);
  margin-bottom: 48px;
  line-height: 1.6;
  max-width: 500px;
}

.hero__cta {
  display: flex;
  gap: 16px;
}

/* ── Vertical Floating Widget (Right Side) ──────────────── */
.hero__widget {
  background: transparent;
  width: 100%;
}

.widget-header {
  padding: 0 0 16px 0;
  border-bottom: 1px solid var(--border-faint);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.widget-title {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
}

.view-all-link-hero {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dark);
}
.view-all-link-hero:hover { color: var(--accent); }

.widget-list {
  display: flex;
  flex-direction: column;
}

.widget-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-faint);
}
.widget-row:last-child {
  border-bottom: none;
}

.w-pair {
  display: flex;
  align-items: center;
  gap: 16px;
}

.w-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.w-name { font-weight: 600; color: var(--text-dark); font-size: var(--text-sm); letter-spacing: 0.5px;}
.w-sub { font-size: 12px; color: var(--text-light); }

.w-prices {
  text-align: right;
}
.w-bid { 
  font-weight: 500; 
  font-family: var(--font-number); 
  font-variant-numeric: tabular-nums; 
  font-size: 15px; 
  color: var(--text-dark); 
  letter-spacing: -0.02em;
  transition: color 0.3s ease;
}
.w-chg { font-size: 12px; font-weight: 500; margin-top: 2px; font-family: var(--font-number); letter-spacing: -0.01em; }
.w-chg.up { color: var(--profit); }
.w-chg.down { color: var(--loss); }

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 360px; /* Thinner right column for elegant asymmetry */
  gap: 100px;
  align-items: center;
  position: relative;
  z-index: 5; /* Stronger stacking than decor */
}

/* ... content omitted ... */

/* ── 3D Decorative Floating Elements ──────────────── */
.decor-3d {
  position: absolute;
  filter: drop-shadow(0 20px 40px rgba(0, 82, 255, 0.15));
  user-select: none;
  animation: floating 6s ease-in-out infinite;
  z-index: 0; /* Above background, below hero__inner */
  opacity: 0.9;
}

.decor-3d--1 {
  width: 140px;
  top: 15%;
  left: 2%; 
  animation-delay: 0s;
}

.decor-3d--2 {
  width: 120px;
  bottom: 4%;
  right: 2%; 
  animation-delay: -2s;
  animation-duration: 8s;
}

.decor-3d--3 {
  width: 90px;
  top: 10%;
  right: 12%;
  opacity: 0.7;
  animation-delay: -4s;
}

@keyframes floating {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(3deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

@media (max-width: 992px) {
  .hero { padding: calc(var(--nav-height) + 40px) 0 60px; }
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__content { align-items: center; text-align: center; }
  .hero__title { font-size: 38px; line-height: 1.1; }
  .hero__subtitle { font-size: 16px; margin-bottom: 32px; }
  .hero__widget { max-width: 440px; margin: 0 auto; width: 100%; border-radius: 16px; }
  
  /* Hide 3D assets on mobile for clean UX */
  .decor-3d--1, .decor-3d--2, .decor-3d--3 { display: none; }
}

@media (max-width: 480px) {
  .hero { padding: calc(var(--nav-height) + 32px) 0 40px; }
  .hero__title { font-size: 32px; }
}
