/* === Reset & Base === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

a { color: inherit; text-decoration: none; }

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

/* === Header === */
.site-header {
  background: #fff;
  border-bottom: 1px solid #e8e8e4;
  padding: 18px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: #1a1a1a;
}

.logo span { color: #4f46e5; }

nav a {
  margin-left: 28px;
  font-family: 'Helvetica Neue', sans-serif;
  font-size: 0.9rem;
  color: #555;
  transition: color 0.2s;
}

nav a:hover { color: #4f46e5; }

/* === Disclosure === */
.disclosure {
  background: #f0f0eb;
  border-bottom: 1px solid #e0e0da;
  padding: 8px 0;
  font-family: 'Helvetica Neue', sans-serif;
  font-size: 0.78rem;
  color: #666;
  text-align: center;
}

/* === Hero === */
.hero {
  padding: 72px 0 56px;
  text-align: center;
}

.hero h1 {
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: -1px;
  color: #111;
  line-height: 1.2;
  margin-bottom: 18px;
}

.hero p {
  font-size: 1.15rem;
  color: #555;
  max-width: 580px;
  margin: 0 auto;
  font-family: 'Helvetica Neue', sans-serif;
}

/* === Sections === */
.section { padding: 56px 0; }
.section-alt { background: #f4f4f0; }

.section-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 32px;
  color: #111;
}

/* === Card Grid === */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.card {
  background: #fff;
  border: 1px solid #e8e8e4;
  border-radius: 10px;
  padding: 28px;
  display: block;
  transition: box-shadow 0.2s, transform 0.2s;
}

.card:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}

.card-tag {
  font-family: 'Helvetica Neue', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #4f46e5;
  margin-bottom: 10px;
}

.card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 10px;
}

.card p {
  font-size: 0.92rem;
  color: #666;
  font-family: 'Helvetica Neue', sans-serif;
  margin-bottom: 18px;
}

.card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: 'Helvetica Neue', sans-serif;
  font-size: 0.85rem;
}

.rating {
  font-weight: 700;
  color: #111;
}

.read-more { color: #4f46e5; }

/* === Category Grid === */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}

.category-card {
  background: #fff;
  border: 1px solid #e8e8e4;
  border-radius: 8px;
  padding: 20px;
  font-family: 'Helvetica Neue', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #333;
  text-align: center;
  transition: background 0.2s, color 0.2s;
}

.category-card:hover {
  background: #4f46e5;
  color: #fff;
  border-color: #4f46e5;
}

/* === Review Page === */
.review-header { padding: 56px 0 32px; }
.review-header .breadcrumb {
  font-family: 'Helvetica Neue', sans-serif;
  font-size: 0.8rem;
  color: #999;
  margin-bottom: 16px;
}
.review-header h1 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 12px;
}
.review-header .meta {
  font-family: 'Helvetica Neue', sans-serif;
  font-size: 0.85rem;
  color: #888;
}

.score-card {
  background: #fff;
  border: 1px solid #e8e8e4;
  border-radius: 12px;
  padding: 32px;
  margin: 32px 0;
}

.score-main {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #f0f0eb;
}

.score-big { font-size: 3rem; font-weight: 700; color: #111; }
.score-big span { font-size: 1.5rem; color: #999; }
.score-summary { font-family: 'Helvetica Neue', sans-serif; font-size: 0.95rem; color: #555; max-width: 420px; }

.score-breakdown {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px;
}

.score-item p:first-child {
  font-family: 'Helvetica Neue', sans-serif;
  font-size: 0.75rem;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.score-item p:last-child {
  font-family: 'Helvetica Neue', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #111;
}

.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 32px 0;
}

.pros, .cons {
  background: #fff;
  border: 1px solid #e8e8e4;
  border-radius: 10px;
  padding: 24px;
}

.pros h3 { color: #16a34a; margin-bottom: 14px; font-size: 1rem; }
.cons h3 { color: #dc2626; margin-bottom: 14px; font-size: 1rem; }

.pros ul, .cons ul {
  list-style: none;
  font-family: 'Helvetica Neue', sans-serif;
  font-size: 0.9rem;
  color: #555;
}

.pros ul li, .cons ul li { margin-bottom: 10px; padding-left: 20px; position: relative; }
.pros ul li::before { content: "✓"; position: absolute; left: 0; color: #16a34a; font-weight: 700; }
.cons ul li::before { content: "✗"; position: absolute; left: 0; color: #dc2626; font-weight: 700; }

.verdict {
  background: #f4f4f0;
  border-left: 4px solid #4f46e5;
  border-radius: 0 8px 8px 0;
  padding: 24px;
  margin: 32px 0;
  font-family: 'Helvetica Neue', sans-serif;
  font-size: 0.95rem;
  color: #333;
}

.verdict strong { display: block; margin-bottom: 8px; font-size: 1rem; color: #111; }

.cta-box {
  background: #fff;
  border: 1px solid #e8e8e4;
  border-radius: 10px;
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin: 32px 0;
}

.cta-box p { font-family: 'Helvetica Neue', sans-serif; font-size: 0.9rem; color: #555; }
.cta-box strong { display: block; font-size: 1rem; color: #111; margin-bottom: 4px; }

.btn {
  display: inline-block;
  background: #4f46e5;
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  font-family: 'Helvetica Neue', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  transition: background 0.2s;
  white-space: nowrap;
}

.btn:hover { background: #4338ca; }

/* === About / Static Pages === */
.page-content { padding: 64px 0; max-width: 720px; }
.page-content h1 { font-size: 2rem; margin-bottom: 24px; }
.page-content h2 { font-size: 1.3rem; margin: 32px 0 12px; }
.page-content p { font-family: 'Helvetica Neue', sans-serif; font-size: 0.95rem; color: #444; margin-bottom: 16px; }

/* === Footer === */
.site-footer {
  background: #111;
  color: #999;
  padding: 32px 0;
  text-align: center;
  font-family: 'Helvetica Neue', sans-serif;
  font-size: 0.82rem;
}

.site-footer a { color: #aaa; margin: 0 8px; }
.site-footer a:hover { color: #fff; }

/* === Responsive === */
@media (max-width: 640px) {
  .hero h1 { font-size: 1.9rem; }
  .pros-cons { grid-template-columns: 1fr; }
  .score-main { flex-direction: column; gap: 16px; }
  nav a { margin-left: 16px; }
}
