/*
Theme Name: Findable GEO
Theme URI: https://findable-ai.com
Author: Findable
Description: GEO-optimized landing page theme for Findable. FAQPage + Organization schema via wp_head.
Version: 1.0
*/

:root {
  --ink: #1c2230;
  --ink-soft: #545c6b;
  --ink-faint: #8b93a1;
  --line: #e3e6eb;
  --paper: #ffffff;
  --bg: #f4f5f7;
  --accent: #2f5fda;
  --accent-soft: #eaf0ff;
  --accent-hover: #2248c0;
  --good: #1d8a4c;
  --good-soft: #e6f6ec;
  --warn: #c25c0a;
  --warn-soft: #fef3e2;
  --radius: 14px;
  --radius-sm: 8px;
  --max: 1100px;
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --ink: #dde2f5;
    --ink-soft: #8891b0;
    --ink-faint: #50597a;
    --line: #252d40;
    --paper: #161c2e;
    --bg: #0f1117;
    --accent: #4f7eff;
    --accent-soft: #1a2456;
    --accent-hover: #6b92ff;
    --good: #22c55e;
    --good-soft: #052e16;
    --warn: #f59e0b;
    --warn-soft: #1c1000;
  }
}
:root[data-theme="dark"] {
  --ink: #dde2f5;
  --ink-soft: #8891b0;
  --ink-faint: #50597a;
  --line: #252d40;
  --paper: #161c2e;
  --bg: #0f1117;
  --accent: #4f7eff;
  --accent-soft: #1a2456;
  --accent-hover: #6b92ff;
  --good: #22c55e;
  --good-soft: #052e16;
  --warn: #f59e0b;
  --warn-soft: #1c1000;
}

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

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
nav {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  padding: 0 24px;
  display: flex;
  align-items: center;
  height: 60px;
  gap: 32px;
}
.nav-logo {
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.01em;
}
.nav-links {
  display: flex;
  gap: 24px;
  list-style: none;
  margin-left: 8px;
}
.nav-links a {
  font-size: 14px;
  color: var(--ink-soft);
  text-decoration: none;
  font-weight: 500;
}
.nav-links a:hover { color: var(--ink); }
.nav-cta {
  margin-left: auto;
  background: var(--accent);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--accent-hover); }

/* SECTIONS */
section { padding: 80px 24px; }
.container { max-width: var(--max); margin: 0 auto; }
.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
h1 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  text-wrap: balance;
  color: var(--ink);
}
h2 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  text-wrap: balance;
  color: var(--ink);
}
h3 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1.3;
}
p { color: var(--ink-soft); }

/* HERO */
.hero { background: var(--paper); padding: 72px 24px 80px; }
.hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 780px) { .hero-inner { grid-template-columns: 1fr; } }
.hero-answer {
  font-size: 13px;
  font-weight: 500;
  color: var(--good);
  background: var(--good-soft);
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.hero h1 { margin-bottom: 20px; }
.hero-sub {
  font-size: 17px;
  color: var(--ink-soft);
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 480px;
}
.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  text-decoration: none;
}
.btn-primary:hover { background: var(--accent-hover); }
.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--ink-soft);
  font-weight: 500;
  font-size: 15px;
  padding: 13px 20px;
  text-decoration: none;
  margin-left: 4px;
}
.hero-btns { display: flex; align-items: center; gap: 4px; flex-wrap: wrap; }

.hero-canvas {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.canvas-bar {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  padding: 10px 16px;
  font-size: 12px;
  color: var(--ink-faint);
  font-weight: 500;
  display: flex;
  gap: 16px;
}
.canvas-tab { color: var(--accent); border-bottom: 2px solid var(--accent); padding-bottom: 2px; }
.canvas-body { padding: 20px; }
.canvas-eyebrow { font-size: 10px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 8px; }
.canvas-draft {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 14px;
  font-size: 13px;
  color: var(--ink);
  line-height: 1.55;
  margin-bottom: 12px;
  min-height: 72px;
}
.canvas-pipeline {
  display: flex;
  gap: 6px;
  align-items: center;
  margin-bottom: 14px;
  font-size: 11px;
}
.pipe-step { color: var(--ink-faint); }
.pipe-step.active { color: var(--accent); font-weight: 600; }
.pipe-step.done { color: var(--good); }
.pipe-sep { color: var(--line); }
.canvas-btns { display: flex; gap: 8px; margin-bottom: 20px; }
.cbtn-approve { background: var(--accent); color: #fff; border: none; border-radius: var(--radius-sm); padding: 8px 16px; font-size: 12px; font-weight: 600; cursor: pointer; }
.cbtn-edit { background: var(--bg); color: var(--ink-soft); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 8px 16px; font-size: 12px; font-weight: 500; cursor: pointer; }
.canvas-upcoming { font-size: 10px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 8px; }
.canvas-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 0;
  border-top: 1px solid var(--line);
  font-size: 12px;
}
.canvas-time { color: var(--ink-faint); width: 60px; flex-shrink: 0; }
.ch-badge { font-size: 10px; font-weight: 600; padding: 2px 7px; border-radius: 4px; flex-shrink: 0; }
.ch-li { background: var(--accent-soft); color: var(--accent); }
.ch-bl { background: #f0e8ff; color: #6b3fa0; }
.ch-nl { background: var(--good-soft); color: var(--good); }
.canvas-row-title { flex: 1; color: var(--ink-soft); }
.canvas-status { font-size: 11px; font-weight: 500; }
.s-ready { color: var(--good); }
.s-draft { color: var(--warn); }

/* STATS */
.stats-section { background: var(--ink); }
.stats-section .section-label { color: #7b91d4; }
.stats-section h2 { color: #fff; margin-bottom: 16px; }
.stats-section p { color: #8891b0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-top: 48px;
  border-radius: var(--radius);
  overflow: hidden;
}
@media (max-width: 700px) { .stats-grid { grid-template-columns: 1fr; } }
.stat-cell {
  background: rgba(255,255,255,0.06);
  padding: 28px 24px;
}
.stat-num {
  font-size: 42px;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: #fff;
  font-family: 'DM Mono', monospace;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-num span { font-size: 28px; }
.stat-label { font-size: 14px; color: #8891b0; line-height: 1.4; }

/* PRODUCTS */
.products-section { background: var(--bg); }
.products-section h2 { margin-bottom: 8px; }
.products-section > .container > p { max-width: 540px; margin-bottom: 40px; }
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 780px) { .product-grid { grid-template-columns: 1fr; } }
.product-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
}
.product-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.product-card h3 { margin-bottom: 8px; }
.product-price {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 12px;
}
.product-card p { font-size: 14px; line-height: 1.6; margin-bottom: 20px; }
.product-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* PROCESS */
.process-section { background: var(--paper); }
.process-section h2 { margin-bottom: 8px; }
.process-section > .container > p { max-width: 560px; margin-bottom: 48px; }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
@media (max-width: 780px) { .process-steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .process-steps { grid-template-columns: 1fr; } }
.process-step {
  background: var(--paper);
  padding: 24px 20px;
}
.step-num {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--ink-faint);
  margin-bottom: 8px;
}
.process-step h3 { font-size: 15px; margin-bottom: 8px; }
.process-step p { font-size: 13.5px; }

/* Q&A SECTION */
.qa-section { background: var(--bg); }
.qa-header { margin-bottom: 48px; }
.qa-header h2 { margin-bottom: 12px; }
.qa-header p { max-width: 560px; font-size: 16px; }
.qa-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (max-width: 700px) { .qa-grid { grid-template-columns: 1fr; } }
.qa-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  transition: border-color 0.15s;
}
.qa-card:hover { border-color: var(--accent); }
.qa-q {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.35;
  margin-bottom: 10px;
  text-wrap: balance;
}
.qa-a {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.65;
}

/* FOOTER */
footer {
  background: var(--ink);
  padding: 48px 24px;
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: end;
}
@media (max-width: 600px) { .footer-inner { grid-template-columns: 1fr; } }
.footer-logo { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.footer-tagline { font-size: 12px; color: #50597a; margin-bottom: 12px; }
.footer-desc { font-size: 13px; color: #8891b0; max-width: 340px; line-height: 1.55; margin-bottom: 16px; }
.footer-meta { font-size: 12px; color: #50597a; }
.footer-meta a { color: #50597a; text-decoration: none; }
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: 13px; color: #8891b0; text-decoration: none; font-weight: 500; }
.footer-links a:hover { color: #fff; }
.footer-cta {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  padding: 11px 24px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  white-space: nowrap;
}
