/* MarketerDeals.com — dark deal-hunter theme */
:root {
  --bg: #0b0f14;
  --bg-card: #121822;
  --bg-card-2: #171f2b;
  --border: #223047;
  --text: #e6edf3;
  --muted: #8b98a9;
  --accent: #ffb020;      /* deal orange */
  --accent-2: #2dd4a7;    /* verified green */
  --link: #5eb0ff;
  --radius: 12px;
  --max: 1080px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--link); text-decoration: none; }
a:hover { text-decoration: underline; }
.container { max-width: var(--max); margin: 0 auto; padding: 0 20px; }

/* Header */
.site-header {
  border-bottom: 1px solid var(--border);
  background: rgba(11,15,20,.85);
  backdrop-filter: blur(8px);
  position: sticky; top: 0; z-index: 10;
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.logo { font-weight: 800; font-size: 20px; color: var(--text); letter-spacing: -.02em; }
.logo span { color: var(--accent); }
.logo:hover { text-decoration: none; }
nav.main-nav { display: flex; gap: 22px; align-items: center; }
nav.main-nav a { color: var(--muted); font-size: 15px; font-weight: 500; }
nav.main-nav a:hover { color: var(--text); text-decoration: none; }
nav.main-nav a.nav-cta {
  color: #0b0f14; background: var(--accent); padding: 8px 16px; border-radius: 8px; font-weight: 700;
}

/* Hero */
.hero { padding: 84px 0 64px; text-align: center; }
.hero .eyebrow {
  display: inline-block; font-size: 13px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--accent-2); margin-bottom: 18px;
  border: 1px solid var(--border); border-radius: 999px; padding: 6px 14px; background: var(--bg-card);
}
.hero h1 {
  font-size: clamp(34px, 6vw, 58px); line-height: 1.1; letter-spacing: -.03em; font-weight: 800;
  max-width: 820px; margin: 0 auto 20px;
}
.hero h1 em { font-style: normal; color: var(--accent); }
.hero p.sub { color: var(--muted); font-size: 19px; max-width: 640px; margin: 0 auto 34px; }

/* Email capture */
.signup-card {
  max-width: 560px; margin: 0 auto; background: var(--bg-card);
  border: 1px solid var(--border); border-radius: var(--radius); padding: 28px;
}
.signup-card h2 { font-size: 20px; margin-bottom: 6px; }
.signup-card p.note { color: var(--muted); font-size: 14px; margin-bottom: 18px; }
.signup-form { display: flex; gap: 10px; }
.signup-form input[type="email"] {
  flex: 1; padding: 13px 14px; border-radius: 8px; border: 1px solid var(--border);
  background: var(--bg); color: var(--text); font-size: 15px; outline: none;
}
.signup-form input[type="email"]:focus { border-color: var(--accent); }
.signup-form button {
  padding: 13px 22px; border-radius: 8px; border: 0; background: var(--accent);
  color: #0b0f14; font-weight: 800; font-size: 15px; cursor: pointer; white-space: nowrap;
}
.signup-form button:hover { filter: brightness(1.08); }
.signup-form button:disabled { opacity: .6; cursor: wait; }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.form-msg { margin-top: 12px; font-size: 14px; min-height: 18px; }
.form-msg.ok { color: var(--accent-2); }
.form-msg.err { color: #ff7a7a; }
.fine-print { margin-top: 14px; font-size: 12px; color: var(--muted); }

/* Sections */
section { padding: 56px 0; }
.section-title { font-size: 28px; letter-spacing: -.02em; margin-bottom: 8px; }
.section-sub { color: var(--muted); margin-bottom: 30px; }

/* Deal cards */
.deal-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 18px; }
.deal-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 22px; display: flex; flex-direction: column; gap: 10px; position: relative;
}
.deal-card .badge {
  position: absolute; top: -11px; right: 16px; background: var(--accent-2); color: #052e22;
  font-size: 11px; font-weight: 800; padding: 3px 10px; border-radius: 999px; letter-spacing: .04em;
}
.deal-card h3 { font-size: 18px; }
.deal-card .deal-line { color: var(--accent); font-weight: 700; font-size: 15px; }
.deal-card p { color: var(--muted); font-size: 14px; flex: 1; }
.btn {
  display: inline-block; text-align: center; padding: 11px 18px; border-radius: 8px;
  font-weight: 700; font-size: 14px;
}
.btn-primary { background: var(--accent); color: #0b0f14; }
.btn-outline { border: 1px solid var(--border); color: var(--text); }
.btn:hover { text-decoration: none; filter: brightness(1.1); }

/* How it works */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; }
.step { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; }
.step .num {
  width: 32px; height: 32px; border-radius: 8px; background: var(--bg-card-2); color: var(--accent);
  display: flex; align-items: center; justify-content: center; font-weight: 800; margin-bottom: 12px;
  border: 1px solid var(--border);
}
.step h3 { font-size: 16px; margin-bottom: 6px; }
.step p { color: var(--muted); font-size: 14px; }

/* Article / prose */
.prose { max-width: 760px; margin: 0 auto; }
.prose h1 { font-size: clamp(30px, 5vw, 42px); line-height: 1.15; letter-spacing: -.02em; margin: 26px 0 10px; }
.prose .meta { color: var(--muted); font-size: 14px; margin-bottom: 26px; }
.prose h2 { font-size: 24px; margin: 34px 0 12px; letter-spacing: -.01em; }
.prose h3 { font-size: 19px; margin: 26px 0 8px; }
.prose p, .prose li { color: #c3ccd8; margin-bottom: 12px; font-size: 16.5px; }
.prose ul, .prose ol { margin: 0 0 14px 22px; }
.prose strong { color: var(--text); }
.disclosure {
  background: var(--bg-card-2); border: 1px solid var(--border); border-left: 3px solid var(--accent);
  padding: 14px 16px; border-radius: 8px; font-size: 13.5px; color: var(--muted); margin: 18px 0 8px;
}
.breadcrumb { font-size: 13px; color: var(--muted); padding-top: 34px; }
.breadcrumb a { color: var(--muted); }
table.compare { width: 100%; border-collapse: collapse; margin: 16px 0 22px; font-size: 14.5px; }
table.compare th, table.compare td { border: 1px solid var(--border); padding: 10px 12px; text-align: left; }
table.compare th { background: var(--bg-card-2); color: var(--text); }
table.compare td { color: #c3ccd8; }
.faq details {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 8px;
  padding: 14px 16px; margin-bottom: 10px;
}
.faq summary { cursor: pointer; font-weight: 600; color: var(--text); }
.faq details p { margin: 10px 0 0; }

/* Blog index */
.post-list { display: grid; gap: 14px; }
.post-item {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 20px 22px; display: block; color: var(--text);
}
.post-item:hover { border-color: var(--accent); text-decoration: none; }
.post-item h3 { font-size: 18px; margin-bottom: 6px; }
.post-item p { color: var(--muted); font-size: 14px; }

/* Footer */
.site-footer { border-top: 1px solid var(--border); padding: 40px 0 60px; margin-top: 40px; }
.site-footer .cols { display: flex; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.site-footer p, .site-footer li { color: var(--muted); font-size: 13.5px; }
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 8px; }
.footer-disclosure { margin-top: 26px; font-size: 12.5px; color: var(--muted); max-width: 720px; }

@media (max-width: 640px) {
  .signup-form { flex-direction: column; }
  nav.main-nav { display: none; }
}