/* VeWe Street Vertex — orange / amber commercial retail theme */

:root {
  --color-primary: #e85d22;
  --color-primary-dark: #ca4c18;
  --color-primary-light: #ff7a38;
  --color-primary-glow: rgba(232, 93, 34, 0.42);
  --color-surface-dark: #050308;
  --color-surface-warm: #120705;
  --color-accent: #f4c14a;
  --saffron: #e85d22;
  --saffron-dark: #ca4c18;
  --saffron-glow: rgba(232, 93, 34, 0.48);
  --forest: #e85d22;
  --forest-dark: #ca4c18;
  --forest-glow: rgba(232, 93, 34, 0.35);
  --forest-light: #f4c14a;
  --wv-gold: #f4c14a;
  --wv-maroon: #9c1f32;
  --wv-void: #050308;
  --wv-title-gradient: linear-gradient(
    95deg,
    var(--wv-gold) 0%,
    var(--color-primary-light) 35%,
    var(--color-primary) 55%,
    var(--wv-maroon) 100%
  );
}

.hero {
  background: var(--wv-void);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../images/hero_image.JPEG') center center / cover no-repeat;
  opacity: 1 !important;
  filter: none;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(156, 31, 50, 0.42) 0%,
    rgba(232, 93, 34, 0.28) 38%,
    rgba(5, 3, 6, 0.72) 72%,
    rgba(5, 3, 6, 0.92) 100%
  ) !important;
}

.hero .hero-title {
  color: #fffaf4;
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  -webkit-text-fill-color: #fffaf4;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
  margin-bottom: 20px !important;
}

.hero .hero-title::after {
  width: 64px;
  margin-top: 14px;
  background: linear-gradient(90deg, transparent, var(--wv-gold), transparent);
}

/* —— Hero home redesign (logo + h1 preserved) —— */
.hero--vewe {
  min-height: 100svh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 48px;
}

.hero--vewe .hero-content {
  max-width: min(560px, 94vw) !important;
  padding-top: 108px !important;
  padding-bottom: 56px !important;
}

.hero-ornament {
  position: absolute;
  width: clamp(120px, 28vw, 220px);
  height: clamp(120px, 28vw, 220px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 193, 74, 0.22) 0%, rgba(232, 93, 34, 0.08) 45%, transparent 70%);
  pointer-events: none;
  z-index: 1;
  opacity: 0.75;
}

.hero-ornament--tl {
  top: 8%;
  left: -6%;
}

.hero-ornament--br {
  bottom: 6%;
  right: -8%;
  transform: rotate(180deg);
}

.hero-panel {
  width: 100%;
  text-align: center;
  padding: 22px 20px 18px;
  border-radius: 22px;
  background: linear-gradient(165deg, rgba(156, 31, 50, 0.92) 0%, rgba(200, 55, 28, 0.88) 42%, rgba(232, 93, 34, 0.82) 100%);
  border: 1px solid rgba(244, 193, 74, 0.28);
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
}

.hero-panel-eyebrow {
  margin: 0 0 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: rgba(255, 248, 240, 0.78);
}

.hero-band {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 10px 14px;
  border-radius: 10px;
  margin-bottom: 16px;
}

.hero-band--gold {
  background: linear-gradient(90deg, #f4c14a 0%, #ffd86a 50%, #f4c14a 100%);
  box-shadow: 0 4px 14px rgba(244, 193, 74, 0.35);
}

.hero-band--gold span {
  font-size: clamp(12px, 3.2vw, 14px);
  font-weight: 700;
  line-height: 1.35;
  color: #1a0a04;
}

.hero-band--payment {
  background: rgba(5, 3, 6, 0.55);
  border: 2px solid var(--wv-gold);
  box-shadow: 0 4px 18px rgba(244, 193, 74, 0.28);
}

.hero-band--payment span {
  font-size: clamp(15px, 4vw, 20px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--wv-gold);
}

.hero-band--narrow {
  margin-top: 14px;
  margin-bottom: 0;
  min-height: 36px;
  padding: 8px 12px;
}

.hero-band--narrow span {
  font-size: 11px;
  font-weight: 600;
  line-height: 1.4;
}

.hero-panel-loc {
  margin: 0 0 18px;
  font-size: clamp(14px, 3.6vw, 16px);
  line-height: 1.55;
  color: rgba(255, 250, 244, 0.92);
  font-weight: 400;
}

.hero-panel-loc strong {
  color: #fff;
  font-weight: 700;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 16px;
}

.hero-stats--single {
  grid-template-columns: 1fr;
  max-width: 280px;
  margin-left: auto;
  margin-right: auto;
}

.hero-stat {
  padding: 12px 8px 10px;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat-val {
  display: block;
  font-size: clamp(18px, 4.8vw, 24px);
  font-weight: 800;
  line-height: 1.1;
  color: #fffaf4;
  letter-spacing: -0.02em;
}

.hero-stat-val sup {
  font-size: 0.55em;
  font-weight: 700;
  opacity: 0.85;
}

.hero-stat-lbl {
  display: block;
  margin-top: 6px;
  font-size: 10px;
  line-height: 1.35;
  font-weight: 500;
  color: rgba(255, 248, 240, 0.72);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 18px;
}

.hero-trust-chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 11px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 250, 244, 0.92);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(244, 193, 74, 0.25);
}

.hero-panel-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-cta-primary {
  width: 100%;
  justify-content: center;
  border-radius: 12px !important;
  font-size: 15px !important;
  padding: 16px 20px !important;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
}

.hero-panel-rera {
  margin: 14px 0 0;
  font-size: 10px;
  line-height: 1.45;
  color: rgba(255, 248, 240, 0.62);
}

.hero-scroll-hint {
  position: absolute;
  left: 50%;
  bottom: max(18px, env(safe-area-inset-bottom));
  transform: translateX(-50%);
  z-index: 3;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: rgba(255, 248, 240, 0.72);
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.hero-scroll-hint:hover {
  color: var(--wv-gold);
  transform: translateX(-50%) translateY(2px);
}

.hero-scroll-hint svg {
  animation: hero-scroll-bob 1.8s ease-in-out infinite;
}

@keyframes hero-scroll-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}

@media (max-width: 520px) {
  .hero--vewe .hero-content {
    padding-top: 96px !important;
  }

  .hero-panel {
    padding: 18px 14px 16px;
    border-radius: 18px;
  }

  .hero-stats {
    gap: 8px;
  }

  .hero-stat {
    padding: 10px 6px 8px;
  }

  .hero-stat-lbl {
    font-size: 9px;
  }

  .hero-ornament {
    opacity: 0.45;
  }
}

/* Orange primary buttons — white text + icons (exclude white variant) */
.btn-primary:not(.btn-white),
.form-submit,
.sticky-cta-btn,
.rhythm-float,
.promo-unmute-btn {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

.btn-primary:not(.btn-white):hover,
.form-submit:hover,
.sticky-cta-btn:hover,
.rhythm-float:hover,
.promo-unmute-btn:hover {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

.btn-primary:not(.btn-white) svg,
.form-submit svg,
.sticky-cta-btn svg,
.rhythm-float svg,
.promo-unmute-btn svg {
  stroke: #ffffff !important;
  color: #ffffff !important;
}

.rhythm-float-waves span {
  background: #ffffff !important;
}

.unlock-price-card:hover .unlock-price-cta-text {
  color: #ffffff !important;
}

.type-v2-cta:hover {
  color: #ffffff !important;
}

.type-v2-cta:hover svg {
  stroke: #ffffff !important;
}

.form-logo,
.footer-logo-img {
  filter: none !important;
  opacity: 1 !important;
}

.hero .hero-logo,
.hero-logo {
  width: auto !important;
  max-width: min(440px, 92vw) !important;
  max-height: clamp(144px, 28vw, 220px) !important;
  height: auto !important;
  object-fit: contain !important;
  margin-left: auto !important;
  margin-right: auto !important;
  margin-bottom: 22px !important;
  filter: brightness(0) invert(1) !important;
  opacity: 1 !important;
}

.nav-project-logo-img {
  height: 34px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
}

.red-band {
  height: 56px;
  background: var(--color-primary);
  width: 100%;
}

@media (max-width: 600px) {
  .red-band { height: 40px; }
}

.stats-banner {
  background: var(--color-surface-dark);
}

.stats-banner-eyebrow {
  color: var(--wv-gold);
}

.sb-value {
  color: #fffaf4;
}

.footer-partners {
  display: none;
}

.promo-video-section {
  background: linear-gradient(180deg, rgba(232, 93, 34, 0.08), rgba(5, 3, 6, 0.3));
}
