/* ==========================================
   PENNYDROP — Design System
   ========================================== */

:root {
  --bg:         #0D0D0D;
  --surface:    #141414;
  --surface2:   #1E1E1E;
  --border:     rgba(255, 215, 0, 0.12);
  --yellow:     #FFD700;
  --yellow-dim: rgba(255, 215, 0, 0.15);
  --white:      #F5F5F5;
  --muted:      #888;
  --green:      #4ADE80;
}

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

body {
  background: var(--bg);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ---- Background texture ---- */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,215,0,0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
}

/* ---- Typography ---- */
h1, h2, h3, h4 { font-family: 'DM Sans', sans-serif; line-height: 1.15; }

/* ---- Navbar ---- */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(13,13,13,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px; margin: 0 auto;
  padding: 16px 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: flex; align-items: center; gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700; font-size: 18px;
}
.logo-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 8px var(--yellow);
}
.logo-text { color: var(--white); }
.nav-tagline { font-size: 13px; color: var(--muted); }

/* ---- Section commons ---- */
section { position: relative; z-index: 1; }
.section-header { margin-bottom: 48px; }
.section-label {
  font-size: 11px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--yellow);
  margin-bottom: 12px;
}
.section-heading {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800; color: var(--white);
  max-width: 580px;
}

/* ---- Hero ---- */
.hero { padding: 80px 24px 100px; }
.hero-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--yellow); margin-bottom: 20px;
}
.hero-headline {
  font-size: clamp(40px, 5.5vw, 68px);
  font-weight: 800; color: var(--white);
  margin-bottom: 20px; line-height: 1.1;
}
.hero-sub {
  font-size: 17px; color: var(--muted);
  max-width: 420px; margin-bottom: 32px;
}
.hero-pill-row { display: flex; flex-wrap: wrap; gap: 10px; }
.hero-pill {
  font-size: 12px; font-weight: 500;
  background: var(--surface2); border: 1px solid var(--border);
  padding: 6px 14px; border-radius: 99px;
  color: var(--muted);
}

/* ---- Deal card stack ---- */
.hero-visual { position: relative; }
.deal-cards-stack {
  display: flex; flex-direction: column; gap: 12px;
  position: relative;
}
.deal-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px 20px;
  display: flex; align-items: center; gap: 16px;
  transition: transform 0.2s ease;
}
.deal-card:hover { transform: translateX(-4px); border-color: rgba(255,215,0,0.3); }
.deal-card-1 { transform: rotate(-0.8deg); }
.deal-card-2 { transform: rotate(0.4deg); }
.deal-card-3 { transform: rotate(-0.5deg); }
.deal-card-4 { transform: rotate(0.2deg); }
.card-icon {
  width: 44px; height: 44px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.card-icon svg { width: 22px; height: 22px; }
.card-icon-food { background: rgba(255,215,0,0.1); color: var(--yellow); }
.card-icon-stream { background: rgba(74,222,128,0.1); color: var(--green); }
.card-icon-clothing { background: rgba(167,139,250,0.1); color: #A78BFA; }
.card-content { flex: 1; }
.card-brand { font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-bottom: 2px; }
.card-deal { font-size: 14px; font-weight: 600; color: var(--white); font-family: 'DM Sans', sans-serif; }
.card-savings { font-size: 13px; color: var(--green); font-weight: 500; margin-top: 2px; }

/* ---- Categories ---- */
.categories { padding: 90px 24px; background: var(--surface); }
.cat-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.cat-card {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  transition: border-color 0.2s;
}
.cat-card:hover { border-color: rgba(255,215,0,0.3); }
.cat-icon svg { width: 32px; height: 32px; display: block; }
.cat-name { font-size: 22px; font-weight: 700; margin: 16px 0 10px; color: var(--white); }
.cat-desc { font-size: 14px; color: var(--muted); line-height: 1.6; margin-bottom: 16px; }
.cat-tag {
  display: inline-block;
  font-size: 12px; font-weight: 600;
  color: var(--yellow); background: var(--yellow-dim);
  padding: 4px 12px; border-radius: 99px;
}

/* ---- How it works ---- */
.howitworks { padding: 90px 24px; }
.hiw-grid {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: flex-start; gap: 0;
}
.hiw-step { flex: 1; padding: 0 32px; }
.hiw-step:first-child { padding-left: 0; }
.hiw-step:last-child { padding-right: 0; }
.hiw-divider { width: 1px; background: var(--border); align-self: stretch; flex-shrink: 0; }
.step-num { font-size: 40px; font-weight: 800; font-family: 'DM Sans', sans-serif; color: var(--yellow); opacity: 0.4; margin-bottom: 12px; }
.step-title { font-size: 18px; font-weight: 700; color: var(--white); margin-bottom: 10px; font-family: 'DM Sans', sans-serif; }
.step-desc { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ---- Pricing ---- */
.pricing { padding: 90px 24px; background: var(--surface); }
.pricing-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.price-card {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 16px; padding: 28px 24px;
  position: relative;
}
.price-card-bundle {
  border-color: rgba(255,215,0,0.35);
  background: linear-gradient(135deg, #1a1a0f 0%, var(--surface2) 100%);
}
.bundle-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--yellow); color: #000;
  font-size: 10px; font-weight: 800; letter-spacing: 0.08em;
  padding: 4px 14px; border-radius: 99px;
  white-space: nowrap;
}
.price-cat {
  font-size: 11px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 12px;
}
.price-amount {
  font-size: 38px; font-weight: 800; font-family: 'DM Sans', sans-serif;
  color: var(--white); margin-bottom: 4px;
}
.price-dollar { font-size: 22px; color: var(--yellow); vertical-align: super; }
.price-period { font-size: 16px; font-weight: 500; color: var(--muted); }
.price-savings-note { font-size: 12px; color: var(--green); margin-bottom: 16px; margin-top: 4px; }
.price-features { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.price-features li { font-size: 13px; color: var(--muted); padding-left: 16px; position: relative; }
.price-features li::before { content: '—'; position: absolute; left: 0; color: var(--yellow); }
.price-cta {
  display: block;
  margin-top: 20px;
  padding: 10px 16px;
  background: var(--yellow);
  color: #0D0D0D;
  font-weight: 700;
  font-size: 13px;
  text-align: center;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s;
}
.price-cta:hover { background: #e6c200; }
.price-cta-bundle { background: #10b981; color: #fff; }
.price-cta-bundle:hover { background: #0ea472; }

/* ---- Verification ---- */
.verification { padding: 80px 24px; }
.verification-inner {
  max-width: 800px; margin: 0 auto;
  display: flex; align-items: center; gap: 40px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 20px; padding: 48px;
}
.verification-icon svg { width: 64px; height: 64px; flex-shrink: 0; }
.verification-headline { font-size: clamp(22px, 3vw, 32px); font-weight: 800; color: var(--white); margin-bottom: 12px; }
.verification-sub { font-size: 15px; color: var(--muted); line-height: 1.65; }

/* ---- Closing ---- */
.closing { padding: 100px 24px; text-align: center; }
.closing-inner { max-width: 640px; margin: 0 auto; }
.closing-label { font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--yellow); margin-bottom: 20px; }
.closing-headline { font-size: clamp(30px, 4.5vw, 54px); font-weight: 800; color: var(--white); margin-bottom: 16px; }
.closing-sub { font-size: 17px; color: var(--muted); margin-bottom: 32px; }
.closing-note { font-size: 13px; color: #555; }

/* ---- Footer ---- */
.footer { border-top: 1px solid var(--border); padding: 32px 24px; }
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px;
}
.footer-logo { display: flex; align-items: center; gap: 8px; font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: 16px; }
.footer-meta { font-size: 13px; color: var(--muted); text-align: center; }
.footer-links { display: flex; gap: 24px; font-size: 12px; color: var(--muted); }

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .cat-grid { grid-template-columns: 1fr; }
  .hiw-grid { flex-direction: column; gap: 32px; }
  .hiw-divider { display: none; }
  .hiw-step { padding: 0; }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .price-card-bundle { grid-column: span 2; }
  .verification-inner { flex-direction: column; text-align: center; padding: 32px; }
  .footer-inner { flex-direction: column; text-align: center; }
  .nav-tagline { display: none; }
}
@media (max-width: 480px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card-bundle { grid-column: span 1; }
}