/* Landing hero structure. The canvas positions everything absolutely inside a
   fixed 92vh block; here the same composition uses flow layout so it can stack. */

.hero {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-block-start: clamp(3rem, 20vh, 14rem);
}

.hero__body {
  position: relative;
  padding-inline: var(--gutter);
  padding-block-end: clamp(2rem, 6vw, 4rem);
}

.hero__title {
  font-size: clamp(2.25rem, 7.8vw, 4.75rem);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.02;
  letter-spacing: -0.028em;
  margin-block-end: clamp(2rem, 12vh, 8rem);
  text-wrap: balance;
}

.hero__intro { max-width: 30rem; }

.hero__intro p {
  color: var(--text-2);
  font-size: 1rem;
  margin-block-end: 1.25rem;
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  font-size: var(--fs-sm);
  font-weight: 600;
  border-block-end: 1px solid rgba(255, 255, 255, 0.3);
  padding-block-end: 4px;
}

.hero__cta:hover { color: var(--text); }

/* Monospace strip pinned to the bottom of the hero */
.hero__strip {
  position: relative;
  display: flex;
  border-block-start: 1px solid var(--border-strong);
  font-family: var(--font-mono);
  font-size: var(--fs-2xs);
  letter-spacing: 0.05em;
  color: #ccc;
}

.hero__strip > div { padding: 16px var(--gutter); }

.hero__strip > div:first-child {
  flex: 1;
  border-inline-end: 1px solid rgba(255, 255, 255, 0.2);
}

.hero__strip > div:last-child { flex: 2; }

@media (max-width: 720px) {
  .hero {
    min-height: auto;
    padding-block-start: 8rem;
  }

  .hero__strip { flex-direction: column; }

  .hero__strip > div:first-child {
    border-inline-end: 0;
    border-block-end: 1px solid rgba(255, 255, 255, 0.2);
  }
}
