/* pages.css — shared styles for Pärception subpages (speak, vibecode, vibecoded) */

:root {
  --magenta: #FF1B89;
  --magenta-soft: #FFE5F1;
  --white: #FDFDFD;
  --black: #1C1C1E;
  --grey: #6B6B6B;
  --grey-light: #E8E8E8;
  --green: #00C853;
  --yellow: #FFD600;
  --red: #FF5252;
  --blue: #3DF0FF;
}

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

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--white);
  color: var(--black);
  line-height: 1.7;
}

/* Header */
header {
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--grey-light);
}

.logo-link {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.2rem;
  color: var(--magenta);
}

.logo-sub {
  font-size: 0.8rem;
  color: var(--grey);
}

.header-cta {
  color: var(--magenta);
  text-decoration: none;
  font-weight: 500;
}

/* Layout */
.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Hero */
.hero {
  padding: 5rem 2rem;
  text-align: center;
}

.hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3rem;
  color: var(--black);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

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

.hero .subtitle {
  font-size: 1.3rem;
  color: var(--grey);
  max-width: 650px;
  margin: 0 auto 2rem;
}

.hero .honest-note {
  font-size: 1rem;
  color: var(--black);
  background: white;
  padding: 1rem 2rem;
  border-radius: 8px;
  display: inline-block;
  border-left: 4px solid var(--magenta);
}

/* Sections */
section { padding: 4rem 2rem; }
section:nth-child(even) { background: #fafafa; }

/* Typography */
h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  color: var(--black);
  margin-bottom: 1.5rem;
}

h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.3rem;
  color: var(--magenta);
  margin-bottom: 0.75rem;
}

h4 {
  font-family: 'Space Grotesk', sans-serif;
  margin-bottom: 0.5rem;
}

p { margin-bottom: 1.25rem; }
.muted { color: var(--grey); font-size: 0.95rem; }

/* Pros/Cons Grid */
.honest-grid,
.not-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.honest-box,
.not-box {
  padding: 2rem;
  border-radius: 8px;
}

.honest-box.good,
.not-box.yes {
  background: #e8f5e9;
  border-left: 4px solid var(--green);
}

.honest-box.bad,
.not-box.no {
  background: #ffebee;
  border-left: 4px solid var(--red);
}

.honest-box h4,
.not-box h4 {
  margin-bottom: 1rem;
}

.honest-box ul,
.not-box ul { list-style: none; }

.honest-box ul li,
.not-box ul li { padding: 0.4rem 0; font-size: 0.95rem; }

/* CTA Section */
.cta-section {
  text-align: center;
  padding: 5rem 2rem;
}

.cta-btn {
  display: inline-block;
  background: var(--magenta);
  color: white;
  padding: 1.25rem 3rem;
  font-size: 1.2rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
}

.cta-btn:hover {
  background: #e01777;
  transform: translateY(-2px);
}

/* Dark Box (pricing, hosting, popcorn) */
.dark-box {
  background: linear-gradient(135deg, var(--black) 0%, #2a2a2e 100%);
  color: white;
  border-radius: 12px;
  padding: 3rem;
  margin-top: 2rem;
  text-align: center;
}

.dark-box h3 { color: var(--magenta); font-size: 1.5rem; }
.dark-box p { color: #ccc; }

/* Card Grid */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid var(--grey-light);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* Mono / Code */
.mono {
  font-family: 'JetBrains Mono', monospace;
}

code {
  font-family: 'JetBrains Mono', monospace;
  background: var(--grey-light);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  font-size: 0.9rem;
}

/* Footer */
footer {
  text-align: center;
  padding: 3rem 2rem;
  background: var(--black);
  color: var(--grey);
}

footer a { color: var(--magenta); }

/* Responsive */
@media (max-width: 768px) {
  .honest-grid,
  .not-list { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.2rem; }
}
