/* public/css/landing.css — Homepage & landing page styles */

:root {
  --forest: #1e3c28;
  --forest-light: #2a5438;
  --cream: #f5f0e8;
  --copper: #c99846;
  --copper-dark: #b88530;
  --text: #1a1a1a;
  --muted: #6b7280;
  --bg: #f5f0e8;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body.page-home {
  background: var(--bg);
  font-family: 'DM Sans', system-ui, sans-serif;
  color: var(--text);
}

/* Hero */
.home-hero {
  background: linear-gradient(135deg, var(--forest) 0%, #0d2b1e 100%);
  padding: 100px 20px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.home-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.home-hero-content { position: relative; max-width: 800px; margin: 0 auto; }
.home-hero h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 20px;
  line-height: 1.1;
}
.home-hero-sub {
  font-size: 1.1rem;
  color: rgba(245,240,232,0.7);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.6;
}
.home-hero-stats {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.home-stat { text-align: center; }
.home-stat-number {
  font-family: 'Fraunces', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--copper);
}
.home-stat-label { font-size: 0.8rem; color: rgba(245,240,232,0.65); margin-top: 4px; }

/* CTA buttons in hero */
.home-hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-primary-hero {
  display: inline-block;
  padding: 14px 32px;
  background: var(--copper);
  color: white;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.15s ease;
}
.btn-primary-hero:hover { background: var(--copper-dark); transform: translateY(-1px); }
.btn-secondary-hero {
  display: inline-block;
  padding: 14px 32px;
  background: transparent;
  color: var(--cream);
  font-weight: 500;
  border-radius: 8px;
  text-decoration: none;
  border: 1px solid rgba(245,240,232,0.35);
  transition: all 0.15s ease;
}
.btn-secondary-hero:hover {
  background: rgba(245,240,232,0.12);
  border-color: rgba(245,240,232,0.6);
}

/* Trades section */
.trades-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
}
.section-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 8px;
}
.section-title {
  font-family: 'Fraunces', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 8px;
}
.section-sub {
  color: var(--muted);
  margin-bottom: 40px;
  font-size: 1rem;
}
.trades-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.trade-card {
  background: white;
  border: 1px solid rgba(30,60,40,0.1);
  border-radius: 16px;
  padding: 32px 28px;
  text-decoration: none;
  color: var(--text);
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.trade-card:hover {
  border-color: var(--copper);
  box-shadow: 0 8px 32px rgba(201,152,70,0.12);
  transform: translateY(-3px);
}
.trade-card-icon {
  font-size: 2.5rem;
  line-height: 1;
}
.trade-card-title {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--forest);
}
.trade-card-desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
}
.trade-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(30,60,40,0.08);
}
.trade-card-cities {
  font-size: 0.8rem;
  color: var(--muted);
}
.trade-card-arrow {
  font-size: 1.2rem;
  color: var(--copper);
  transition: transform 0.15s;
}
.trade-card:hover .trade-card-arrow { transform: translateX(4px); }

/* How it works */
.how-section {
  background: var(--forest);
  padding: 80px 20px;
}
.how-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.how-inner .section-title { color: var(--cream); }
.how-inner .section-sub { color: rgba(245,240,232,0.6); margin-bottom: 60px; }
.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.how-step { text-align: center; }
.how-step-num {
  width: 48px; height: 48px;
  background: var(--copper);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 auto 16px;
}
.how-step h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  color: rgba(245,240,232,0.95);
  margin-bottom: 8px;
}
.how-step p { font-size: 0.85rem; color: rgba(245,240,232,0.7); line-height: 1.5; }

/* Pricing snippet */
.pricing-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 80px 20px;
  text-align: center;
}
.pricing-cards {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}
.pricing-card {
  background: white;
  border: 1px solid rgba(30,60,40,0.12);
  border-radius: 16px;
  padding: 36px 32px;
  flex: 1;
  min-width: 260px;
  max-width: 340px;
}
.pricing-card.featured {
  border-color: var(--copper);
  box-shadow: 0 4px 20px rgba(201,152,70,0.15);
}
.pricing-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 8px;
}
.pricing-price {
  font-family: 'Fraunces', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 4px;
}
.pricing-price sup { font-size: 1rem; font-weight: 400; }
.pricing-period { font-size: 0.8rem; color: var(--muted); margin-bottom: 20px; }
.pricing-features {
  list-style: none;
  text-align: left;
  font-size: 0.9rem;
  margin-bottom: 28px;
}
.pricing-features li {
  padding: 6px 0;
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.pricing-features li::before {
  content: '✓';
  color: var(--copper);
  font-weight: 700;
}
.pricing-btn {
  display: block;
  width: 100%;
  padding: 12px;
  background: var(--forest);
  color: var(--cream);
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: background 0.15s;
}
.pricing-btn:hover { background: var(--forest-light); }
.pricing-card.featured .pricing-btn { background: var(--copper); }
.pricing-card.featured .pricing-btn:hover { background: var(--copper-dark); }

/* Footer */
.home-footer {
  background: var(--forest);
  color: rgba(245,240,232,0.4);
  text-align: center;
  padding: 32px 20px;
  font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 768px) {
  .how-steps { grid-template-columns: 1fr; gap: 32px; }
  .trades-grid { grid-template-columns: 1fr; }
  .home-hero-stats { gap: 24px; }
}