/* =========================================
   ResellMint Landing Page — Custom Theme
   ========================================= */

:root {
  --bg-primary: #FAFAF8;
  --bg-surface: #FFFFFF;
  --bg-dark: #0A1628;
  --text-primary: #0A1628;
  --text-secondary: #4A5568;
  --text-muted: #94A3B8;
  --accent: #0D9F6E;
  --accent-hover: #0B8F62;
  --accent-light: #E8FAF3;
  --gold: #F5A623;
  --gold-light: #FFF8E6;
  --indigo: #6366F1;
  --indigo-light: #EEF2FF;
  --purple: #7C3AED;
  --purple-light: #F0F0FF;
  --border: #E2E8F0;
  --card-radius: 16px;
  --section-pad: 80px;
  --font-heading: 'Sora', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ---- Navbar ---- */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  background: rgba(250, 250, 248, 0.9);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-brand {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--text-primary);
}
.nav-tagline {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ---- Hero ---- */
.hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 80px 48px 100px;
  position: relative;
  overflow: hidden;
  background: var(--bg-primary);
}
.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.shape-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
}
.shape-1 {
  width: 600px;
  height: 600px;
  background: var(--accent);
  top: -100px;
  right: -150px;
}
.shape-2 {
  width: 350px;
  height: 350px;
  background: var(--gold);
  bottom: 60px;
  right: 80px;
}
.shape-diamond {
  position: absolute;
  width: 120px;
  height: 120px;
  background: var(--indigo);
  transform: rotate(45deg);
  top: 30%;
  right: 25%;
  opacity: 0.06;
}
.hero-content {
  max-width: 780px;
  position: relative;
  z-index: 2;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-light);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 32px;
  letter-spacing: 0.02em;
}
.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.4); }
}
.hero-headline {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: 28px;
  letter-spacing: -0.03em;
}
.headline-accent {
  color: var(--accent);
}
.hero-sub {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.75;
  margin-bottom: 48px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
}
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
}
.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* ---- Section Shared ---- */
.section-header { text-align: center; margin-bottom: 56px; }
.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

/* ---- Pricing Tiers ---- */
.pricing-section {
  padding: var(--section-pad) 48px;
  background: var(--bg-dark);
}
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.pricing-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--card-radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  transition: transform 0.2s ease;
}
.pricing-card:hover { transform: translateY(-4px); }
.card-header { margin-bottom: 28px; }
.card-tier-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.card-free .card-tier-label {
  background: rgba(148, 163, 184, 0.2);
  color: #94A3B8;
}
.coin-label {
  background: var(--gold-light);
  color: #C47D00;
}
.sub-label {
  background: var(--accent-light);
  color: var(--accent);
}
.card-price {}
.price-main {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
}
.price-sub {
  display: block;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  margin-top: 2px;
}
.card-features {
  list-style: none;
  margin-bottom: 28px;
  flex: 1;
}
.card-features li {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.card-features li:last-child { border-bottom: none; }
.card-features li.dimmed { color: rgba(255,255,255,0.25); text-decoration: line-through; }
.card-cta {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.3);
  text-align: center;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.coin-cta { color: var(--gold); }
.sub-cta { color: var(--accent); }
.card-wholesale {
  border-color: rgba(13, 159, 110, 0.4);
  background: rgba(13, 159, 110, 0.08);
}

/* ---- Features ---- */
.features-section {
  padding: var(--section-pad) 48px;
  background: var(--bg-primary);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}
.feature-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--card-radius);
  padding: 36px;
  transition: box-shadow 0.2s ease;
}
.feature-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.06); }
.feature-icon { margin-bottom: 20px; }
.feature-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}
.feature-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ---- Reseller Spotlight ---- */
.reseller-spotlight {
  padding: var(--section-pad) 48px;
  background: var(--accent-light);
}
.spotlight-content { max-width: 800px; margin: 0 auto; }
.spotlight-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  color: var(--text-primary);
  margin: 16px 0 24px;
  letter-spacing: -0.02em;
}
.spotlight-body {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 48px;
}
.spotlight-flow {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.flow-step {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  min-width: 150px;
}
.step-num {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.step-text {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
}
.step-profit .step-text { color: var(--accent); }
.flow-arrow { flex-shrink: 0; }

/* ---- Closing ---- */
.closing-section {
  padding: 100px 48px;
  text-align: center;
  background: var(--bg-primary);
}
.closing-headline {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 28px;
  letter-spacing: -0.03em;
  line-height: 1.2;
}
.closing-sub {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ---- Footer ---- */
.footer {
  padding: 40px 48px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer-brand { display: flex; align-items: center; gap: 10px; }
.footer-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}
.footer-tagline {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .navbar { padding: 16px 24px; }
  .hero { padding: 60px 24px 80px; min-height: auto; }
  .hero-stats { gap: 20px; }
  .pricing-cards { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .spotlight-flow { flex-direction: column; align-items: flex-start; }
  .flow-arrow { transform: rotate(90deg); }
  .pricing-section,
  .features-section,
  .reseller-spotlight,
  .closing-section { padding: 60px 24px; }
  .footer { flex-direction: column; text-align: center; padding: 32px 24px; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 2.2rem; }
  .hero-stats { flex-direction: column; align-items: flex-start; gap: 16px; }
  .stat-divider { display: none; }
  .nav-tagline { display: none; }
}