/* SHAiPE — Main Stylesheet */

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

body {
  font-family: Georgia, serif;
  background: #fafaf8;
  color: #1a1a1a;
  line-height: 1.7;
}

/* Custom element wrappers — transparent to layout */
shaipe-header,
shaipe-footer {
  display: contents;
}

/* Header */

header {
  padding: 2rem;
  border-bottom: 1px solid #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wordmark {
  font-size: 1.6rem;
  font-family: 'Helvetica Neue', sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #1a1a1a;
  text-decoration: none;
}

.wordmark span,
.ai-accent {
  color: #5a7fff;
}

.ai-accent:hover {
  color: #3a5fdf;
}

.ai-accent-inverse {
  color: #1a1a1a;
}

.cta-btn .ai-accent-inverse {
  color: #1e3a8a;
}

.cta-btn:hover .ai-accent-inverse {
  color: #162d6e;
}

nav a {
  margin-left: 1.5rem;
  font-family: 'Helvetica Neue', sans-serif;
  font-size: 0.9rem;
  color: #555;
  text-decoration: none;
}

nav a:hover {
  color: #1a1a1a;
}

/* Hero */

.hero {
  max-width: 720px;
  margin: 5rem auto;
  padding: 0 2rem;
  text-align: center;
}

.hero h1 {
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 1.2rem;
}

.hero p {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 2rem;
}

/* Buttons */

.yes-btn,
.no-btn {
  font-family: 'Helvetica Neue', sans-serif;
  font-size: 0.9rem;
  padding: 0.5rem 1.25rem;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  letter-spacing: 0.03em;
  transition: background 0.15s;
}

.no-btn {
  background: #5a7fff26;
  color: #1a1a1a;
}

.no-btn:hover {
  background: #5a7fff40;
  box-shadow: 0 6px 16px #1a1a1a21;
}

.yes-btn {
  background: #5a7fff;
  color: #fff;
  box-shadow: 0 4px 12px #5a7fff4d;
}

.yes-btn:hover {
  background: #3a5fdf;
  box-shadow: 0 6px 16px #5a7fff66;
}

/* CTA Button */

.cta-btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  background: #5a7fff;
  color: #fff;
  font-family: 'Helvetica Neue', sans-serif;
  font-size: 0.95rem;
  border-color: #1B2236;
  border-radius: 4px;
  text-decoration: none;
  letter-spacing: 0.03em;
  cursor: pointer;
}

.cta-btn:hover {
  background: #3a5fdf;
}

/* Concept Cards */

.concepts {
  max-width: 720px;
  margin: 0 auto 4rem;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.concept-card {
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 1.5rem;
}

.concept-label {
  font-family: 'Helvetica Neue', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1a1a1a;
  margin-bottom: 0.75rem;
}

.concept-card p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 1rem;
}

.concept-card a {
  font-family: 'Helvetica Neue', sans-serif;
  font-size: 0.85rem;
  color: #5a7fff;
  text-decoration: none;
}

.concept-card a:hover { text-decoration: underline; }

/* Posts */

.posts {
  max-width: 720px;
  margin: 4rem auto;
  padding: 0 2rem;
}

.posts h2 {
  font-family: 'Helvetica Neue', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 2rem;
}

.post-card {
  border-top: 1px solid #e0e0e0;
  padding: 1.5rem 0;
}

.post-card .category {
  font-family: 'Helvetica Neue', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #5a7fff;
  margin-bottom: 0.4rem;
}

.post-card h3 {
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.post-card p {
  font-size: 0.95rem;
  color: #555;
}

/* Footer */

footer {
  margin-top: 6rem;
  padding: 2rem;
  border-top: 1px solid #e0e0e0;
  text-align: center;
}

.ai-tag {
  font-size: 0.72rem;
  color: #555;
  letter-spacing: 0.05em;
}

/* Written with AI. Directed by a human. */