/* =========================================
   PAGE-SPECIFIC STYLES
   ========================================= */

/* -----------------------------------------
   HOME — Benefits section
----------------------------------------- */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.benefit-item {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  transition: box-shadow var(--transition-base), border-color var(--transition-base);
}

.benefit-item:hover {
  box-shadow: var(--shadow-sm);
  border-color: var(--color-primary);
}

.benefit-item__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: rgba(122, 23, 40, 0.08);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-item__icon svg {
  width: 20px;
  height: 20px;
  color: var(--color-primary);
}

.benefit-item__title {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.benefit-item__desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: var(--leading-relaxed);
  margin: 0;
}

@media (max-width: 640px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }
}

/* -----------------------------------------
   ABOUT — Bio section
----------------------------------------- */
.about-photo-card {
  background: var(--color-bg-subtle);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: sticky;
  top: calc(var(--nav-height) + var(--space-lg));
}

.about-photo-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top center;
}

.about-photo-card__info {
  padding: var(--space-lg);
}

.about-photo-card__name {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-xs);
}

.about-photo-card__title {
  font-size: var(--text-sm);
  color: var(--color-primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-lg);
}

.about-credential {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.about-credential svg {
  width: 16px;
  height: 16px;
  color: var(--color-accent);
  flex-shrink: 0;
  margin-top: 2px;
}

/* -----------------------------------------
   CHOICES — Long-form article content
----------------------------------------- */
.choices-intro {
  max-width: 800px;
  margin-inline: auto;
}

.choices-intro p {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
}

.players-section {
  margin-top: var(--space-2xl);
}

.players-heading {
  text-align: center;
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-xl);
}

.agents-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
}

.agents-grid .agent-card:last-child {
  grid-column: 1 / -1;
  border-color: var(--color-primary);
}

.agents-grid .agent-card:last-child .agent-card__header {
  background: var(--color-primary);
}

.agents-grid .agent-card:last-child .agent-card__title {
  color: #fff;
}

.choices-article {
  max-width: 800px;
  margin-inline: auto;
}

.choices-article h3 {
  font-size: var(--text-xl);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-sm);
  border-bottom: 2px solid var(--color-accent);
}

.choices-article p {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  margin-bottom: var(--space-lg);
}

@media (max-width: 768px) {
  .agents-grid {
    grid-template-columns: 1fr;
  }

  .agents-grid .agent-card:last-child {
    grid-column: 1;
  }
}

/* -----------------------------------------
   PROMISE — Checklist
----------------------------------------- */
.promise-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  max-width: 800px;
  margin-inline: auto;
}

/* -----------------------------------------
   AREAS — Grid
----------------------------------------- */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: var(--space-md);
}

@media (max-width: 480px) {
  .areas-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
