/* ============================================
   URServio — Coming Soon Landing Page
   ============================================ */

:root {
  --charcoal: #2B2E28;
  --gold: #C9A96E;
  --gold-light: #D9BC8E;
  --gold-dark: #A88B4E;
  --beige: #E8DDD0;
  --black-c: #2D2926;
  --black: var(--black-c);
  --white: var(--beige);
  --gray: rgba(232, 221, 208, 0.65);
  --gray-dark: var(--charcoal);
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  background-color: var(--charcoal);
  color: var(--white);
  font-family: var(--font-sans);
  overflow-x: hidden;
  min-height: 100vh;
}

/* ---- Background ---- */

.bg-grid {
  position: fixed;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridShift 20s linear infinite;
  pointer-events: none;
}

.bg-glow-wrap {
  position: fixed;
  bottom: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 400px;
  z-index: 0;
  pointer-events: none;
  will-change: transform;
}

.bg-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse, rgba(201, 169, 110, 0.18) 0%, transparent 70%);
  animation: glowPulse 4s ease-in-out infinite;
}

@keyframes gridShift {
  0%   { background-position: 0 0; }
  100% { background-position: 60px 60px; }
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50%      { opacity: 1;   transform: scale(1.08); }
}

@keyframes sectionGlowPulse {
  0%, 100% { opacity: 0.65; }
  50%      { opacity: 1; }
}

/* ---- Navbar ---- */

.navbar {
  z-index: 100;
  padding: 1.25rem 0;
  background: transparent;
  transition: background 0.3s ease, padding 0.3s ease;
}

.navbar.scrolled {
  background: rgba(43, 46, 40, 0.92);
  backdrop-filter: blur(12px);
  padding: 0.75rem 0;
}

.navbar-brand {
  padding: 0;
  transition: opacity 0.3s ease;
}

.navbar-brand:hover {
  opacity: 0.85;
}

.brand-logo-img {
  display: block;
  height: 48px;
  width: auto;
  max-width: 260px;
  object-fit: contain;
}

.brand-logo-img--footer {
  height: 58px;
  max-width: 300px;
}

.navbar-toggler {
  border-color: rgba(201, 169, 110, 0.4);
  padding: 0.35rem 0.6rem;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28201, 169, 110, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.nav-link {
  color: var(--gray) !important;
  font-size: 0.875rem;
  font-weight: 400;
  padding: 0.5rem 1rem !important;
  position: relative;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease, left 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--white) !important;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 60%;
  left: 20%;
}

/* ---- Hero ---- */

.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  padding: 8rem 1rem 4rem;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.25rem;
  border: 1px solid rgba(201, 169, 110, 0.5);
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
}

.badge-dot {
  opacity: 0.6;
}

/* Title */
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.title-line {
  display: block;
}

.title-white {
  color: var(--white);
}

.title-gold {
  color: var(--gold);
  font-style: italic;
}

/* Subtitle */
.hero-subtitle {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  font-weight: 300;
  color: var(--gray);
  margin-bottom: 3rem;
  letter-spacing: 0.01em;
}

/* CTA */
.hero-cta-wrapper {
  position: relative;
  display: inline-block;
}

.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 320px;
  height: 80px;
  background: radial-gradient(ellipse, rgba(201, 169, 110, 0.55) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(20px);
  z-index: 0;
  animation: ctaGlowPulse 3s ease-in-out infinite;
}

@keyframes ctaGlowPulse {
  0%, 100% { opacity: 0.7; transform: translate(-50%, -50%) scale(1); }
  50%      { opacity: 1;   transform: translate(-50%, -50%) scale(1.15); }
}

/* Buttons */
.btn-notify {
  position: relative;
  z-index: 1;
  background: var(--gold);
  color: var(--black);
  border: none;
  font-family: var(--font-sans);
  font-weight: 600;
  border-radius: 50px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  box-shadow: 0 0 30px rgba(201, 169, 110, 0.35);
}

.btn-notify:hover,
.btn-notify:focus {
  background: var(--gold-light);
  color: var(--black);
  transform: scale(1.05);
  box-shadow: 0 0 50px rgba(201, 169, 110, 0.55);
}

.btn-notify-sm {
  font-size: 0.8rem;
  padding: 0.4rem 1.25rem;
}

.btn-notify-lg {
  font-size: 1rem;
  padding: 0.85rem 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.btn-notify-lg i {
  font-size: 1rem;
}

/* ---- Entrance Animations ---- */

.animate-item {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.title-line {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.title-line.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Section 2: Customer Problems ---- */

.customers-section {
  position: relative;
  z-index: 1;
  padding: 6rem 1rem 8rem;
  overflow: hidden;
}

.customers-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(201, 169, 110, 0.12) 0%, rgba(180, 100, 40, 0.06) 40%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  animation: sectionGlowPulse 7s ease-in-out infinite;
  will-change: transform, opacity;
}

.customers-section .container {
  position: relative;
  z-index: 1;
}

.section-label {
  text-align: center;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.section-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.35rem, 5.5vw, 3.85rem);
  font-weight: 600;
  text-align: center;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 3.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.headline-gold {
  background: linear-gradient(135deg, #C9A96E 0%, #E8DDD0 50%, #A88B4E 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.problem-cards {
  max-width: 1060px;
  margin: 0 auto;
}

.problem-card {
  background: #2D2926;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 2rem 2.25rem;
  height: 100%;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.4s ease, box-shadow 0.4s ease, transform 0.4s ease;
  cursor: default;
}

.problem-card:hover {
  border-color: rgba(201, 169, 110, 0.45);
  box-shadow:
    0 0 25px rgba(201, 169, 110, 0.1),
    0 12px 40px rgba(0, 0, 0, 0.4);
  transform: translateY(-5px);
}

.problem-card-wide {
  min-height: 180px;
}

.card-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}

.card-body-inner {
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
  gap: 1.5rem;
}

.card-headline {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.4;
  margin: 0;
}

.card-text {
  font-size: 0.85rem;
  font-weight: 400;
  color: rgba(232, 221, 208, 0.85);
  line-height: 1.65;
  margin: 0;
  margin-top: auto;
}

/* ---- Section 3: Rider Problems ---- */

.riders-section {
  position: relative;
  z-index: 1;
  padding: 6rem 1rem 8rem;
  overflow: hidden;
}

.riders-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(201, 169, 110, 0.1) 0%, rgba(168, 139, 78, 0.05) 45%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  animation: sectionGlowPulse 7s ease-in-out infinite;
  animation-delay: 1.5s;
  will-change: transform, opacity;
}

.riders-section .container {
  position: relative;
  z-index: 1;
}

.rider-cards {
  max-width: 960px;
  margin: 0 auto;
}

.rider-card {
  background: #2D2926;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 2.25rem 2.5rem;
  height: 100%;
  min-height: 280px;
  transition: border-color 0.4s ease, box-shadow 0.4s ease, transform 0.4s ease;
}

.rider-card:hover {
  border-color: rgba(201, 169, 110, 0.4);
  box-shadow:
    0 0 25px rgba(201, 169, 110, 0.08),
    0 12px 40px rgba(0, 0, 0, 0.35);
  transform: translateY(-5px);
}

.rider-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(201, 169, 110, 0.15);
  border: 1px solid rgba(201, 169, 110, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.rider-icon svg {
  color: var(--gold);
}

.rider-card-title {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2.2vw, 1.5rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.35;
  margin-bottom: 1.75rem;
}

.rider-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.rider-list li {
  position: relative;
  padding-left: 1.1rem;
  margin-bottom: 0.65rem;
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1.5;
}

.rider-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

.rider-card-text {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1.65;
  margin: 0;
}

/* ---- Section 4: Seller Problems ---- */

.sellers-section {
  position: relative;
  z-index: 1;
  padding: 6rem 1rem 8rem;
  overflow: hidden;
}

.sellers-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(201, 169, 110, 0.1) 0%, rgba(168, 139, 78, 0.05) 45%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  animation: sectionGlowPulse 7s ease-in-out infinite;
  animation-delay: 3s;
  will-change: transform, opacity;
}

.sellers-section .container {
  position: relative;
  z-index: 1;
}

.seller-cards {
  max-width: 960px;
  margin: 0 auto;
}

.seller-card {
  background: #2D2926;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 2.25rem 2.5rem;
  height: 100%;
  min-height: 280px;
  transition: border-color 0.4s ease, box-shadow 0.4s ease, transform 0.4s ease;
}

.seller-card:hover {
  border-color: rgba(201, 169, 110, 0.4);
  box-shadow:
    0 0 25px rgba(201, 169, 110, 0.08),
    0 12px 40px rgba(0, 0, 0, 0.35);
  transform: translateY(-5px);
}

.seller-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(201, 169, 110, 0.15);
  border: 1px solid rgba(201, 169, 110, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.seller-card-title {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2.2vw, 1.5rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.35;
  margin-bottom: 1.25rem;
}

.seller-card-text {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.seller-card-text strong {
  color: var(--white);
  font-weight: 600;
}

.seller-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.seller-list li {
  position: relative;
  padding-left: 1.1rem;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--gray);
  line-height: 1.55;
}

.seller-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(232, 221, 208, 0.6);
}

.seller-card .seller-card-text:last-child {
  margin-bottom: 0;
}

/* ---- Section 5: Closing ---- */

.closing-section {
  position: relative;
  z-index: 1;
  padding: 7rem 1rem 8rem;
  overflow: hidden;
}

.closing-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1000px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(201, 169, 110, 0.14) 0%, rgba(180, 100, 40, 0.06) 45%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  animation: sectionGlowPulse 6s ease-in-out infinite;
  will-change: transform, opacity;
}

.closing-section .container {
  position: relative;
  z-index: 1;
}

.closing-content {
  max-width: 900px;
  margin: 0 auto;
}

.closing-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 1.25rem;
  border: 1px solid rgba(201, 169, 110, 0.5);
  border-radius: 50px;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2.5rem;
}

.closing-headline {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 700;
  color: #f5f0e6;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.closing-subline {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 400;
  color: var(--gold);
  margin-bottom: 2.5rem;
  letter-spacing: 0.02em;
}

.closing-buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.btn-closing-notify {
  font-size: 0.875rem;
  padding: 0.65rem 1.75rem;
  box-shadow: 0 0 25px rgba(201, 169, 110, 0.35);
  transition: transform 0.25s ease, box-shadow 0.35s ease, background 0.35s ease;
}

.closing-role-btn {
  position: relative;
  overflow: hidden;
}

.closing-role-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.35) 0%, transparent 70%);
  opacity: 0;
  transform: scale(0);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
}

.closing-role-btn.btn-pressed::after {
  opacity: 1;
  transform: scale(2.5);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.closing-role-btn.btn-pressed {
  transform: scale(0.96);
}

.btn-closing-notify.btn-pressed,
.btn-closing-notify.active {
  box-shadow:
    0 0 35px rgba(201, 169, 110, 0.55),
    0 0 70px rgba(201, 169, 110, 0.2);
}

.btn-closing-ghost {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.65rem 1.5rem;
  border-radius: 50px;
  border: 1px solid rgba(201, 169, 110, 0.45);
  background: transparent;
  color: #f5f0e6;
  text-decoration: none;
  transition: border-color 0.35s ease, background 0.35s ease, color 0.35s ease, transform 0.25s ease, box-shadow 0.35s ease;
}

.btn-closing-ghost:hover {
  border-color: var(--gold);
  background: rgba(201, 169, 110, 0.08);
  color: var(--gold-light);
  transform: translateY(-2px);
}

.btn-closing-ghost.active {
  background: linear-gradient(135deg, #C9A96E 0%, #E8DDD0 50%, #A88B4E 100%);
  border-color: var(--gold);
  color: var(--black);
  font-weight: 600;
  transform: translateY(-2px);
  box-shadow:
    0 0 40px rgba(201, 169, 110, 0.65),
    0 0 80px rgba(201, 169, 110, 0.25),
    0 4px 20px rgba(0, 0, 0, 0.3);
  animation: btnGlowIn 0.45s ease forwards;
}

@keyframes btnGlowIn {
  0% {
    box-shadow: 0 0 10px rgba(201, 169, 110, 0.2);
    transform: scale(0.95);
  }
  60% {
    box-shadow:
      0 0 50px rgba(201, 169, 110, 0.75),
      0 0 90px rgba(201, 169, 110, 0.3);
    transform: scale(1.03);
  }
  100% {
    box-shadow:
      0 0 40px rgba(201, 169, 110, 0.65),
      0 0 80px rgba(201, 169, 110, 0.25);
    transform: translateY(-2px) scale(1);
  }
}

.closing-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1.25rem;
  border: 1px solid rgba(201, 169, 110, 0.35);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.02em;
}

.trust-badge i {
  font-size: 0.85rem;
}

/* ---- Section 6: One Platform, Three Worlds ---- */

.worlds-section {
  position: relative;
  z-index: 1;
  padding: 6rem 1rem 8rem;
  overflow: hidden;
}

.worlds-glow {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(201, 169, 110, 0.08) 0%, rgba(168, 139, 78, 0.04) 45%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  animation: sectionGlowPulse 8s ease-in-out infinite;
  animation-delay: 2s;
  will-change: transform, opacity;
}

.worlds-section .container {
  position: relative;
  z-index: 1;
}

.section-label-left {
  text-align: left;
  margin-bottom: 1.25rem;
}

.worlds-header {
  max-width: 640px;
  margin-bottom: 3rem;
}

.worlds-headline {
  font-family: var(--font-sans);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.worlds-headline .headline-gold {
  font-family: var(--font-serif);
  font-weight: 700;
  font-style: italic;
}

.worlds-desc {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--gray);
  line-height: 1.7;
  margin: 0;
  max-width: 520px;
}

.worlds-cards {
  max-width: 1100px;
  margin: 0 auto;
}

.world-card {
  background: rgba(45, 41, 38, 0.9);
  border: 1px solid rgba(201, 169, 110, 0.12);
  border-radius: 16px;
  padding: 2rem 2rem 2.25rem;
  height: 100%;
  transition: border-color 0.4s ease, box-shadow 0.4s ease, transform 0.4s ease;
}

.world-card:hover {
  border-color: rgba(201, 169, 110, 0.35);
  box-shadow: 0 8px 35px rgba(0, 0, 0, 0.3);
  transform: translateY(-4px);
}

.world-icon {
  color: var(--gold);
  font-size: 1.15rem;
  margin-bottom: 1.25rem;
}

.world-card-title {
  font-family: var(--font-sans);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.85rem;
}

.world-card-text {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--gray);
  line-height: 1.65;
  margin: 0;
}

/* Scroll reveal */
.scroll-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.scroll-reveal--left {
  transform: translateX(-40px);
}

.scroll-reveal--left.revealed {
  transform: translateX(0);
}

.scroll-reveal--right {
  transform: translateX(40px);
}

.scroll-reveal--right.revealed {
  transform: translateX(0);
}

.scroll-reveal--scale {
  transform: translateY(30px) scale(0.96);
}

.scroll-reveal--scale.revealed {
  transform: translateY(0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .scroll-reveal,
  .animate-item,
  .title-line {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .bg-grid,
  .bg-glow,
  .customers-glow,
  .riders-glow,
  .sellers-glow,
  .closing-glow,
  .worlds-glow,
  .cta-glow {
    animation: none;
  }
}

/* ---- Footer ---- */

.site-footer {
  position: relative;
  z-index: 2;
  background-color: #2D2926;
  padding: 5rem 1rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  isolation: isolate;
}

.site-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  background-color: #2D2926;
  z-index: -1;
}

.footer-main {
  margin-bottom: 3rem;
}

.footer-logo {
  display: inline-block;
  text-decoration: none;
  margin-bottom: 0.5rem;
  transition: opacity 0.3s ease;
}

.footer-logo:hover {
  opacity: 0.9;
}

.footer-tagline {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.footer-desc {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 320px;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.9rem;
  text-decoration: none;
  transition: border-color 0.3s ease, color 0.3s ease, background 0.3s ease;
}

.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 169, 110, 0.08);
}

.footer-heading {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.65rem;
}

.footer-links a {
  font-size: 0.9rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-news-text {
  font-size: 0.875rem;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.footer-email-form {
  max-width: 380px;
  margin-bottom: 1.25rem;
}

.footer-email-row {
  display: flex;
}

.footer-email-input {
  flex: 1;
  background: #2D2926;
  border: 1px solid rgba(201, 169, 110, 0.2);
  border-right: none;
  border-radius: 8px 0 0 8px;
  padding: 0.7rem 1rem;
  font-size: 0.875rem;
  color: var(--white);
  outline: none;
  transition: border-color 0.3s ease;
}

.footer-email-input::placeholder {
  color: rgba(232, 221, 208, 0.6);
}

.footer-email-input:focus {
  border-color: rgba(201, 169, 110, 0.4);
}

.footer-email-input.is-invalid {
  border-color: #dc3545;
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.15);
}

.footer-field-error {
  color: #ff8a8a;
  font-size: 0.8rem;
  margin-top: 0.35rem;
}

.footer-email-btn {
  background: var(--gold);
  border: none;
  border-radius: 0 8px 8px 0;
  padding: 0 1.1rem;
  color: var(--black);
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.footer-email-btn:hover {
  background: var(--gold-light);
}

.footer-email-success {
  font-size: 0.85rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.footer-email-success i {
  margin-right: 0.35rem;
}

.footer-cert-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.footer-cert {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-cert i {
  color: var(--gold);
  font-size: 0.75rem;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-copyright {
  font-size: 0.8rem;
  color: rgba(232, 221, 208, 0.8);
  margin: 0;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  font-size: 0.8rem;
  color: rgba(232, 221, 208, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: var(--gold);
}

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 200;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: var(--gold);
  color: var(--black);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 20px rgba(201, 169, 110, 0.3);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  box-shadow: 0 4px 30px rgba(201, 169, 110, 0.55);
  transform: translateY(-3px);
}

/* ---- Join Modal ---- */

.modal-backdrop.show {
  opacity: 0.85;
}

.join-modal-content {
  background: #2B2E28;
  border: 1px solid rgba(201, 169, 110, 0.3);
  border-radius: 16px;
  color: var(--white);
  box-shadow: 0 0 60px rgba(201, 169, 110, 0.12);
}

.join-modal-content .modal-header {
  padding: 1.75rem 1.75rem 0.5rem;
  align-items: flex-start;
}

.join-modal-content .modal-body {
  padding: 0.5rem 1.75rem 1.75rem;
}

.join-modal-title {
  font-family: var(--font-serif);
  color: var(--gold);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.join-modal-subtitle {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.55;
  margin: 0;
  max-width: 340px;
}

.join-modal-close {
  background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23d4a853'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e") center/0.85em auto no-repeat;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.join-modal-close:hover {
  opacity: 1;
}

.join-form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.join-form-input,
.form-control.join-form-input {
  background: #1e1c18;
  border: 1px solid rgba(201, 169, 110, 0.15);
  color: var(--white);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
}

.join-form-input::placeholder {
  color: rgba(232, 221, 208, 0.55);
}

.join-form-input:focus {
  background: #1e1c18;
  border-color: rgba(201, 169, 110, 0.4);
  color: var(--white);
  box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.1);
}

.join-submit-btn {
  padding: 0.8rem 1.5rem;
  font-size: 0.95rem;
  box-shadow: 0 0 25px rgba(201, 169, 110, 0.3);
}

.join-submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.join-form-input.is-invalid {
  border-color: #dc3545;
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.15);
}

.join-field-error {
  color: #ff8a8a;
  font-size: 0.8rem;
  margin-top: 0.35rem;
}

.join-form-error {
  background: rgba(220, 53, 69, 0.12);
  border: 1px solid rgba(220, 53, 69, 0.35);
  color: #ff8a8a;
  font-size: 0.85rem;
  padding: 0.65rem 0.85rem;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.success-msg {
  margin-top: 1rem;
  color: var(--gold);
  font-size: 0.9rem;
  text-align: center;
}

.success-msg i {
  margin-right: 0.4rem;
}

/* ---- Responsive ---- */

@media (max-width: 991px) {
  .navbar-collapse {
    background: rgba(43, 46, 40, 0.98);
    border: 1px solid rgba(201, 169, 110, 0.15);
    border-radius: 12px;
    padding: 1rem;
    margin-top: 0.75rem;
  }

  .nav-link::after {
    display: none;
  }

  .hero {
    padding-top: 7rem;
  }
}

@media (max-width: 576px) {
  .hero-badge {
    font-size: 0.62rem;
    padding: 0.4rem 1rem;
  }

  .btn-notify-lg {
    font-size: 0.9rem;
    padding: 0.75rem 1.5rem;
  }

  .cta-glow {
    width: 260px;
  }

  .customers-section {
    padding: 4rem 1rem 6rem;
  }

  .section-headline {
    margin-bottom: 2.5rem;
  }

  .problem-card {
    padding: 1.5rem 1.25rem;
    min-height: auto;
  }

  .problem-card-wide {
    min-height: auto;
  }

  .riders-section {
    padding: 4rem 1rem 6rem;
  }

  .rider-card {
    padding: 1.75rem 1.5rem;
    min-height: auto;
  }

  .sellers-section {
    padding: 4rem 1rem 6rem;
  }

  .seller-card {
    padding: 1.75rem 1.5rem;
    min-height: auto;
  }

  .closing-section {
    padding: 5rem 1rem 6rem;
  }

  .closing-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-closing-notify,
  .btn-closing-ghost {
    width: 100%;
    text-align: center;
  }

  .closing-badges {
    flex-direction: column;
  }

  .worlds-section {
    padding: 4rem 1rem 6rem;
  }

  .worlds-header {
    margin-bottom: 2rem;
  }

  .site-footer {
    padding: 3.5rem 1rem 1.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-legal {
    flex-direction: column;
    gap: 0.5rem;
  }

  .footer-email-form {
    max-width: 100%;
  }
}

/* ---- Static / Legal Pages ---- */

.static-page {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  padding: 8rem 1rem 4rem;
}

.static-page-glow {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(201, 169, 110, 0.1) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  animation: sectionGlowPulse 7s ease-in-out infinite;
}

.static-page .container {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.static-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--gold);
  text-decoration: none;
  margin-bottom: 2rem;
  transition: opacity 0.3s ease;
}

.static-back-link:hover {
  opacity: 0.8;
  color: var(--gold-light);
}

.static-page-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.static-page-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.static-page-updated {
  font-size: 0.85rem;
  color: rgba(232, 221, 208, 0.8);
  margin-bottom: 0.5rem;
}

.static-page-notice {
  font-size: 0.8rem;
  color: rgba(201, 169, 110, 0.85);
  font-style: italic;
  margin-bottom: 2.5rem;
  line-height: 1.5;
}

.static-content {
  background: rgba(45, 41, 38, 0.6);
  border: 1px solid rgba(201, 169, 110, 0.15);
  border-radius: 16px;
  padding: 2.5rem;
}

.static-content h2 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--white);
  margin: 2rem 0 0.75rem;
}

.static-content h2:first-child {
  margin-top: 0;
}

.static-content p,
.static-content li {
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(232, 221, 208, 0.95);
  margin-bottom: 1rem;
}

.static-content ul {
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}

.static-content a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.3s ease;
}

.static-content a:hover {
  color: var(--gold-light);
}

.contact-cards {
  display: grid;
  gap: 1.25rem;
  margin-top: 0.5rem;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: rgba(45, 41, 38, 0.55);
  border: 1px solid rgba(201, 169, 110, 0.12);
  border-radius: 12px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
  border-color: rgba(201, 169, 110, 0.35);
  box-shadow: 0 0 24px rgba(201, 169, 110, 0.08);
}

.contact-card-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(201, 169, 110, 0.12);
  color: var(--gold);
  font-size: 1.15rem;
}

.contact-card-title {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.35rem;
}

.contact-card-text {
  font-size: 0.95rem;
  color: var(--white);
  margin: 0;
  line-height: 1.5;
}

.contact-card-text a {
  color: var(--white);
}

.contact-card-text a:hover {
  color: var(--gold);
}

@media (max-width: 767.98px) {
  .static-page {
    padding: 7rem 1rem 3rem;
  }

  .static-content {
    padding: 1.5rem;
  }
}
