:root {
  --bg: #000000;
  --text: #f0f0f0;
  --text-bright: #ffffff;
  --muted: #b8b8b8;
  --border: #ffffff;
  --panel: #0a0a0a;
  --card-spacing: 1.5rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', 'Open Sans', 'Montserrat', sans-serif;
  line-height: 1.65;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--text-bright);
}

a {
  color: var(--text);
}

/* Better keyboard navigation focus */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--text);
  outline-offset: 2px;
}

.container {
  width: min(1420px, 94vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  background: rgba(0, 0, 0, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  z-index: 20;
}

.top-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 78px;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  text-decoration: none;
  border-bottom: 0;
  padding-bottom: 0;
  font-family: inherit;
  text-transform: none;
}

.brand-icon {
  width: 40px;
  height: 40px;
  border: 1px solid var(--text);
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  line-height: 1;
}

.brand-text {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(1.25rem, 2.4vw, 2rem);
  letter-spacing: 0.045em;
}

.top-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: clamp(1rem, 2vw, 2.3rem);
}

.top-nav a {
  text-decoration: none;
  border-bottom: 2px solid transparent;
  text-transform: uppercase;
  font-family: 'Cinzel', serif;
  font-size: 1.02rem;
  letter-spacing: 0.03em;
  padding-bottom: 0.45rem;
}

.top-nav a:hover,
.top-nav a.active {
  border-color: var(--text);
}

.brand:hover,
.brand.active {
  border-color: transparent;
}

.hero-main,
.page-main {
  padding: 3rem 0;
}

.hero-main {
  min-height: calc(100vh - 78px);
  display: grid;
  place-items: center;
}

.hero {
  width: min(940px, 100%);
  text-align: center;
}

.framing-banner {
  width: min(920px, 100%);
  margin: 0 auto 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.65);
  padding: 0.85rem 1rem;
  text-align: left;
}

.framing-banner p {
  margin: 0.2rem 0;
  color: var(--muted);
}

.hero h1 {
  margin: 0;
  text-transform: uppercase;
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.33rem);
  letter-spacing: 0.02em;
  line-height: 0.94;
}

.hero h1 span {
  display: block;
}

.tagline,
.muted {
  color: var(--muted);
}

.hero .tagline {
  margin: 1.6rem 0 1.25rem;
  font-family: 'Cinzel', serif;
  font-size: clamp(1rem, 1.65vw, 1.8rem);
}

.hero-subheading {
  margin: -0.4rem 0 1.2rem;
  color: #a8a8a8;
  font-size: clamp(0.88rem, 1.15vw, 1.05rem);
  letter-spacing: 0.01em;
}

.search-row {
  margin: 1.2rem auto 0;
  width: min(760px, 100%);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0;
  border: 1px solid var(--border);
}

.home-search-wrap {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0 0.9rem;
}

.search-icon {
  color: var(--muted);
  font-size: 1.2rem;
  line-height: 1;
}

input,
select,
textarea,
button {
  background: #000;
  color: var(--text);
  border: 1px solid var(--border);
  padding: 0.72rem 0.8rem;
  font: inherit;
}

input,
select,
textarea {
  width: 100%;
}

.home-search-wrap input {
  border: 0;
  padding-left: 0;
}

.search-row button {
  min-width: 130px;
  border: 0;
  border-left: 1px solid var(--border);
  background: #e6e6e6;
  color: #000;
  text-transform: uppercase;
  font-family: 'Cinzel', serif;
  font-weight: 700;
  letter-spacing: 0.03em;
}

button {
  cursor: pointer;
}

.scroll-indicator {
  margin-top: 0.9rem;
  color: #808080;
  font-family: 'Cinzel', serif;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
}

.scroll-indicator::after {
  content: '';
  display: block;
  width: 1px;
  height: 56px;
  margin: 0.55rem auto 0;
  background: rgba(255, 255, 255, 0.4);
}

.panel {
  border: 1px solid var(--border);
  background: var(--panel);
  padding: 1.5rem;
}

.panel p {
  line-height: 1.7;
}

.usage-note {
  margin-top: 2rem;
  text-align: left;
}

.framing-block {
  margin-bottom: 1.2rem;
}

.framing-block h2 {
  margin-top: 0;
}

.directory-intro {
  border: 1px solid rgba(255, 255, 255, 0.65);
  background: #060606;
  padding: 1.5rem;
  margin-bottom: 1.75rem;
}

.directory-intro p {
  margin: 0 0 1rem;
  color: var(--muted);
  line-height: 1.75;
}

.directory-intro p:last-child {
  margin-bottom: 0;
}

.editorial-stance {
  border: 1px solid rgba(255, 255, 255, 0.65);
  background: #060606;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.editorial-stance h2 {
  margin: 0 0 1rem;
}

.editorial-stance p {
  margin: 0 0 1rem;
  color: var(--muted);
  line-height: 1.75;
}

.editorial-stance p:last-child {
  margin-bottom: 0;
}

.filters {
  margin: 1.5rem 0 2rem;
}

.filter-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.8rem;
}

.filter-grid label {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.35rem;
  color: var(--muted);
}

.tool-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--card-spacing);
}

.tool-card {
  border: 1px solid var(--border);
  padding: var(--card-spacing);
  background: var(--panel);
  transition: border-color 0.2s ease;
  position: relative;
}

.card-rating {
  position: absolute;
  top: 0.6rem;
  right: 0.6rem;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
}

.card-stars-filled {
  color: #c9a227;
}

.card-stars-empty {
  color: #4a4a4a;
}

.tool-card:hover {
  border-color: var(--muted);
}

.tool-card h3 {
  margin-top: 0;
  margin-bottom: 0.65rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.tool-card p {
  line-height: 1.7;
  margin-bottom: 0.85rem;
}

.tool-card p:last-child {
  margin-bottom: 0;
}

.category-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.opinion-line {
  color: #d8d8d8;
  border-left: 2px solid rgba(255, 255, 255, 0.6);
  padding-left: 0.55rem;
}

.about-hook {
  border-left: 2px solid rgba(255, 255, 255, 0.75);
  padding-left: 0.75rem;
  color: #d6d6d6;
}

.meta-row {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin: 1rem 0;
}

.pill {
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: var(--muted);
  padding: 0.3rem 0.6rem;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.pill:hover {
  border-color: var(--text-bright);
  color: var(--text-bright);
  cursor: pointer;
}

.detail-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.logo-mark {
  width: 56px;
  height: 56px;
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  font-weight: 700;
}

.detail-block + .detail-block {
  margin-top: 1rem;
}

/* Star Rating System */
.rating-block {
  background: linear-gradient(135deg, #0d0d0d 0%, #080808 100%);
  border: 1px solid rgba(255, 200, 50, 0.3);
}

.rating-display {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.star-rating {
  display: inline-flex;
  gap: 0.15rem;
  font-size: 1.5rem;
}

.star {
  display: inline-block;
  transition: transform 0.2s ease;
}

.star.filled {
  color: #ffc832;
  text-shadow: 0 0 8px rgba(255, 200, 50, 0.5);
}

.star.half {
  color: #ffc832;
  position: relative;
  text-shadow: 0 0 8px rgba(255, 200, 50, 0.3);
}

.star.empty {
  color: #444;
}

.rating-number {
  font-size: 1.1rem;
  color: var(--muted);
  margin-left: 0.5rem;
  font-weight: 600;
}

.no-rating {
  color: var(--muted);
  font-style: italic;
}

.personal-opinion {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.personal-opinion h3 {
  margin: 0 0 0.75rem;
  font-size: 1rem;
  color: var(--text-bright);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: 'Cinzel', serif;
}

.personal-opinion p {
  margin: 0;
  color: #d0d0d0;
  line-height: 1.8;
  font-size: 0.98rem;
}

.submit-form {
  display: grid;
  gap: 0.6rem;
}

.site-footer {
  padding: 3rem 0 2rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.site-footer p {
  margin: 0 0 0.5rem;
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

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

.page-section {
  margin-bottom: 2rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Featured Categories Section */
.featured-categories {
  margin-top: 3rem;
  padding: 2rem 0;
}

.featured-categories h2 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: var(--panel);
  text-decoration: none;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.category-card:hover,
.category-card:focus {
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
  outline: none;
}

.category-card-icon {
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
}

.category-card-title {
  color: var(--text-bright);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.3rem;
}

.category-card-desc {
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.4;
}

/* Explore More Section */
.explore-more {
  padding: 1.5rem 0;
}

.explore-more h2 {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.explore-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.explore-links a {
  color: var(--text);
  text-decoration: none;
  font-size: 0.95rem;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: border-color 0.2s ease, color 0.2s ease;
}

.explore-links a:hover {
  border-color: var(--text-bright);
  color: var(--text-bright);
}

/* SEO Content Section */
.seo-content {
  margin-top: 1.5rem;
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.seo-content h2 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--muted);
}

.seo-content p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 0.8rem;
}

.seo-content a {
  color: var(--text);
  text-decoration: underline;
}

.seo-content a:hover {
  color: var(--text-bright);
}

/* Category Pages */
.breadcrumb {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.breadcrumb a {
  color: var(--muted);
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--text-bright);
}

.category-header {
  margin-bottom: 2rem;
}

.category-header h1 {
  margin-bottom: 0.5rem;
}

.category-description {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.category-intro {
  margin-bottom: 2rem;
}

.category-intro h2 {
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
}

.category-intro p {
  line-height: 1.7;
  margin-bottom: 0.8rem;
}

.category-tools {
  margin-bottom: 2rem;
}

.category-tools h2 {
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 0.5rem;
}

.tool-list-simple {
  display: grid;
  gap: 1.5rem;
}

.tool-item {
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 1.25rem;
  background: var(--panel);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.tool-item:hover,
.tool-item:focus-within {
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

.tool-item h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
}

.tool-item h3 a {
  color: var(--text-bright);
  text-decoration: none;
}

.tool-item h3 a:hover {
  text-decoration: underline;
}

.tool-item p {
  margin: 0 0 0.5rem;
  line-height: 1.6;
}

.tool-item .meta {
  color: var(--muted);
  font-size: 0.85rem;
  margin: 0;
}

.related-categories {
  margin-top: 2rem;
}

.related-categories h2 {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.related-categories ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.related-categories li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.related-categories a {
  color: var(--text-bright);
}

/* Related Tools on Detail Pages */
.related-tools ul {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0;
}

.related-tools li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
  padding-left: 1rem;
  position: relative;
}

.related-tools li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--muted);
}

.related-tools a {
  color: var(--text-bright);
  text-decoration: none;
}

.related-tools a:hover {
  text-decoration: underline;
}

/* Comparison Pages */
.comparison-article,
.alternatives-article,
.best-for-article {
  max-width: 800px;
}

.comparison-header h1,
.alternatives-article h1,
.best-for-article h1 {
  margin-bottom: 0.75rem;
}

.comparison-intro,
.intro-text {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.comparison-overview {
  margin-bottom: 2rem;
}

.comparison-table {
  display: grid;
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.comparison-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}

.comparison-header-row {
  background: rgba(255, 255, 255, 0.05);
}

.comparison-cell {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.95rem;
}

.comparison-row:last-child .comparison-cell {
  border-bottom: 0;
}

.comparison-section {
  margin-bottom: 2rem;
}

.comparison-section h2 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.comparison-section h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
}

.comparison-section ul {
  margin: 0.5rem 0 1rem 1.5rem;
}

.comparison-section li {
  margin-bottom: 0.4rem;
  line-height: 1.6;
}

.recommendation-box {
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 1.25rem;
  margin-bottom: 1rem;
  background: var(--panel);
}

.recommendation-box h3 {
  margin: 0 0 0.75rem;
  font-size: 1rem;
}

.recommendation-box ul {
  margin: 0;
  padding-left: 1.25rem;
}

.recommendation-box li {
  margin-bottom: 0.3rem;
  line-height: 1.5;
}

/* Alternatives Pages */
.why-alternatives {
  margin-bottom: 2rem;
}

.alternatives-list {
  margin-bottom: 2rem;
}

.alternatives-list h2 {
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 0.5rem;
}

.alternative-item {
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 1.25rem;
  margin-bottom: 1rem;
  background: var(--panel);
}

.alternative-item h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
}

.alternative-item h3 a {
  color: var(--text-bright);
  text-decoration: none;
}

.alternative-item h3 a:hover {
  text-decoration: underline;
}

.alternative-item p {
  margin: 0 0 0.5rem;
  line-height: 1.6;
}

.alternative-item .meta {
  color: var(--muted);
  font-size: 0.85rem;
  margin: 0;
}

.alternatives-summary ul {
  padding-left: 1.25rem;
}

.alternatives-summary li {
  margin-bottom: 0.4rem;
  line-height: 1.6;
}

/* Best-For Pages */
.criteria-section {
  margin-bottom: 2rem;
}

.criteria-section ul {
  padding-left: 1.25rem;
}

.criteria-section li {
  margin-bottom: 0.4rem;
  line-height: 1.6;
}

.tools-list {
  margin-bottom: 2rem;
}

.tools-list h2 {
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 0.5rem;
}

.tool-recommendation {
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 1.25rem;
  margin-bottom: 1rem;
  background: var(--panel);
}

.tool-recommendation h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
}

.tool-recommendation h3 a {
  color: var(--text-bright);
  text-decoration: none;
}

.tool-recommendation h3 a:hover {
  text-decoration: underline;
}

.tool-recommendation p {
  margin: 0 0 0.5rem;
  line-height: 1.6;
}

.why-beginner {
  color: var(--muted);
  font-size: 0.9rem;
  border-left: 2px solid rgba(255, 255, 255, 0.3);
  padding-left: 0.75rem;
  margin-top: 0.75rem;
}

.getting-started ol {
  padding-left: 1.5rem;
}

.getting-started li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.comparison-links ul,
.related-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.comparison-links li,
.related-links li {
  margin-bottom: 0.4rem;
}

.comparison-links a,
.related-links a {
  color: var(--text-bright);
  text-decoration: none;
}

.comparison-links a:hover,
.related-links a:hover {
  text-decoration: underline;
}

@media (max-width: 920px) {
  .filter-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tool-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .category-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .top-nav ul {
    gap: 1rem;
  }

  .top-nav a {
    font-size: 0.92rem;
  }
}

@media (max-width: 760px) {
  .hero-main {
    min-height: auto;
    padding-top: 2rem;
  }

  .search-row {
    grid-template-columns: 1fr;
  }

  .search-row button {
    border-left: 0;
    border-top: 1px solid var(--border);
  }

  .usage-note {
    margin-top: 1.3rem;
  }
}

@media (max-width: 640px) {
  .top-nav {
    flex-direction: column;
    align-items: flex-start;
    padding: 0.8rem 0;
  }

  .top-nav ul {
    flex-wrap: wrap;
  }

  .filter-grid,
  .tool-grid {
    grid-template-columns: 1fr;
  }

  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .explore-links {
    flex-direction: column;
    gap: 0.75rem;
  }

  .explore-links a {
    text-align: center;
  }

  .brand-text {
    font-size: 1.15rem;
  }
}

/* Guide Article Pages */
.guide-article {
  max-width: 800px;
}

.guide-header {
  margin-bottom: 2rem;
}

.guide-header h1 {
  margin-bottom: 0.75rem;
}

.guide-subtitle {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.7;
}

.guide-section {
  margin-bottom: 2.5rem;
}

.guide-section h2 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding-bottom: 0.5rem;
}

.guide-section h3 {
  font-size: 1.1rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.guide-section p {
  line-height: 1.75;
  margin-bottom: 1rem;
}

.guide-section ul,
.guide-section ol {
  margin: 0.5rem 0 1.5rem 1.5rem;
}

.guide-section li {
  margin-bottom: 0.5rem;
  line-height: 1.65;
}

.key-questions {
  margin-left: 1.5rem;
}

.key-questions li {
  margin-bottom: 0.75rem;
}

.decision-block,
.skill-block,
.budget-block {
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 1.25rem;
  margin-bottom: 1rem;
  background: var(--panel);
}

.decision-block h3,
.skill-block h3,
.budget-block h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
}

.recommendations {
  margin-top: 0.75rem;
}

.recommendations ul {
  margin: 0.5rem 0 0 1.25rem;
}

.use-case-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}

.use-case {
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 1rem;
  background: var(--panel);
}

.use-case h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
}

.use-case p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
}

.pitfall-list {
  display: grid;
  gap: 1rem;
}

.pitfall {
  border-left: 3px solid rgba(255, 100, 100, 0.5);
  padding-left: 1rem;
}

.pitfall h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  color: var(--text-bright);
}

.pitfall p {
  margin: 0;
  color: var(--muted);
}

.example-block {
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 1.25rem;
  margin-bottom: 1rem;
  background: var(--panel);
}

.example-block h3 {
  margin: 0 0 0.75rem;
  font-size: 1rem;
}

.example-block p {
  margin: 0 0 0.5rem;
  font-size: 0.95rem;
}

.step-section {
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  background: var(--panel);
}

.step-section h3 {
  margin: 0 0 1rem;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 1px solid var(--text);
  font-size: 0.9rem;
  font-weight: 600;
}

.prompt-comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1rem 0;
}

.prompt-example {
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.prompt-example.bad {
  border-color: rgba(255, 100, 100, 0.3);
}

.prompt-example.good {
  border-color: rgba(100, 255, 100, 0.3);
}

.prompt-example h4 {
  margin: 0 0 0.5rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.prompt-example.bad h4 {
  color: #ff8080;
}

.prompt-example.good h4 {
  color: #80ff80;
}

.prompt-example p {
  margin: 0;
  font-family: monospace;
  font-size: 0.9rem;
  color: var(--muted);
}

.guide-cta {
  margin-top: 2rem;
  text-align: center;
}

.guide-cta h2 {
  border: none;
  margin-bottom: 0.75rem;
}

.cta-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.25rem;
}

.cta-link {
  display: inline-block;
  padding: 0.75rem 1.25rem;
  border: 1px solid var(--text);
  text-decoration: none;
  color: var(--text-bright);
  font-weight: 500;
  transition: background 0.2s ease, color 0.2s ease;
}

.cta-link:hover {
  background: var(--text);
  color: var(--bg);
}

/* Projects Pages */
.projects-header {
  margin-bottom: 2rem;
}

.projects-header h1 {
  margin-bottom: 0.5rem;
}

.projects-description {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.projects-intro {
  margin-bottom: 2rem;
}

.projects-intro h2 {
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
}

.projects-intro p {
  line-height: 1.7;
  margin-bottom: 0.8rem;
}

.projects-filters {
  margin-bottom: 2rem;
}

.projects-filters .filter-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.projects-list {
  margin-bottom: 2rem;
}

.projects-list h2 {
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 0.5rem;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.project-card {
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 1.5rem;
  background: var(--panel);
  transition: border-color 0.2s ease;
  display: flex;
  flex-direction: column;
}

.project-card:hover {
  border-color: rgba(255, 255, 255, 0.4);
}

.project-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
}

.project-card h3 a {
  color: var(--text-bright);
  text-decoration: none;
}

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

.project-subtitle {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}

.project-meta {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.project-type,
.project-complexity {
  font-size: 0.8rem;
  padding: 0.25rem 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  text-transform: capitalize;
}

.project-tools {
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.project-link {
  color: var(--text-bright);
  text-decoration: none;
  font-size: 0.9rem;
}

.project-link:hover {
  text-decoration: underline;
}

.project-card-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
  margin-top: auto;
}

.project-demo-btn {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  background: var(--text-bright);
  color: var(--bg);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.project-demo-btn:hover {
  background: #e0e0e0;
  transform: translateY(-1px);
}

.project-card.has-demo {
  border-color: rgba(255, 255, 255, 0.4);
}

.no-results {
  color: var(--muted);
  font-style: italic;
  text-align: center;
  padding: 2rem;
  border: 1px dashed rgba(255, 255, 255, 0.2);
  margin: 1rem 0;
}

.no-results a {
  color: var(--text-bright);
  text-decoration: underline;
}

.submit-project {
  text-align: center;
  margin-bottom: 2rem;
}

.submit-project h2 {
  margin-bottom: 0.75rem;
}

.submit-project p {
  margin-bottom: 1rem;
}

.related-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.related-content li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.related-content a {
  color: var(--text-bright);
  text-decoration: none;
}

.related-content a:hover {
  text-decoration: underline;
}

/* Project Detail Page */
.project-article {
  max-width: 900px;
}

.project-header {
  margin-bottom: 2rem;
}

.project-header h1 {
  margin-bottom: 0.5rem;
}

.project-header .project-subtitle {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.project-meta-header {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.95rem;
}

.project-section {
  margin-bottom: 2.5rem;
}

.project-section h2 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding-bottom: 0.5rem;
}

.project-section p {
  line-height: 1.75;
  margin-bottom: 1rem;
}

.prompt-block {
  background: #080808;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 1.25rem;
  overflow-x: auto;
}

.prompt-block pre {
  margin: 0;
  font-family: 'Consolas', 'Monaco', monospace;
  font-size: 0.9rem;
  line-height: 1.6;
  white-space: pre-wrap;
  color: var(--muted);
}

.screenshots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.screenshot-item {
  border: 1px solid rgba(255, 255, 255, 0.15);
  overflow: hidden;
}

.screenshot-item img {
  width: 100%;
  height: auto;
  display: block;
}

.screenshot-caption {
  padding: 1rem;
  margin: 0;
  font-size: 0.9rem;
  background: var(--panel);
}

.project-demo-section {
  background: rgba(255, 255, 255, 0.03);
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 2rem;
  margin: 2rem 0;
  text-align: center;
}

.project-demo-section h2 {
  margin-top: 0;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.demo-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.demo-link {
  display: inline-block;
  padding: 0.75rem 1.25rem;
  border: 1px solid var(--text);
  text-decoration: none;
  color: var(--text-bright);
  font-weight: 500;
  transition: background 0.2s ease, color 0.2s ease;
}

.demo-link.demo-button {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  background: var(--text-bright);
  color: var(--bg);
  border: 2px solid var(--text-bright);
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.15);
}

.demo-link.demo-button:hover {
  background: transparent;
  color: var(--text-bright);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 255, 255, 0.2);
}

.demo-link:hover {
  background: var(--text);
  color: var(--bg);
}

.outcome-list {
  margin: 0;
  padding-left: 1.5rem;
}

.outcome-list li {
  margin-bottom: 0.5rem;
  line-height: 1.65;
}

.outcome-list.worked li::marker {
  color: #80ff80;
}

.outcome-list.didnt-work li::marker {
  color: #ff8080;
}

.lessons-list {
  margin: 0;
  padding-left: 1.5rem;
}

.lessons-list li {
  margin-bottom: 0.5rem;
  line-height: 1.65;
}

.project-cta {
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 2rem;
  background: var(--panel);
}

.project-cta h2 {
  border: none;
  margin-bottom: 0.5rem;
}

.tool-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.tool-link {
  display: inline-block;
  padding: 0.6rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  text-decoration: none;
  color: var(--text);
  transition: border-color 0.2s ease, color 0.2s ease;
}

.tool-link:hover {
  border-color: var(--text-bright);
  color: var(--text-bright);
}

.project-nav {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.project-nav a {
  color: var(--text);
  text-decoration: none;
}

.project-nav a:hover {
  color: var(--text-bright);
  text-decoration: underline;
}

@media (max-width: 760px) {
  .use-case-grid {
    grid-template-columns: 1fr;
  }

  .prompt-comparison {
    grid-template-columns: 1fr;
  }

  .projects-grid {
    grid-template-columns: 1fr;
  }

  .projects-filters .filter-grid {
    grid-template-columns: 1fr;
  }

  .project-meta-header {
    flex-direction: column;
    gap: 0.5rem;
  }
}

/* ============================================
   Idea Clarifier Tool Page Styles
   ============================================ */

.tool-page {
  min-height: calc(100vh - 78px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 0;
}

.tool-container {
  max-width: 900px;
  width: 100%;
}

.tool-hero {
  text-align: center;
  margin-bottom: 3rem;
}

.tool-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.tool-hero p {
  font-size: 1.2rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.tool-hero .tagline-italic {
  font-style: italic;
  margin-top: 1rem;
  color: var(--muted);
}

.launch-btn {
  display: inline-block;
  padding: 1.25rem 3rem;
  background: var(--text);
  color: var(--bg);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  border: 2px solid var(--text);
}

.launch-btn:hover {
  background: transparent;
  color: var(--text);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.feature-card {
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 2rem;
}

.feature-card.border-input {
  border-left: 4px solid #f59e0b;
}

.feature-card.border-ai {
  border-left: 4px solid #3b82f6;
}

.feature-card.border-human {
  border-left: 4px solid #a855f7;
}

.feature-card.border-output {
  border-left: 4px solid #10b981;
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.feature-card h3 {
  font-size: 1.15rem;
  margin: 0 0 0.75rem;
}

.feature-card h3.color-input {
  color: #f59e0b;
}

.feature-card h3.color-ai {
  color: #3b82f6;
}

.feature-card h3.color-human {
  color: #a855f7;
}

.feature-card h3.color-output {
  color: #10b981;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.tech-stack {
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 2rem;
  margin: 2rem 0;
}

.tech-stack h3 {
  margin: 0 0 1.5rem;
  text-align: center;
}

.tech-pills {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.tech-pill {
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.9rem;
}

.setup-notice {
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.3);
  padding: 1.5rem;
  margin: 2rem 0;
  text-align: center;
}

.setup-notice h3 {
  margin: 0 0 0.75rem;
  color: #f59e0b;
}

.setup-notice p {
  margin: 0 0 1rem;
  line-height: 1.6;
}

.setup-notice code {
  background: rgba(0, 0, 0, 0.5);
  padding: 0.25rem 0.5rem;
  font-family: 'Consolas', 'Monaco', monospace;
  font-size: 0.9rem;
}

.steps-list {
  text-align: left;
  max-width: 600px;
  margin: 1.5rem auto 0;
}

.steps-list ol {
  margin: 0;
  padding-left: 1.5rem;
}

.steps-list li {
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.panel.centered-panel {
  text-align: center;
  margin-top: 3rem;
}

.panel.centered-panel p {
  margin-bottom: 2rem;
}

.panel.centered-panel .features-grid {
  margin-top: 1.5rem;
}

@media (max-width: 768px) {
  .tool-hero h1 {
    font-size: 2rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .launch-btn {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
}

/* ============================================
   New Hero CTA Buttons
   ============================================ */

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.btn-primary {
  display: inline-block;
  padding: 0.9rem 2rem;
  background: var(--text-bright);
  color: var(--bg);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.02em;
  border: 2px solid var(--text-bright);
  transition: background 0.2s ease, color 0.2s ease;
}

.btn-primary:hover {
  background: transparent;
  color: var(--text-bright);
}

.btn-secondary {
  display: inline-block;
  padding: 0.9rem 2rem;
  background: transparent;
  color: var(--text-bright);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.4);
  transition: border-color 0.2s ease, color 0.2s ease;
}

.btn-secondary:hover {
  border-color: var(--text-bright);
  color: var(--text-bright);
}

/* ============================================
   Real Builds Section (Homepage)
   ============================================ */

.real-builds-section {
  padding: 3rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.real-builds-section > h2 {
  font-size: 1.4rem;
  margin-bottom: 2rem;
}

.builds-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.build-card {
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 1.75rem;
  background: var(--panel);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: border-color 0.2s ease;
}

.build-card:hover {
  border-color: rgba(255, 255, 255, 0.4);
}

.build-card h3 {
  margin: 0;
  font-size: 1.1rem;
}

.build-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
  flex: 1;
}

.btn-card {
  display: inline-block;
  padding: 0.6rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.4);
  text-decoration: none;
  color: var(--text-bright);
  font-size: 0.9rem;
  align-self: flex-start;
  transition: background 0.2s ease, color 0.2s ease;
}

.btn-card:hover {
  background: var(--text-bright);
  color: var(--bg);
}

/* ============================================
   Framework Section (Homepage)
   ============================================ */

.framework-section {
  padding: 3rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.framework-section > h2 {
  font-size: 1.4rem;
  margin-bottom: 2rem;
}

.framework-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.framework-item {
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 1.5rem;
  background: var(--panel);
}

.framework-item h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-family: 'Cinzel', serif;
  color: var(--text-bright);
}

.framework-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

/* ============================================
   Start Here Paths Section (Homepage)
   ============================================ */

.start-here-section {
  padding: 3rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.start-here-section > h2 {
  font-size: 1.4rem;
  margin-bottom: 2rem;
}

.start-paths {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.start-path {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: var(--panel);
  text-decoration: none;
  transition: border-color 0.2s ease;
}

.start-path:hover {
  border-color: rgba(255, 255, 255, 0.5);
}

.path-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-bright);
  flex-shrink: 0;
  font-family: 'Cinzel', serif;
}

.path-text {
  color: var(--text);
  font-size: 0.92rem;
  line-height: 1.5;
}

/* ============================================
   Builds Hub Page (builds.html)
   ============================================ */

.builds-article {
  max-width: 820px;
}

.build-block {
  margin-bottom: 2rem;
}

.build-block > h2 {
  margin-top: 0;
  margin-bottom: 1.25rem;
  font-size: 1.3rem;
}

.build-details {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 0.5rem 1.5rem;
  margin: 0 0 1.5rem;
}

.build-details dt {
  color: var(--muted);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-family: 'Cinzel', serif;
  padding-top: 0.15rem;
}

.build-details dd {
  margin: 0;
  line-height: 1.65;
  color: var(--text);
  font-size: 0.95rem;
}

.build-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ============================================
   Start Here Page (start-here.html)
   ============================================ */

.start-here-article {
  max-width: 820px;
}

.start-paths-list {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.start-path-block {
  display: flex;
  gap: 1.5rem;
  text-decoration: none;
  transition: border-color 0.2s ease;
}

.start-path-block:hover {
  border-color: rgba(255, 255, 255, 0.5);
}

.path-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-bright);
  flex-shrink: 0;
  align-self: flex-start;
  font-family: 'Cinzel', serif;
}

.start-path-block h2 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

.start-path-block p {
  margin: 0 0 0.75rem;
  color: var(--muted);
  line-height: 1.65;
  font-size: 0.95rem;
}

.path-cta {
  color: var(--text-bright);
  font-size: 0.9rem;
  display: block;
}

/* Guide article related section */
.related-section {
  margin-top: 2rem;
}

.related-section h2 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.related-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.related-section li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.related-section a {
  color: var(--text-bright);
  text-decoration: none;
}

.related-section a:hover {
  text-decoration: underline;
}

@media (max-width: 920px) {
  .builds-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .framework-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .start-paths {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .builds-cards {
    grid-template-columns: 1fr;
  }
  .framework-grid {
    grid-template-columns: 1fr;
  }
  .start-paths {
    grid-template-columns: 1fr;
  }
  .build-details {
    grid-template-columns: 1fr;
  }
  .hero-main {
    min-height: auto;
  }
}

/* ============================================
   JavaScript Fallback Styles
   ============================================ */

.js-fallback {
  display: block;
}

/* Hide fallback when JS has loaded content */
.panel:not(:empty) .js-fallback {
  display: none;
}

/* Hide noscript content when JS is enabled */
noscript {
  display: block;
}

/* ============================================
   Explore Groups (Start Building section)
   ============================================ */

.explore-groups {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 1.5rem;
}

.explore-group h3 {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.75rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}

.explore-group nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.explore-group nav a {
  color: var(--text-bright);
  text-decoration: none;
  font-size: 0.95rem;
  line-height: 1.4;
}

.explore-group nav a:hover {
  text-decoration: underline;
}

/* ============================================
   Final CTA Section
   ============================================ */

.final-cta {
  padding: 4rem 0;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.final-cta h2 {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}

.final-cta p {
  color: var(--muted);
  margin-bottom: 2rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 640px) {
  .explore-groups {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* ============================================
   Hero Proof & Keyword Lines
   ============================================ */

.hero-proof {
  font-size: 0.85rem;
  color: var(--muted);
  letter-spacing: 0.04em;
  margin-top: 0.5rem;
  margin-bottom: 0;
}

.hero-keyword {
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 0.5rem;
  margin-bottom: 0;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   Builds Page
   ============================================ */

.builds-hero {
  padding: 3rem 0 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.builds-hero h1 {
  margin-bottom: 1rem;
}

.builds-sub {
  color: var(--muted);
  margin-top: 0.5rem;
  font-size: 0.95rem;
}

.builds-links {
  padding: 1rem 0;
  font-size: 0.9rem;
  color: var(--muted);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.builds-links a {
  color: var(--text-bright);
  text-decoration: none;
}

.builds-links a:hover {
  text-decoration: underline;
}

.build-block {
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.build-block h2 {
  margin-bottom: 1.25rem;
}

.build-problem,
.build-constraint,
.build-solution,
.build-result {
  margin-bottom: 0.75rem;
  line-height: 1.65;
}

.build-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.build-related {
  margin-top: 1.25rem;
  font-size: 0.875rem;
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.build-related p {
  margin: 0;
  color: var(--muted);
}

.build-related a {
  color: var(--text-bright);
  text-decoration: none;
  opacity: 0.8;
}

.build-related a:hover {
  opacity: 1;
  text-decoration: underline;
}

.builds-seo {
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.builds-seo h2 {
  margin-bottom: 1rem;
}

.builds-seo p {
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 0.75rem;
}

.builds-cta {
  padding: 4rem 0;
  text-align: center;
}

.builds-cta h2 {
  margin-bottom: 0.75rem;
}

.builds-cta p {
  color: var(--muted);
  margin-bottom: 2rem;
}

/* ============================================
   Builds page — expanded classes
   ============================================ */

.builds-intro {
  font-size: 1.05rem;
  line-height: 1.65;
  margin-bottom: 0.5rem;
}

.builds-trust {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 1rem;
  letter-spacing: 0.03em;
}

.builds-quick-section {
  padding: 2.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.builds-quick-intro {
  color: var(--muted);
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
}

.builds-positioning {
  padding: 2.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.builds-positioning p {
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.build-summary {
  font-size: 1rem;
  color: var(--muted);
  font-style: italic;
  margin-bottom: 1.25rem;
  line-height: 1.55;
}

.build-why {
  background: rgba(255,255,255,0.04);
  border-left: 3px solid rgba(255,255,255,0.2);
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
}

.build-why h3 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}

.build-why p {
  margin: 0;
  line-height: 1.65;
  font-size: 0.95rem;
}

.builds-principles {
  padding: 2.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.build-related span {
  color: var(--muted);
  font-size: 0.875rem;
}

.builds-transition {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.builds-keyword {
  font-size: 0.875rem;
  color: var(--muted);
  margin-top: 0.25rem;
}

.hero-proof-link {
  margin-top: 0.75rem;
  font-size: 0.875rem;
}

.hero-proof-link a {
  color: var(--muted);
  text-decoration: none;
}

.hero-proof-link a:hover {
  color: var(--text-bright);
  text-decoration: underline;
}

.projects-positioning {
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 0.5rem;
}

.projects-positioning a {
  color: var(--text-bright);
  text-decoration: none;
}

.projects-positioning a:hover {
  text-decoration: underline;
}
