/* ====================================================================
   Dropshipper's Delight — Marketing Site
   Clean editorial aesthetic, light theme, lime accent (#c8ff3d)
   ==================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
  --bg:         #fafaf9;
  --bg-alt:     #0e0f12;
  --surface:    #ffffff;
  --border:     #e5e7eb;
  --ink:        #0e0f12;
  --ink-soft:   #4b5563;
  --ink-mute:   #9ca3af;
  --accent:     #c8ff3d;
  --accent-ink: #0e0f12;
  --accent-dim: #b8ef2d;
  --success:    #22c55e;
  --radius:     12px;
  --font:       'Outfit', ui-sans-serif, system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--ink); text-decoration: underline; text-underline-offset: 2px; }
a:hover { color: var(--accent-dim); }

img { max-width: 100%; display: block; }

.container { max-width: 960px; margin: 0 auto; padding: 0 24px; }

/* ── Nav ───────────────────────────────────────────────────────────── */
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; max-width: 960px; margin: 0 auto;
}
.nav__brand {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; font-weight: 700; font-size: 15px; color: var(--ink);
}
.nav__mark {
  display: inline-grid; place-items: center;
  width: 28px; height: 28px; border-radius: 8px;
  background: var(--accent); color: var(--accent-ink);
  font-weight: 800; font-size: 14px;
}
.nav__links { display: flex; gap: 24px; list-style: none; padding: 0; }
.nav__links a {
  text-decoration: none; font-size: 14px; font-weight: 500;
  color: var(--ink-soft); transition: color .15s;
}
.nav__links a:hover { color: var(--ink); }

/* ── Hero ──────────────────────────────────────────────────────────── */
.hero {
  text-align: center; padding: 80px 24px 60px;
  max-width: 720px; margin: 0 auto;
}
.hero__badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 14px; border-radius: 99px; font-size: 12px; font-weight: 600;
  background: var(--accent); color: var(--accent-ink);
  margin-bottom: 20px; letter-spacing: .02em;
}
.hero h1 {
  font-size: clamp(32px, 5vw, 52px); font-weight: 800;
  line-height: 1.1; letter-spacing: -.03em; margin-bottom: 16px;
}
.hero p {
  font-size: 18px; color: var(--ink-soft); max-width: 520px;
  margin: 0 auto 28px; line-height: 1.5;
}

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 10px; font-family: var(--font);
  font-size: 15px; font-weight: 600; text-decoration: none; border: none;
  cursor: pointer; transition: transform .15s, filter .15s;
}
.btn:hover { transform: translateY(-1px); filter: brightness(1.05); }
.btn--primary { background: var(--accent); color: var(--accent-ink); }
.btn--secondary {
  background: transparent; color: var(--ink); border: 1.5px solid var(--border);
}

/* ── Features ──────────────────────────────────────────────────────── */
.features { padding: 60px 0; }
.features__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.feature-card {
  padding: 28px; border-radius: var(--radius);
  border: 1px solid var(--border); background: var(--surface);
}
.feature-card__icon {
  width: 40px; height: 40px; border-radius: 10px;
  display: grid; place-items: center; font-size: 20px;
  background: var(--accent); margin-bottom: 14px;
}
.feature-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.feature-card p { font-size: 14px; color: var(--ink-soft); line-height: 1.55; }

/* ── Pricing ───────────────────────────────────────────────────────── */
.pricing {
  padding: 80px 0; background: var(--bg-alt); color: #e7e9ee;
  border-radius: 24px; margin: 40px 24px;
}
.pricing .container { max-width: 760px; }
.pricing h2 {
  text-align: center; font-size: 32px; font-weight: 800;
  letter-spacing: -.02em; margin-bottom: 8px;
}
.pricing > .container > p {
  text-align: center; color: #a3a8b4; margin-bottom: 40px; font-size: 16px;
}

.pricing__grid {
  display: grid; grid-template-columns: 1fr 1.3fr; gap: 20px;
}

.price-card {
  background: #15171c; border: 1px solid #262a33; border-radius: 16px;
  padding: 28px; display: flex; flex-direction: column;
}
.price-card--pro {
  border-color: rgba(200,255,61,.4);
  box-shadow: 0 0 0 1px rgba(200,255,61,.12);
  position: relative;
}
.price-card--pro::before {
  content: "Most popular"; position: absolute; top: -1px; right: 20px;
  padding: 4px 12px; background: var(--accent); color: var(--accent-ink);
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .05em; border-radius: 0 0 8px 8px;
}
.price-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; color: #e7e9ee; }
.price-card__amount {
  font-size: 40px; font-weight: 800; letter-spacing: -.02em; line-height: 1;
  margin-bottom: 4px;
}
.price-card__amount span { font-size: 16px; font-weight: 400; color: #6c7280; }
.price-card__annual { font-size: 13px; color: var(--accent); margin-bottom: 16px; }
.price-card ul {
  list-style: none; padding: 0; margin: 0 0 20px;
  display: flex; flex-direction: column; gap: 10px; flex: 1;
}
.price-card li {
  font-size: 14px; color: #a3a8b4; padding-left: 24px; position: relative;
}
.price-card li::before {
  content: "✓"; position: absolute; left: 0;
  color: var(--accent); font-weight: 700;
}
.price-card li strong { color: #e7e9ee; font-weight: 600; }

.price-card .btn { width: 100%; justify-content: center; margin-top: auto; }
.price-card .btn--secondary { border-color: #262a33; color: #a3a8b4; }

/* ── FAQ ───────────────────────────────────────────────────────────── */
.faq { padding: 60px 0; max-width: 640px; margin: 0 auto; }
.faq h2 { font-size: 28px; font-weight: 800; text-align: center; margin-bottom: 32px; }
.faq details {
  border-bottom: 1px solid var(--border); padding: 16px 0;
}
.faq summary {
  font-weight: 600; font-size: 15px; cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center;
}
.faq summary::after { content: "+"; font-size: 20px; color: var(--ink-mute); }
.faq details[open] summary::after { content: "−"; }
.faq details p { margin-top: 10px; color: var(--ink-soft); font-size: 14px; }

/* ── Footer ────────────────────────────────────────────────────────── */
.footer {
  padding: 40px 24px; text-align: center;
  border-top: 1px solid var(--border); margin-top: 40px;
}
.footer__links {
  display: flex; justify-content: center; gap: 24px;
  list-style: none; padding: 0; margin-bottom: 12px;
}
.footer__links a { font-size: 13px; color: var(--ink-soft); }
.footer__copy { font-size: 12px; color: var(--ink-mute); }

/* ── Legal pages ───────────────────────────────────────────────────── */
.legal { max-width: 680px; margin: 0 auto; padding: 60px 24px 80px; }
.legal h1 { font-size: 28px; font-weight: 800; margin-bottom: 8px; }
.legal .updated { color: var(--ink-mute); font-size: 13px; margin-bottom: 32px; display: block; }
.legal h2 { font-size: 18px; font-weight: 700; margin: 28px 0 8px; }
.legal p, .legal li { font-size: 14.5px; color: var(--ink-soft); line-height: 1.65; }
.legal ul { padding-left: 20px; margin: 8px 0; }
.legal li { margin-bottom: 6px; }
.legal strong { color: var(--ink); }

/* ── Responsive ────────────────────────────────────────────────────── */
@media (max-width: 640px) {
  .features__grid { grid-template-columns: 1fr; }
  .pricing__grid { grid-template-columns: 1fr; }
  .nav__links { display: none; }
  .hero { padding: 48px 20px 40px; }
  .pricing { margin: 20px 12px; padding: 48px 0; }
}
