/* Home — the dual-threshold landing page.

   One job: route a new visitor to the spoiler-free novel page and an active
   reader to their archive. The two threshold cards are the whole page. */

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}

.home-hero {
  flex: 1;
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: 56px;
  align-items: center;
  padding: clamp(28px, 6vh, 64px) clamp(20px, 5vw, 56px);
  max-width: 1320px;
  margin: 0 auto;
  width: 100%;
}

.home-hero__text {
  animation: fadeUp .7s ease both;
}

.home-hero__title {
  font-size: clamp(44px, 6vw, 88px);
  line-height: .98;
  letter-spacing: .12em;
  margin: 0 0 22px;
  font-weight: 500;
}

.home-hero__tagline {
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.45;
  color: var(--color-neutral-200);
  max-width: 34em;
  margin: 0 0 10px;
}

.home-hero__premise {
  font-size: 15px;
  line-height: 1.65;
  color: var(--color-neutral-400);
  max-width: 38em;
  margin: 0 0 40px;
}

/* — threshold cards — */
.home-thresholds {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 640px;
}
.home-threshold {
  text-decoration: none;
  color: var(--color-text);
  border-radius: var(--radius-md);
  padding: 22px 22px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.home-threshold--novel {
  background: var(--color-surface);
  border: 1px solid var(--color-divider);
}
.home-threshold--archive {
  background: transparent;
  border: 1px solid var(--color-accent-800);
}
.home-threshold:hover {
  border-color: var(--color-accent);
  box-shadow: 0 0 24px color-mix(in srgb, var(--color-accent) 18%, transparent);
}
.home-threshold__eyebrow {
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.home-threshold__eyebrow--novel { color: var(--color-neutral-500); }
.home-threshold__eyebrow--archive { color: var(--color-accent-300); }
.home-threshold__title { font-size: 19px; font-weight: 500; }
.home-threshold__body {
  font-size: 13px;
  line-height: 1.55;
  color: var(--color-neutral-400);
}
.home-threshold__cta {
  font-size: 13px;
  color: var(--color-accent);
  margin-top: 6px;
}

/* — hero art — */
.home-hero__art {
  margin: 0;
  animation: fadeUp .7s ease .12s both;
}
.home-hero__art img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

/* — three-column strip — */
.home-strip {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  max-width: 1320px;
  margin: 0 auto;
  width: 100%;
  padding: 8px clamp(20px, 5vw, 56px) 48px;
}
.home-strip p {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--color-neutral-400);
  margin: 0;
}

@media (max-width: 860px) {
  .home-hero {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .home-hero__art {
    order: -1;
    max-width: 420px;
    margin: 0 auto;
  }
  .home-thresholds { grid-template-columns: 1fr; }
  .home-strip { grid-template-columns: 1fr; gap: 28px; }
}
