/* Shared styles for Founder Review SEO landing pages */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  background: #080808;
  color: #e8e8e8;
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: #4ECDC4; }
a:hover { opacity: 0.8; }

.page { max-width: 720px; margin: 0 auto; padding: 48px 24px 80px; }

.site-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 56px;
}
.logo {
  font-family: monospace;
  font-size: 12px;
  letter-spacing: 0.12em;
  color: #FF6B35;
  text-decoration: none;
  text-transform: uppercase;
}
.logo:hover { opacity: 0.8; }
.nav-links { display: flex; gap: 20px; }
.nav-links a {
  font-family: monospace;
  font-size: 11px;
  color: #555;
  letter-spacing: 0.08em;
  text-decoration: none;
}
.nav-links a:hover { color: #999; }

.page-label {
  font-family: monospace;
  font-size: 11px;
  color: #FF6B35;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
h1 {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 18px;
}
.intro {
  font-size: 1.05rem;
  color: #9ca3af;
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 640px;
}
h2 {
  font-size: 1.15rem;
  font-weight: 600;
  color: #fff;
  margin: 44px 0 14px;
}
h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #e8e8e8;
  margin: 20px 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: monospace;
}
p { color: #b0b0b0; margin-bottom: 14px; line-height: 1.75; }
ul, ol { padding-left: 20px; margin-bottom: 16px; }
li { color: #b0b0b0; margin-bottom: 7px; line-height: 1.65; }

.cta-row { display: flex; align-items: center; flex-wrap: wrap; gap: 16px; margin-top: 12px; }
.btn-primary {
  display: inline-block;
  background: #FF6B35;
  color: #fff;
  font-family: monospace;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.07em;
  padding: 11px 22px;
  border-radius: 6px;
  text-decoration: none;
  transition: opacity 0.15s;
  white-space: nowrap;
}
.btn-primary:hover { opacity: 0.85; }
.btn-teal {
  display: inline-block;
  background: #4ECDC4;
  color: #000;
  font-family: monospace;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.07em;
  padding: 11px 22px;
  border-radius: 6px;
  text-decoration: none;
  transition: opacity 0.15s;
  white-space: nowrap;
}
.btn-teal:hover { opacity: 0.85; }
.link-quiet {
  font-family: monospace;
  font-size: 11px;
  color: #555;
  letter-spacing: 0.06em;
  text-decoration: none;
  border-bottom: 1px solid #333;
  padding-bottom: 1px;
}
.link-quiet:hover { color: #888; border-bottom-color: #555; }

.card {
  background: #0d0d0d;
  border: 1px solid #1e1e1e;
  border-radius: 12px;
  padding: 22px 24px;
  margin-bottom: 12px;
}
.card-title {
  font-family: monospace;
  font-size: 12px;
  color: #4ECDC4;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}

.check-list { list-style: none; padding: 0; margin-bottom: 16px; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 7px 0;
  border-bottom: 1px solid #111;
  color: #c8c8c8;
}
.check-list li:last-child { border-bottom: none; }
.check-list li::before {
  content: "□";
  color: #4ECDC4;
  flex-shrink: 0;
  margin-top: 1px;
  font-size: 15px;
}

.cta-box {
  background: #0d0d0d;
  border: 1px solid #FF6B3533;
  border-radius: 14px;
  padding: 32px 28px;
  margin-top: 52px;
  text-align: center;
}
.cta-box p { margin-bottom: 20px; }

details {
  background: #0d0d0d;
  border: 1px solid #1e1e1e;
  border-radius: 10px;
  padding: 18px 20px;
  margin-bottom: 8px;
}
details[open] { border-color: #2d2d2d; }
summary {
  font-weight: 500;
  color: #e8e8e8;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
summary::-webkit-details-marker { display: none; }
.summary-icon { color: #4ECDC4; font-family: monospace; flex-shrink: 0; }
details[open] .summary-icon::before { content: "−"; }
.summary-icon::before { content: "+"; }
details p { margin-top: 14px; }
details a { color: #4ECDC4; }

.footer-nav {
  margin-top: 72px;
  padding-top: 28px;
  border-top: 1px solid #1a1a1a;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
}
.footer-nav a {
  font-family: monospace;
  font-size: 11px;
  color: #444;
  letter-spacing: 0.06em;
  text-decoration: none;
}
.footer-nav a:hover { color: #777; }

.divider { border: none; border-top: 1px solid #111; margin: 36px 0; }

.tag {
  display: inline-block;
  font-family: monospace;
  font-size: 11px;
  background: #1a1a1a;
  color: #888;
  border-radius: 4px;
  padding: 2px 8px;
  margin-right: 6px;
  margin-bottom: 6px;
}
.tag-orange { background: #FF6B3522; color: #FF6B35; }
.tag-teal { background: #4ECDC422; color: #4ECDC4; }

@media (max-width: 600px) {
  h1 { font-size: 1.55rem; }
  .page { padding: 32px 16px 64px; }
  .site-nav { margin-bottom: 36px; }
}
