/* Homepage-specific layout */

.hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 3rem 1.75rem 2.5rem;
  text-align: center;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-subtle);
  margin-bottom: 1.25rem;
}

.hero-kicker::before,
.hero-kicker::after {
  content: "";
  width: 1.5rem;
  height: 1px;
  background: var(--border-strong);
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.05;
  margin: 0 auto 1.15rem;
  max-width: 18ch;
}

.hero-sub {
  margin: 0 auto 2rem;
  max-width: 36rem;
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.65;
  color: var(--fg-muted);
}

.hero-search {
  margin: 0 auto 1.5rem;
  max-width: 32rem;
}

.hero .pill-row {
  justify-content: center;
  margin-bottom: 3rem;
}

.hero-picks {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
  text-align: left;
}

@media (min-width: 768px) {
  .hero-picks { grid-template-columns: repeat(3, 1fr); }
}

.hero-pick {
  padding: 1.25rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.hero-pick:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.hero-pick-label {
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-subtle);
  margin-bottom: 0.5rem;
}

.hero-pick.is-featured {
  border-color: var(--lime);
  background: linear-gradient(180deg, var(--lime-muted) 0%, var(--bg-elevated) 100%);
}

.hero-pick.is-featured .hero-pick-label { color: var(--navy); }

.hero-pick h3 {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.35;
  margin: 0 0 0.5rem;
}

.hero-pick p {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--fg-muted);
  line-height: 1.5;
}

.hero-pick-meta {
  margin-top: 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--fg-subtle);
}

.methodology {
  background: var(--bg-muted);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 4rem 0;
}

.methodology-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.75rem;
}

.methodology-header {
  max-width: 36rem;
  margin-bottom: 2.5rem;
}

.methodology-header h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.1;
  margin: 0 0 0.85rem;
}

.methodology-header p {
  margin: 0;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--fg-muted);
}

.featured-split {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 960px) {
  .featured-split {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: start;
  }
}

.featured-main-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.featured-main-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.featured-main-card a { text-decoration: none; color: inherit; }

.featured-main-thumb {
  height: 14rem;
  background: linear-gradient(145deg, #2d3a5c 0%, #1e2a45 60%, #b4f04033 100%);
  position: relative;
}

.featured-main-body {
  padding: 1.5rem 1.75rem 1.75rem;
}

.featured-side-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.featured-side-item {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s ease, transform 0.15s ease;
}

.featured-side-item:hover {
  border-color: var(--border-strong);
  transform: translateX(3px);
}

.featured-side-thumb {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: var(--radius);
  flex-shrink: 0;
  background: var(--bg-muted);
}

.featured-side-item h4 {
  font-size: 0.9375rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.35;
  margin: 0 0 0.35rem;
}

.featured-side-item p {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--fg-muted);
  line-height: 1.45;
}

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

@media (min-width: 768px) {
  .comparison-row { grid-template-columns: repeat(2, 1fr); }
}

.comparison-card {
  padding: 1.35rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.comparison-card:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.comparison-card h3 {
  font-size: 1.0625rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 0.5rem;
}

.comparison-card p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.55;
}

.comparison-winner {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.85rem;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--navy);
}

.comparison-winner::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--lime);
}
