/* =============================================
   BidSnap Landing Page
   Palette: Black + warm amber (#D97706) accent
   ============================================= */

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

:root {
  --black: #0F0F0F;
  --dark: #1C1917;
  --mid: #44403C;
  --muted: #78716C;
  --light: #D6D3D1;
  --bg: #FAFAF8;
  --white: #FFFFFF;
  --amber: #D97706;
  --amber-dark: #B45309;
  --amber-glow: rgba(217, 119, 6, 0.12);
  --amber-soft: #FEF3C7;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
  background: var(--bg);
  color: var(--dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 13px 32px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  font-family: inherit;
  border: none;
}
.btn--primary {
  background: var(--black);
  color: var(--white);
}
.btn--primary:hover {
  background: #2C2825;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.btn--lg {
  padding: 16px 40px;
  font-size: 17px;
}

/* --- Nav --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 250, 248, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 14px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.nav-logo {
  height: 32px;
  width: auto;
}
.nav-cta {
  display: inline-block;
  padding: 9px 22px;
  background: var(--black);
  color: var(--white);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.15s;
}
.nav-cta:hover {
  background: #2C2825;
}

/* --- Hero --- */
.hero {
  padding: 160px 28px 100px;
  text-align: center;
}
.hero-inner {
  max-width: 720px;
  margin: 0 auto;
}
.hero-title {
  font-size: clamp(36px, 5.5vw, 56px);
  font-weight: 800;
  line-height: 1.08;
  color: var(--black);
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}
.hero-highlight {
  color: var(--amber);
}
.hero-subtitle {
  font-size: 18px;
  color: var(--mid);
  max-width: 580px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.hero-actions {
  margin-bottom: 16px;
}
.hero-note {
  font-size: 13px;
  color: var(--muted);
}

/* --- Problem --- */
.problem {
  padding: 80px 28px 100px;
  background: var(--dark);
  color: var(--white);
}
.problem-inner {
  max-width: 680px;
  margin: 0 auto;
}
.problem-title {
  font-size: clamp(24px, 3.5vw, 32px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}
.problem-desc {
  font-size: 16px;
  color: #D6D3D1;
  line-height: 1.8;
  margin-bottom: 20px;
}
.problem-desc:last-child {
  margin-bottom: 0;
}

/* --- Section title (shared) --- */
.section-title {
  text-align: center;
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 48px;
  color: var(--black);
  letter-spacing: -0.02em;
}

/* --- Results / What you get --- */
.results {
  padding: 100px 28px;
}
.results-inner {
  max-width: 1060px;
  margin: 0 auto;
}
.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.result-card {
  padding: 32px 28px;
  border: 1px solid var(--light);
  border-radius: 14px;
  background: var(--white);
  transition: all 0.2s;
}
.result-card:hover {
  border-color: #A8A29E;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.result-card--featured {
  border-color: var(--amber);
  background: linear-gradient(to bottom, var(--amber-soft), var(--white));
  box-shadow: 0 0 0 1px var(--amber), 0 4px 24px var(--amber-glow);
}
.result-card--featured:hover {
  border-color: var(--amber-dark);
  box-shadow: 0 0 0 1px var(--amber-dark), 0 6px 32px var(--amber-glow);
}
.result-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--dark);
}
.result-card--featured .result-icon {
  background: var(--amber);
  color: var(--white);
}
.result-title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--black);
}
.result-desc {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.65;
}

/* --- Tailored --- */
.tailored {
  padding: 80px 28px 100px;
  background: var(--white);
  border-top: 1px solid rgba(0,0,0,0.05);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.tailored-inner {
  max-width: 640px;
  margin: 0 auto;
}
.tailored-title {
  font-size: clamp(24px, 3.5vw, 32px);
  font-weight: 800;
  margin-bottom: 24px;
  color: var(--black);
  letter-spacing: -0.02em;
}
.tailored-desc {
  font-size: 16px;
  color: var(--mid);
  line-height: 1.8;
  margin-bottom: 16px;
}
.tailored-desc em {
  font-style: italic;
  color: var(--dark);
  font-weight: 600;
}
.tailored-desc:last-child {
  margin-bottom: 0;
}

/* --- Speed stats --- */
.speed {
  padding: 80px 28px;
}
.speed-inner {
  max-width: 900px;
  margin: 0 auto;
}
.speed-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
}
.speed-stat {
  text-align: center;
  flex: 1;
}
.speed-number {
  display: block;
  font-size: 42px;
  font-weight: 800;
  color: var(--black);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 10px;
}
.speed-label {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}
.speed-divider {
  width: 1px;
  height: 60px;
  background: var(--light);
  flex-shrink: 0;
}

/* --- CTA --- */
.cta {
  padding: 100px 28px;
  text-align: center;
  background: var(--dark);
  color: var(--white);
}
.cta-inner {
  max-width: 520px;
  margin: 0 auto;
}
.cta-title {
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.cta-desc {
  font-size: 16px;
  color: #A8A29E;
  margin-bottom: 32px;
}
.cta .btn--primary {
  background: var(--amber);
  color: var(--white);
}
.cta .btn--primary:hover {
  background: var(--amber-dark);
  box-shadow: 0 4px 24px var(--amber-glow);
}

/* --- Footer --- */
.footer {
  border-top: 1px solid rgba(0,0,0,0.06);
  padding: 28px;
  background: var(--bg);
}
.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-logo {
  height: 22px;
  width: auto;
  opacity: 0.5;
}
.footer-copy {
  font-size: 13px;
  color: var(--muted);
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .results-grid {
    grid-template-columns: 1fr;
  }
  .speed-grid {
    flex-direction: column;
    gap: 32px;
  }
  .speed-divider {
    width: 60px;
    height: 1px;
  }
  .hero {
    padding: 130px 20px 70px;
  }
  .problem, .tailored {
    padding: 60px 20px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 32px;
  }
  .footer-inner {
    flex-direction: column;
    gap: 8px;
  }
}
