/* Neon Pulse — clean, readable, no clutter */

:root {
  --bg: #fafaf8;
  --text: #1a1a1a;
  --muted: #666;
  --accent: #2a52be;
  --accent-hover: #1a3a9e;
  --border: #e0e0e0;
  --card-bg: #ffffff;
  --max-width: 720px;
}

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

html { font-size: 18px; }

body {
  font-family: Georgia, 'Times New Roman', serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Navigation */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  border-bottom: 1px solid var(--border);
  background: var(--card-bg);
}

.nav-home {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.nav-links { display: flex; gap: 1.5rem; }

.nav-links a {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.9rem;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.15s;
}

.nav-links a:hover { color: var(--text); }

/* Main content */
main {
  flex: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 3rem 1.5rem;
  width: 100%;
}

/* Hero */
.hero {
  text-align: center;
  padding: 4rem 0 3rem;
}

.hero h1 {
  font-size: 2.8rem;
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 500px;
  margin: 0 auto;
}

/* Section grid */
.section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}

@media (max-width: 600px) {
  .section-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2rem; }
}

.section-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.5rem;
}

.section-card h2 { margin-bottom: 0.5rem; font-size: 1.3rem; }
.section-card h2 a { color: var(--text); text-decoration: none; }
.section-card h2 a:hover { color: var(--accent); }
.section-card p { color: var(--muted); font-size: 0.95rem; margin-bottom: 1rem; }

/* Buttons */
.btn {
  display: inline-block;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  transition: color 0.15s;
}
.btn:hover { color: var(--accent-hover); }

/* Page header */
.page-header {
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.page-header h1 { font-size: 2.2rem; margin-bottom: 0.5rem; }
.page-intro { color: var(--muted); }

/* Story list */
.story-list { display: flex; flex-direction: column; gap: 1.5rem; }

.story-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.5rem;
  transition: border-color 0.15s;
}
.story-card:hover { border-color: var(--accent); }

.story-card h2 { font-size: 1.3rem; margin-bottom: 0.4rem; }
.story-card h2 a { color: var(--text); text-decoration: none; }
.story-card h2 a:hover { color: var(--accent); }
.story-card p { color: var(--muted); font-size: 0.95rem; margin-bottom: 0.8rem; }

.tags { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 0.8rem; }
.tag {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.75rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 0.15rem 0.5rem;
  color: var(--muted);
}

.read-link {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.85rem;
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

/* Story page */
.story { max-width: 100%; }

.story-header {
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.section-label {
  display: inline-block;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.story-header h1 { font-size: 2.2rem; line-height: 1.2; margin-bottom: 0.5rem; }
.story-summary { font-size: 1.05rem; color: var(--muted); }

/* Story body */
.story-body h2 { margin: 2rem 0 0.75rem; font-size: 1.3rem; }
.story-body h3 { margin: 1.5rem 0 0.5rem; font-size: 1.1rem; }
.story-body p { margin-bottom: 1.2rem; }
.story-body hr { border: none; border-top: 1px solid var(--border); margin: 2rem 0; }
.story-body strong { font-weight: 700; }
.story-body em { font-style: italic; }

.story-body blockquote {
  border-left: 3px solid var(--accent);
  margin: 1.5rem 0;
  padding: 0.5rem 0 0.5rem 1.2rem;
  color: var(--muted);
  font-style: italic;
}

/* Story footer */
.story-footer { margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid var(--border); }
.back-link {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.9rem;
  color: var(--muted);
  text-decoration: none;
}
.back-link:hover { color: var(--text); }

/* Comments */
.comments {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.comments h3 { font-size: 1.1rem; margin-bottom: 1rem; }

/* Footer */
footer {
  text-align: center;
  padding: 2rem;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.8rem;
  color: var(--muted);
  border-top: 1px solid var(--border);
}

/* Links */
a { color: var(--accent); }
a:hover { color: var(--accent-hover); }

/* Discipline block (new home page layout) */
.discipline-block { margin-top: 3rem; }
.discipline-intro { margin-bottom: 2rem; }
.discipline-tagline { margin-top: 0.5rem; color: var(--muted); font-size: 0.95rem; }

.discipline-section {
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.discipline-title {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 1rem;
}

.featured-list { list-style: none; display: flex; flex-direction: column; gap: 0.9rem; }
.featured-list li { display: flex; flex-direction: column; gap: 0.15rem; }

.featured-list a {
  font-size: 1rem;
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  line-height: 1.4;
}
.featured-list a:hover { color: var(--accent); }

.featured-desc {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.4;
}

.explore-more { margin-top: 2rem; padding-top: 0.5rem; }

/* Values highlight section */
.values-section {
  margin-top: 3.5rem;
  padding: 2rem;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
}
.values-title { font-size: 1.5rem; margin: 0.5rem 0 0.75rem; }
.values-desc { color: var(--muted); font-size: 0.95rem; margin-bottom: 1rem; }

/* About section */
.about-section { margin-top: 3.5rem; padding-top: 2rem; border-top: 1px solid var(--border); }
.about-title { font-size: 1.3rem; margin-bottom: 1rem; }
.about-section p { color: var(--muted); font-size: 0.95rem; margin-bottom: 0.8rem; }
.about-section p strong { color: var(--text); }
