/* Founding Creator Program - shared styles
   Palette/type match the main app's rebrand tokens (Milestone 9):
   noqBlack, noqMagenta, champagneGold, softWhite, Inter/Manrope. */

:root {
  --noq-black: #0B0B0D;
  --noq-black-soft: #121216;
  --noq-border: #202026;
  --electric-blue: #2F80FF;
  --noq-magenta: #FB2889;
  --noq-magenta-hover: #E01A73;
  --champagne-gold: #C8A96A;
  --soft-white: #F5F5F5;
  --text-muted: #9E9E9E;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--noq-black);
  color: var(--soft-white);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.5;
}

h1, h2, h3, .heading {
  font-family: 'Manrope', 'Inter', sans-serif;
  font-weight: 800;
  color: #fff;
  margin: 0;
}

a { color: inherit; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Top bar: logo + language switch */
.founders-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--noq-border);
}

.founders-topbar .logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

.founders-topbar .logo img.site-logo {
  display: block;
  height: 56px;
  width: auto;
  object-fit: contain;
}

.founders-topbar .logo .social-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.founders-topbar .logo .social-links img {
  display: block;
  width: 20px;
  height: 20px;
  object-fit: contain;
  opacity: 0.85;
  transition: opacity 0.15s;
}

.founders-topbar .logo .social-links a:hover img {
  opacity: 1;
}

.lang-switch a {
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  color: var(--text-muted);
  border: 1px solid var(--noq-border);
  padding: 6px 12px;
  border-radius: 999px;
  transition: color 0.15s, border-color 0.15s;
}

.lang-switch a:hover {
  color: #fff;
  border-color: var(--noq-magenta);
}

/* Hero */
.hero {
  text-align: center;
  padding: 30px 24px 72px;
}

.hero .eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--noq-magenta);
  margin-bottom: 16px;
}

.hero h1 {
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.15;
  margin-bottom: 12px;
}

.hero h1 .highlight { color: var(--noq-magenta); }

.hero .sub {
  font-size: clamp(18px, 2.4vw, 24px);
  font-weight: 600;
  color: var(--soft-white);
  margin-bottom: 40px;
}

.btn-primary {
  display: inline-block;
  background: var(--champagne-gold);
  color: var(--noq-black);
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 16px;
  text-decoration: none;
  padding: 16px 40px;
  border-radius: 10px;
  transition: background 0.15s, transform 0.15s;
}

.btn-primary:hover {
  background: #d8bd85;
  transform: translateY(-1px);
}

.hero .license-line {
  margin-top: 32px;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--champagne-gold);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.hero .license-disclaimer {
  margin-top: 8px;
  font-size: 13px;
  color: var(--text-muted);
}

/* Sections */
.section {
  padding: 64px 24px;
  border-top: 1px solid var(--noq-border);
}

.section h2 {
  font-size: clamp(24px, 3.5vw, 34px);
  text-align: center;
  margin-bottom: 40px;
}

.section-cta {
  text-align: center;
  padding: 56px 24px;
}

/* Draft/placeholder content marker - visible but not alarming, and
   deliberately styled so it can never be mistaken for shipped copy. */
.draft-notice {
  display: inline-block;
  background: rgba(251, 40, 137, 0.12);
  border: 1px dashed var(--noq-magenta);
  color: var(--noq-magenta);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 16px;
}

.placeholder-copy {
  color: var(--text-muted);
  font-style: italic;
}

/* FAQ */
.faq-item {
  border-bottom: 1px solid var(--noq-border);
  padding: 20px 0;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  list-style: none;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  float: right;
  color: var(--noq-magenta);
  font-size: 20px;
}

.faq-item[open] summary::after { content: '\2212'; }

.faq-item p {
  margin-top: 12px;
  color: var(--text-muted);
}

/* Benefits grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.benefit-card {
  background: var(--noq-black-soft);
  border: 1px solid var(--noq-border);
  border-radius: 14px;
  padding: 28px;
}

.benefit-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.benefit-card p {
  color: var(--text-muted);
  font-size: 14px;
  margin: 0;
}

/* Steps (How It Works) */
.steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.step .num {
  flex: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--noq-magenta);
  color: #fff;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step h3 {
  font-size: 16px;
  margin-bottom: 4px;
}

.step p {
  color: var(--text-muted);
  margin: 0;
  font-size: 14px;
}

/* Footer */
.founders-footer {
  border-top: 1px solid var(--noq-border);
  padding: 32px 24px 40px;
  text-align: center;
}

.founders-footer .legal-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 16px;
}

.founders-footer .legal-links a {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
}

.founders-footer .legal-links a:hover { color: var(--noq-magenta); }

.founders-footer .copyright {
  font-size: 12px;
  color: #6b6b70;
}

/* Legal / draft pages - light background per client spec, matching
   www.notonlyqueens.com/legal/ */
body.legal-page {
  background: #ffffff;
  color: #1a1a1a;
}

body.legal-page .legal-header {
  border-bottom: 1px solid #e5e5e5;
  padding: 20px 24px;
}

body.legal-page .legal-container {
  max-width: 820px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}

body.legal-page h1 {
  color: #0B0B0D;
  font-size: 28px;
  margin-bottom: 8px;
}

body.legal-page h2 {
  color: #0B0B0D;
  font-size: 20px;
  margin: 32px 0 12px;
  text-align: left;
}

body.legal-page p, body.legal-page li {
  color: #333;
  font-size: 15px;
  line-height: 1.7;
}

body.legal-page .draft-banner {
  background: #FFF4E5;
  border: 1px solid #FFCB8A;
  color: #8A5A00;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 16px;
  border-radius: 8px;
  margin-bottom: 24px;
  display: inline-block;
}

body.legal-page a.back-link {
  color: var(--noq-magenta, #FB2889);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}
