/* ==============================================
   LANDING PAGE — NEW PAGE STYLES
   Built on theme.css tokens. Footer styles replicated
   exactly from style2.css so the footer looks identical
   to the live site.
============================================== */

:root {
  --gold: #FFD700;
}

main {
  background: var(--color-background);
  font-family: 'Inter', var(--font-family);
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  margin: 0;
}

main {
  flex: 1;
}

.ld-eyebrow {
  color: var(--color-primary-hover);
  font-weight: var(--font-semibold);
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--spacing-sm);
}

.ld-btn {
  display: inline-block;
  text-align: center;
  padding: 14px 28px;
  border-radius: var(--radius-lg);
  font-weight: var(--font-semibold);
  font-size: var(--text-base);
  text-decoration: none;
  transition: var(--transition-fast);
  cursor: pointer;
  border: none;
}

.ld-btn-primary {
  background: var(--color-dark);
  /* Fixed white, not var(--color-text-inverse) — that token flips to
     BLACK in dark mode (meant for text on light elements), but this
     button's background is always the fixed brand black regardless
     of theme, so its text must always stay white to match. */
  color: #ffffff;
}

.ld-btn-primary:hover {
  background: var(--color-primary);
  color: var(--color-dark);
}

.ld-btn-outline {
  background: var(--color-surface);
  color: var(--color-text-primary);
  border: 1.5px solid var(--color-dark);
}

.ld-btn-outline:hover {
  background: var(--color-dark);
  color: var(--color-text-inverse);
}

/* ===============================
   HERO
   =============================== */

.ld-hero {
  max-width: 1300px;
  margin: 0 auto;
  padding: 100px 24px 70px;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
  align-items: center;
}

.ld-hero-text h1 {
  font-size: var(--text-5xl);
  font-weight: var(--font-black);
  color: var(--color-text-primary);
  line-height: var(--line-height-tight);
  margin-bottom: var(--spacing-md);
  letter-spacing: -0.02em;
}

.ld-spotlight-glow {
  display: inline-block;
  position: relative;
  background: linear-gradient(
    100deg,
    #e6c200 35%,
    #fff9d6 50%,
    #e6c200 65%
  );
  background-size: 200% 100%;
  background-position: 200% 0%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow:
    0 0 20px rgba(230, 194, 0, 0.5),
    0 0 40px rgba(230, 194, 0, 0.3);
  animation: ld-spotlight-shimmer 4.5s ease-in-out infinite;
}

@keyframes ld-spotlight-shimmer {
  0% { background-position: 200% 0%; }
  60% { background-position: -100% 0%; }
  100% { background-position: -100% 0%; }
}

.ld-hero-sub {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  line-height: var(--line-height-normal);
  margin-bottom: var(--spacing-xl);
  max-width: 520px;
}

.ld-hero-ctas {
  display: flex;
  gap: 16px;
  margin-bottom: var(--spacing-md);
}

.ld-hero-micro {
  font-size: var(--text-sm);
  color: var(--color-text-faint);
}

.ld-hero-micro i {
  color: var(--color-primary-hover);
  margin-right: 4px;
}

.ld-hero-slideshow {
  position: relative;
  width: 100%;
  height: 480px;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.ld-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.ld-slide.active {
  opacity: 1;
  z-index: 1;
}

.ld-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  animation: none;
}

.ld-slide.active img {
  animation: ld-kenburns 6s ease-in-out forwards;
}

@keyframes ld-kenburns {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.08);
  }
}

.ld-slide-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 28px 32px;
  background: linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0));
  color: #ffffff;
}

.ld-slide-tag {
  display: inline-block;
  background: var(--color-primary);
  color: var(--color-dark);
  font-size: var(--text-xs);
  font-weight: var(--font-bold);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 10px;
}

.ld-slide-caption p {
  font-size: var(--text-lg);
  font-weight: var(--font-semibold);
  margin: 0;
}

.ld-slide-dots {
  position: absolute;
  bottom: 20px;
  right: 28px;
  z-index: 2;
  display: flex;
  gap: 8px;
}

.ld-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  border: none;
  cursor: pointer;
  padding: 0;
}

.ld-dot.active {
  background: var(--color-primary);
  width: 22px;
  border-radius: var(--radius-full);
}

/* ===============================
   BENEFITS
   =============================== */

.ld-benefits {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 24px;
  text-align: center;
}

.ld-benefits h2 {
  font-size: var(--text-3xl);
  font-weight: var(--font-bold);
  color: var(--color-text-primary);
  margin-bottom: 48px;
}

.ld-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.ld-benefit-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 28px 22px;
  text-align: left;
  box-shadow: var(--shadow-card);
  transition: var(--transition-normal);
}

.ld-benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.ld-benefit-card i {
  font-size: 28px;
  color: var(--color-primary-hover);
  margin-bottom: 14px;
  display: block;
}

.ld-benefit-card h3 {
  font-size: var(--text-lg);
  font-weight: var(--font-bold);
  color: var(--color-text-primary);
  margin-bottom: 8px;
}

.ld-benefit-card p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: var(--line-height-normal);
  margin: 0;
}

/* ===============================
   MOBILE APP — honest "coming soon" section
   =============================== */

.ld-app {
  max-width: 1100px;
  margin: 60px auto;
  padding: 50px 24px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-2xl);
}

.ld-app-badge {
  display: inline-block;
  background: var(--color-border-light);
  color: var(--color-text-muted);
  font-size: var(--text-xs);
  font-weight: var(--font-bold);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: var(--spacing-sm);
}

.ld-app-text h2 {
  font-size: var(--text-2xl);
  font-weight: var(--font-bold);
  color: var(--color-text-primary);
  margin-bottom: var(--spacing-sm);
}

.ld-app-text p {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: var(--line-height-normal);
  margin: 0;
}

.ld-app-phone img {
  width: 100%;
  max-width: 220px;
  display: block;
  margin: 0 auto;
}

/* ===============================
   HOW IT WORKS
   =============================== */

.ld-how {
  background: var(--color-dark);
  padding: 90px 24px;
  margin-top: 40px;
  text-align: center;
}

.ld-how h2 {
  font-size: var(--text-3xl);
  font-weight: var(--font-bold);
  color: var(--color-text-inverse);
  margin-bottom: 56px;
}

.ld-how-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.ld-how-step {
  position: relative;
  text-align: left;
}

.ld-how-step img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  margin-bottom: 20px;
}

.ld-how-number {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 32px;
  height: 32px;
  background: var(--color-primary);
  color: var(--color-dark);
  font-weight: var(--font-black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-base);
}

.ld-how-step h3 {
  font-size: var(--text-lg);
  font-weight: var(--font-bold);
  color: var(--color-text-inverse);
  margin-bottom: 8px;
}

.ld-how-step p {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.7);
  line-height: var(--line-height-normal);
  margin: 0;
}

/* ===============================
   VENDOR GROWTH
   =============================== */

.ld-growth {
  max-width: 800px;
  margin: 90px auto;
  padding: 0 24px;
  text-align: center;
}

.ld-growth h2 {
  font-size: var(--text-3xl);
  font-weight: var(--font-bold);
  color: var(--color-text-primary);
  margin-bottom: 12px;
}

.ld-growth > .ld-growth-text > p {
  color: var(--color-text-muted);
  margin-bottom: 40px;
}

.ld-growth-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: left;
  margin-bottom: 40px;
}

.ld-growth-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 20px;
}

.ld-growth-feature i {
  font-size: 22px;
  color: var(--color-primary-hover);
  margin-top: 4px;
}

.ld-growth-feature h3 {
  font-size: var(--text-base);
  font-weight: var(--font-bold);
  color: var(--color-text-primary);
  margin: 0 0 4px;
}

.ld-growth-feature p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin: 0;
}

/* ===============================
   FOOTER — replicated exactly from
   the live site's style2.css
   =============================== */

.hcontainer {
  max-width: 1300px;
  margin: auto;
  padding: 0 16px;
}

.hfooter {
  background: #000;
  color: #e5e7eb;
  padding: 90px 0 40px;
}

.hfooter-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.6fr;
  gap: 60px;
  align-items: start;
}

.hfooter-brand p {
  max-width: 280px;
  line-height: 1.6;
  color: #9ca3af;
  margin-top: 12px;
}

.hfooter-links h4,
.hfooter-support h4,
.hfooter-newsletter h4 {
  font-size: 16px;
  margin-bottom: 16px;
  color: white;
}

.hfooter-links a,
.hfooter-support a {
  display: block;
  text-decoration: none;
  color: #9ca3af;
  margin-bottom: 10px;
  font-size: 15px;
}

.hfooter-links a:hover,
.hfooter-support a:hover {
  color: white;
}

.hfooter-newsletter p {
  color: #9ca3af;
  margin-bottom: 14px;
  font-size: 14px;
}

.newsletter-form {
  display: flex;
  overflow: hidden;
  border-radius: 8px;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 14px;
  border: none;
  background: #111827;
  color: white;
}

.newsletter-form button {
  background: #eab308;
  border: none;
  padding: 12px 18px;
  font-weight: 600;
  cursor: pointer;
}

.hfooter-bottom {
  border-top: 1px solid #1f2937;
  margin-top: 50px;
  padding-top: 20px;
  padding-right: 16px;
  padding-left: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  color: #9ca3af;
  font-size: 14px;
}

.hfooter-legal a {
  margin-right: 20px;
  color: #9ca3af;
  text-decoration: none;
}

.hfooter-legal a:last-child {
  margin-right: 0;
}

.hfooter-legal a:hover {
  color: white;
}

.hfooter-partner-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffd700;
  color: #000;
  font-weight: 600;
  font-size: 13px;
  padding: 6px 12px;
  border-radius: 8px;
  text-decoration: none;
  white-space: nowrap;
  width: fit-content;
  transition: all 0.2s ease;
}

.hfooter-partner-btn:hover {
  background: #e6c200;
  color: #fff;
}

/* ===============================
   RESPONSIVE
   =============================== */

@media (max-width: 900px) {

  .ld-hero {
    grid-template-columns: 1fr;
    padding: 90px 16px 50px;
  }

  .ld-hero-text h1 { font-size: var(--text-3xl); }
  .ld-hero-ctas { flex-direction: column; }
  .ld-hero-slideshow { height: 300px; }

  .ld-benefits-grid { grid-template-columns: 1fr; }
  .ld-how-grid { grid-template-columns: 1fr; }
  .ld-app { grid-template-columns: 1fr; text-align: center; }

  .hfooter-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hfooter-bottom {
    flex-direction: column-reverse;
    align-items: center;
    gap: 6px;
    font-size: 12px;
  }

}
