/* ---- Home ---- */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: var(--sp-9);
  position: relative;
}

.hero__eyebrow { color: var(--accent-label); margin-bottom: var(--sp-5); }

.hero__title {
  font-size: clamp(2.25rem, 5.2vw, var(--fs-4xl));
  max-width: 20ch;
  color: var(--c-charcoal);
  /* Light halo, not a dark one: text is dark-on-light now, so a light
     shadow is what pushes an overlapping dark monogram edge away from the
     letterforms instead of the two dark tones merging together. */
  text-shadow: 0 4px 30px rgba(243, 244, 246, 0.9), 0 1px 3px rgba(243, 244, 246, 0.95);
}

.hero__lede {
  margin-top: var(--sp-6);
  max-width: 34rem;
  font-size: var(--fs-md);
  color: var(--c-deep-blue-grey);
  text-shadow: 0 2px 16px rgba(243, 244, 246, 0.8);
}

/* Actions + scroll cue used to live in separate flow: the cue was
   absolutely positioned to a fixed distance from the hero's bottom edge
   while the buttons sat in the centered flex column above it — at shorter
   viewport heights the two could land on top of each other. Locked into one
   row now so they're always aligned to each other, never independently
   positioned. */
.hero__actions-row {
  margin-top: var(--sp-7);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-5);
}

.hero__actions {
  display: flex;
  gap: var(--sp-4);
  flex-wrap: wrap;
}

.hero__scroll-cue {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: var(--fs-2xs);
  letter-spacing: var(--track-label);
  text-transform: uppercase;
  color: var(--surface-muted);
}

.hero__scroll-cue-line {
  width: 1px;
  height: 34px;
  background: linear-gradient(var(--c-deep-blue-grey), transparent);
}

.preview-grid { margin-top: var(--sp-7); }

.preview-card {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  padding: var(--sp-6);
  border-top: 1px solid var(--surface-border);
  transition: border-color var(--dur-base) var(--ease-precision);
}
.preview-card:hover { border-color: var(--c-deep-blue-grey); }

.preview-card__num {
  font-family: var(--font-display);
  font-size: var(--fs-xs);
  color: var(--accent-label);
  letter-spacing: var(--track-label);
}

.preview-card__title { font-size: var(--fs-md); }
.preview-card__body { color: var(--surface-muted); font-size: var(--fs-sm); }
