.home-hero {
  text-align: center;
  padding: 4rem 1.5rem 3rem;
  max-width: 680px;
  margin: 0 auto;
}

.home-hero h1 {
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--text-bright);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 0.5rem;
}

.home-hero .date-line {
  font-family: "Work Sans", system-ui, sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.home-hero .lead {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text);
  max-width: 600px;
  margin: 0 auto 1rem;
}

.home-hero .note {
  font-family: "Work Sans", system-ui, sans-serif;
  font-size: 0.82rem;
  color: var(--text-dim);
  margin-top: 0.25rem;
}

.home-divider {
  width: 60px;
  border: none;
  border-top: 2px solid var(--border);
  margin: 2.5rem auto;
}

.home-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 1.5rem 4rem;
}

.home-card {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.5rem 1.25rem;
  text-decoration: none;
  color: var(--text);
  background: var(--bg-inset);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.home-card:hover {
  border-color: var(--accent-dim);
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}

.home-card-title {
  font-family: "Work Sans", system-ui, sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-bright);
  margin-bottom: 0.5rem;
}

.home-card-desc {
  font-size: 0.83rem;
  line-height: 1.55;
  color: var(--text-dim);
}

/* Timeline */
.home-timeline {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 1.5rem 4rem;
}

.home-timeline h2 {
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-bright);
  text-align: center;
  margin-bottom: 2rem;
}

.tl-phase {
  margin-bottom: 2rem;
}

.tl-phase-label {
  font-family: "Work Sans", system-ui, sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 0.6rem;
  padding-left: 1.25rem;
}

.tl-track {
  border-left: 2px solid var(--border);
  margin-left: 0.35rem;
  padding-left: 1.25rem;
}

.tl-day {
  position: relative;
  padding: 0.4rem 0;
}

.tl-day::before {
  content: '';
  position: absolute;
  left: -1.6rem;
  top: 0.7rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: 2px solid var(--bg);
}

.tl-day.tl-key::before {
  background: var(--accent);
  width: 10px;
  height: 10px;
  left: -1.7rem;
  top: 0.65rem;
}

.tl-date {
  font-family: "Work Sans", system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text);
}

.tl-day.tl-key .tl-date {
  color: var(--text-bright);
}

.tl-desc {
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--text-dim);
  margin-top: 0.15rem;
}

.tl-read {
  font-family: "Work Sans", system-ui, sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--accent);
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.tl-read:hover {
  opacity: 1;
}

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