.nearby-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 24px;
}

.nearby-proof span {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.nearby-proof b { color: var(--teal); }

.sample-section {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 84px;
  padding-block: 106px;
  border-top: 1px solid var(--line);
}

.sample-intro h2 {
  margin: 0;
  font-family: "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  font-size: clamp(46px, 4.8vw, 66px);
  font-weight: 500;
  letter-spacing: -.045em;
  line-height: 1.03;
}

.sample-intro > p:last-child {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.spec-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: white;
  box-shadow: 0 24px 70px rgba(8, 47, 58, .1);
}

.spec-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 24px;
  background: var(--ink);
  color: white;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.spec-head b { color: var(--teal); }
.spec-card dl { margin: 0; }

.spec-card dl > div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 22px;
  padding: 19px 24px;
  border-bottom: 1px solid var(--line);
}

.spec-card dl > div:last-child { border-bottom: 0; }

.spec-card dt {
  color: var(--teal);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.spec-card dd {
  margin: 0;
  color: var(--muted);
  font-family: Georgia, serif;
  font-size: 17px;
  line-height: 1.45;
}

@media (max-width: 900px) {
  .sample-section { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .sample-section { padding-block: 74px; }
  .spec-card dl > div { grid-template-columns: 1fr; gap: 7px; }
}

/* Preserve the original portrait while making the small byline image legible. */
.byline { gap: 18px; }

.byline .avatar {
  display: block;
  flex: 0 0 74px;
  width: 74px;
  height: 74px;
  overflow: hidden;
  border: 3px solid var(--mint);
  border-radius: 50%;
  background: #d9e2e0;
  box-shadow: 0 0 0 1px rgba(8, 47, 58, .18), 0 8px 20px rgba(8, 47, 58, .12);
}

.byline .avatar img {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 0;
  object-fit: cover;
  object-position: center 22%;
  transform: scale(1.28);
  transform-origin: 50% 34%;
  filter: contrast(1.05) saturate(1.02);
  backface-visibility: hidden;
}

/* Candidate-owned text lockup. Company logos are intentionally excluded. */
.wordmark {
  gap: 12px;
  font-size: 29px;
  letter-spacing: -.025em;
}


/* Recruiter-first hero: make the landscape brief the primary visual. */
.hero {
  display: block;
  min-height: 0;
  padding-block: 78px 104px;
}

.hero-copy {
  max-width: 1080px;
}

.hero h1 {
  max-width: 1050px;
  font-size: clamp(62px, 7vw, 100px);
}

.lede {
  max-width: 880px;
}

.video-column {
  width: min(1100px, 100%);
  margin: 64px auto 0;
}

.video-shell {
  padding: 14px;
  border-radius: 30px;
  box-shadow: 28px 28px 0 var(--mint), 0 42px 90px rgba(8,47,58,.2);
}

.video-shell video {
  border-radius: 18px;
}

.video-note {
  margin-top: 32px;
}

/* A readable identity card, not a thumbnail-sized avatar. */
.byline {
  gap: 22px;
  margin-top: 38px;
}

.byline .avatar {
  position: relative;
  flex: 0 0 112px;
  width: 112px;
  height: 112px;
  border: 4px solid var(--mint);
  border-radius: 24px;
  box-shadow: 0 0 0 1px rgba(8,47,58,.18), 0 12px 28px rgba(8,47,58,.14);
}

.byline .avatar img {
  object-position: center 20%;
  transform: none;
  filter: contrast(1.04) saturate(1.02);
}

.byline strong {
  font-size: 18px;
}

.byline div span {
  font-size: 14px;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .hero {
    padding-block: 58px 82px;
  }

  .video-column {
    margin-top: 48px;
  }
}

@media (max-width: 560px) {
  .hero h1 {
    font-size: 47px;
  }

  .byline .avatar {
    flex-basis: 88px;
    width: 88px;
    height: 88px;
    border-radius: 19px;
  }

  .video-shell {
    padding: 8px;
    border-radius: 20px;
    box-shadow: 14px 14px 0 var(--mint), 0 24px 50px rgba(8,47,58,.18);
  }

  .video-note {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }
}
