/* Shared styles for Steliara conquest / SEO landing pages.
   Brand tokens mirror pricing.html (Soft Aurora, light native macOS look). */
:root {
  --bg-primary:    #F9F7F2;
  --bg-secondary:  #FFFFFF;
  --bg-tertiary:   #F0EDE4;
  --text-primary:   #1A1614;
  --text-secondary: #5C554E;
  --text-muted:     #9B9289;
  --accent:         #1E3A5F;
  --accent-hover:   #2E4E7A;
  --accent-light:   #EBF0F7;
  --gold:           #B8935A;
  --success:        #2B7A4B;
  --border:         #E0DDD7;
  --shadow-sm: 0 1px 3px rgba(26,22,20,0.05), 0 1px 2px rgba(26,22,20,0.03);
  --shadow-md: 0 4px 16px rgba(26,22,20,0.08), 0 2px 6px rgba(26,22,20,0.04);
  --shadow-lg: 0 12px 32px rgba(26,22,20,0.10), 0 4px 12px rgba(26,22,20,0.06);
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition: 0.2s ease;
  --font-ui:      'DM Sans', system-ui, -apple-system, sans-serif;
  --font-display: 'Cormorant Garamond', Georgia, serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: var(--font-ui);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
.shell { max-width: 1000px; margin: 0 auto; padding: 0 24px; }

/* Header */
header.header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 0; border-bottom: 1px solid var(--border);
}
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--text-primary); font-weight: 600; font-size: 1.05rem; letter-spacing: 0.01em; }
.logo svg { display: block; }
.nav-links { display: flex; align-items: center; }
.nav-links a { color: var(--text-secondary); text-decoration: none; font-size: 0.92rem; margin-left: 22px; transition: color var(--transition); }
.nav-links a:hover { color: var(--accent); }
.header-actions { display: flex; align-items: center; gap: 12px; }
.btn-link { color: var(--text-secondary); text-decoration: none; font-size: 0.92rem; }
.btn-link:hover { color: var(--accent); }
.nav-cta { background: var(--accent); color: #fff !important; padding: 9px 18px; border-radius: var(--radius-md); text-decoration: none; font-size: 0.92rem; transition: background var(--transition); }
.nav-cta:hover { background: var(--accent-hover); }

/* Hero */
.hero { text-align: center; padding: 72px 0 28px; max-width: 760px; margin: 0 auto; }
.kicker { text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.78rem; color: var(--gold); font-weight: 600; margin-bottom: 14px; }
.hero h1 { font-family: var(--font-display); font-weight: 400; font-size: 3rem; line-height: 1.08; margin-bottom: 18px; }
.hero .sub { color: var(--text-secondary); font-size: 1.15rem; margin: 0 auto 26px; max-width: 620px; }
.cta-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn-primary { background: var(--accent); color: #fff; text-decoration: none; padding: 13px 26px; border-radius: var(--radius-md); font-weight: 600; font-size: 0.98rem; transition: background var(--transition); display: inline-block; }
.btn-primary:hover { background: var(--accent-hover); }
.btn-ghost { background: var(--bg-tertiary); color: var(--text-primary); text-decoration: none; padding: 13px 26px; border-radius: var(--radius-md); font-weight: 600; font-size: 0.98rem; transition: background var(--transition); display: inline-block; }
.btn-ghost:hover { background: var(--accent-light); }
.trial-note { color: var(--text-muted); font-size: 0.9rem; margin-top: 14px; }

/* Sections */
.section { padding: 40px 0; border-top: 1px solid var(--border); max-width: 820px; margin: 0 auto; }
.section:first-of-type { border-top: 0; }
.section h2 { font-family: var(--font-display); font-weight: 500; font-size: 2rem; margin-bottom: 16px; }
.section p { color: var(--text-secondary); font-size: 1.02rem; margin-bottom: 12px; }
.bullets { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-top: 8px; }
.bullets li { display: flex; gap: 11px; font-size: 1rem; color: var(--text-secondary); }
.bullets svg { flex-shrink: 0; margin-top: 4px; }
.trust { background: var(--accent-light); border-radius: var(--radius-lg); padding: 22px 24px; color: var(--text-primary); font-size: 1.05rem; margin: 8px auto; }

/* Comparison table */
.compare { width: 100%; border-collapse: collapse; margin-top: 10px; background: var(--bg-secondary); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.compare th, .compare td { text-align: left; padding: 13px 16px; font-size: 0.95rem; border-bottom: 1px solid var(--border); }
.compare thead th { background: var(--bg-tertiary); font-weight: 600; color: var(--text-primary); }
.compare td:last-child, .compare th:last-child { color: var(--accent); font-weight: 500; }
.compare tr:last-child td { border-bottom: 0; }

/* FAQ */
.faq { padding: 48px 0; max-width: 760px; margin: 0 auto; }
.faq h2 { font-family: var(--font-display); font-weight: 400; font-size: 2rem; text-align: center; margin-bottom: 24px; }
details { border-bottom: 1px solid var(--border); padding: 18px 4px; }
summary { cursor: pointer; font-weight: 500; list-style: none; display: flex; justify-content: space-between; align-items: center; }
summary::-webkit-details-marker { display: none; }
summary::after { content: '+'; color: var(--gold); font-size: 1.4rem; font-weight: 400; }
details[open] summary::after { content: '\2013'; }
details p { color: var(--text-secondary); font-size: 0.96rem; margin-top: 12px; }

/* Final CTA band */
.cta-band { text-align: center; background: var(--bg-secondary); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 44px 28px; margin: 32px 0; box-shadow: var(--shadow-sm); }
.cta-band h2 { font-family: var(--font-display); font-weight: 500; font-size: 1.9rem; margin-bottom: 14px; }
.cta-band p { color: var(--text-secondary); margin-bottom: 22px; }

/* Footer */
footer.site { border-top: 1px solid var(--border); padding: 30px 0; text-align: center; color: var(--text-muted); font-size: 0.85rem; }
footer.site a { color: var(--text-secondary); text-decoration: none; margin: 0 10px; }
footer.site a:hover { color: var(--accent); }

@media (max-width: 760px) {
  .shell { padding: 0 var(--space-4, 16px); }
  header.header { flex-wrap: wrap; gap: 12px; padding: 16px 0; }
  .header-actions { margin-left: auto; }
  .nav-links { order: 3; display: flex; width: 100%; gap: 16px; overflow-x: auto; }
  .nav-links a { flex: 0 0 auto; margin-left: 0; }
  .hero h1 { font-size: 2.3rem; }
  .section h2, .faq h2, .cta-band h2 { font-size: 1.6rem; }
  .compare { display: block; overflow-x: auto; }
  .compare th, .compare td { min-width: 148px; padding: 12px; }
}
