/* ThotFindr Lander — Standalone Stylesheet
   Self-contained. No dependency on app.css.
   Copies main site header/nav DNA for brand continuity.
   All lander content classes prefixed with l- */

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

:root {
  --bg: #fafafa;
  --bg-card: #ffffff;
  --bg-hover: #f5f5f5;
  --border: #e5e5e5;
  --border-light: #f0f0f0;
  --text: #1a1a1a;
  --text-secondary: #666666;
  --text-muted: #999999;
  --accent: #00AFF0;
  --accent-hover: #009dd8;
  --accent-subtle: rgba(0, 175, 240, 0.08);
  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --radius: 6px;
  --radius-sm: 4px;
  --radius-full: 9999px;
  --max-width: 1200px;
  --header-h: 48px;
}

/* === Reset === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 14px; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font); background: var(--bg); color: var(--text); line-height: 1.5; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; display: block; }
button, input { font: inherit; }

/* === Layout === */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 16px; }

/* === Header (main site DNA) === */
.site-header { position: sticky; top: 0; z-index: 100; background: var(--bg-card); border-bottom: 1px solid var(--border); height: var(--header-h); }
.header-inner { display: flex; align-items: center; height: 100%; gap: 16px; }
.logo { font-size: 18px; font-weight: 700; color: var(--text); flex-shrink: 0; text-decoration: none; }
.logo:hover { text-decoration: none; }
.logo span { color: var(--accent); }
.nav-main { display: flex; align-items: center; gap: 12px; margin-left: auto; }
.nav-link { font-size: 13px; color: var(--text-secondary); font-weight: 500; text-decoration: none; }
.nav-link:hover { color: var(--text); text-decoration: none; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; color: var(--text); font-size: 18px; margin-left: auto; }

/* === Hero === */
.l-hero { text-align: center; padding: 28px 16px 20px; }
.l-hero h1 { font-size: 22px; font-weight: 700; margin-bottom: 6px; color: var(--text); }
.l-hero p { font-size: 13px; color: var(--text-muted); margin-bottom: 16px; }
.l-hero p strong { color: var(--text-secondary); }
.l-eyebrow {
  display: inline-block; font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.14em; color: var(--accent); padding: 3px 10px; margin-bottom: 10px;
  border: 1px solid var(--accent-subtle); border-radius: var(--radius-full);
  background: var(--accent-subtle);
}

/* === Hero Grid === */
.l-featured-card {
  display: grid;
  grid-template-columns: minmax(180px, 280px) 1fr;
  gap: 18px;
  align-items: center;
  max-width: 900px;
  margin: 0 auto 16px;
  padding: 14px;
  border: 1px solid rgba(0, 175, 240, 0.18);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(0, 175, 240, 0.08), rgba(255, 255, 255, 0.98));
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
  text-decoration: none;
}
.l-featured-card:hover { text-decoration: none; border-color: rgba(0, 175, 240, 0.32); }
.l-featured-media {
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 4/5;
  background: var(--bg-hover);
}
.l-featured-media img { width: 100%; height: 100%; object-fit: cover; }
.l-featured-copy { text-align: left; }
.l-featured-kicker {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.l-featured-copy h2 {
  margin-bottom: 8px;
  font-size: clamp(20px, 3vw, 30px);
  line-height: 1.1;
  color: var(--text);
}
.l-featured-badges { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 12px; }
.l-featured-card .l-badge-free { background: rgba(34,197,94,0.12); color: #15803d; }
.l-featured-card .l-badge-price { background: rgba(0,175,240,0.12); color: #0369a1; }
.l-featured-card .l-badge-rank { background: rgba(26,26,26,0.08); color: var(--text-secondary); }
.l-featured-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: var(--radius-full);
  background: var(--accent);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}
.l-hero-grid { display: grid; grid-template-columns: 1fr; gap: 8px; max-width: 900px; margin: 0 auto; }
.l-hero-card {
  position: relative; overflow: hidden; border-radius: var(--radius);
  aspect-ratio: 3/4; background: var(--bg-hover); border: 1px solid var(--border-light);
  display: block; text-decoration: none;
}
.l-hero-card:hover { text-decoration: none; }
.l-hero-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.35s ease; }
.l-hero-card:hover img { transform: scale(1.03); }
.l-hero-overlay {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, transparent 45%, rgba(0,0,0,0.7) 100%);
}
.l-hero-meta {
  position: absolute; bottom: 10px; left: 10px; right: 10px; z-index: 2;
  display: flex; align-items: flex-end; justify-content: space-between; gap: 6px;
}
.l-hero-name { font-weight: 700; font-size: 13px; color: #fff; text-shadow: 0 1px 4px rgba(0,0,0,0.5); }
.l-hero-badges { display: flex; gap: 4px; }

/* === Badges (on dark overlay) === */
.l-badge {
  display: inline-flex; align-items: center; padding: 2px 7px; border-radius: var(--radius-full);
  font-size: 9px; font-weight: 700; letter-spacing: 0.03em; text-transform: uppercase;
}
.l-badge-free { background: rgba(34,197,94,0.2); color: #4ade80; }
.l-badge-price { background: rgba(0,175,240,0.2); color: #7dd3fc; }
.l-badge-rank { background: rgba(255,255,255,0.15); color: rgba(255,255,255,0.8); font-size: 8px; }

/* === Masonry Grid === */
.l-section { padding: 8px 0; }
.l-masonry { column-count: 2; column-gap: 6px; }
.l-card {
  display: inline-block; width: 100%; margin-bottom: 6px; overflow: hidden;
  border-radius: var(--radius); background: var(--bg-card); border: 1px solid var(--border-light);
  break-inside: avoid; -webkit-column-break-inside: avoid;
  position: relative; cursor: pointer; text-decoration: none;
}
.l-card:hover { text-decoration: none; }
.l-card img {
  width: 100%; min-height: 140px; object-fit: cover; background: var(--bg-hover);
  transition: transform 0.3s ease;
}
.l-card:hover img { transform: scale(1.02); }
.l-card-overlay {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.65) 100%);
  opacity: 0; transition: opacity 0.2s ease;
}
.l-card:hover .l-card-overlay { opacity: 1; }
.l-card-meta {
  position: absolute; bottom: 6px; left: 8px; right: 8px; z-index: 2;
  display: flex; align-items: center; justify-content: space-between; gap: 4px;
  opacity: 0; transition: opacity 0.2s ease; pointer-events: none;
}
.l-card:hover .l-card-meta { opacity: 1; }
.l-card-name {
  font-size: 11px; font-weight: 600; color: #fff; white-space: nowrap;
  overflow: hidden; text-overflow: ellipsis; text-shadow: 0 1px 3px rgba(0,0,0,0.6);
}

/* === CTAs === */
.l-cta-wrap { padding: 16px 0; }
.l-cta {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 16px 20px; border-radius: var(--radius);
  background: var(--bg-card); border: 1px solid var(--border);
  transition: border-color 0.15s ease; text-decoration: none;
}
.l-cta:hover { border-color: var(--accent); text-decoration: none; }
.l-cta-kicker {
  color: var(--accent); font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 2px;
}
.l-cta h2 { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 2px; }
.l-cta p { color: var(--text-muted); font-size: 12px; margin: 0; }
.l-cta-btn {
  white-space: nowrap; padding: 8px 16px; border-radius: var(--radius-full); font-size: 12px;
  font-weight: 600; background: var(--accent); color: #fff; flex-shrink: 0;
  transition: background 0.15s ease;
}
.l-cta:hover .l-cta-btn { background: var(--accent-hover); }

/* === Footer === */
.l-footer { padding: 20px 0; border-top: 1px solid var(--border); margin-top: 16px; }
.l-footer-inner {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 11px; color: var(--text-muted);
}
.l-footer-links { display: flex; gap: 14px; }
.l-footer-links a { color: var(--text-muted); text-decoration: none; }
.l-footer-links a:hover { color: var(--text); text-decoration: none; }
.l-footer-inner p { margin: 0; }

/* === Responsive === */
@media (min-width: 640px) {
  .l-hero-grid { grid-template-columns: repeat(3, 1fr); }
  .l-hero-card { aspect-ratio: 2/3; }
  .l-masonry { column-count: 3; column-gap: 8px; }
  .l-card { margin-bottom: 8px; }
}
@media (min-width: 1024px) {
  .l-masonry { column-count: 4; column-gap: 10px; }
  .l-card { margin-bottom: 10px; }
}
@media (max-width: 639px) {
  .nav-toggle { display: block; }
  .nav-main { display: none; }
  .nav-main.open { display: flex; flex-direction: column; position: absolute; top: var(--header-h); left: 0; right: 0; background: var(--bg-card); border-bottom: 1px solid var(--border); padding: 12px 16px; gap: 8px; }
  .l-featured-card { grid-template-columns: 1fr; padding: 12px; }
  .l-featured-copy { text-align: center; }
  .l-featured-badges { justify-content: center; }
  .l-featured-cta { width: 100%; }
  .l-cta { flex-direction: column; align-items: flex-start; }
  .l-cta-btn { width: 100%; text-align: center; }
  .l-footer-inner { flex-direction: column; gap: 6px; text-align: center; }
  .l-hero h1 { font-size: 18px; }
}
