/* ==========================================================================
   Hero section, values band, and trust strip
   ========================================================================== */
.hero {
  position: relative;
  padding: 74px 0 0;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.hero .wrap {
  position: relative;
  z-index: 2;
  padding-bottom: 0;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 60px;
  align-items: center;
  padding-bottom: 150px;
}

.hero h1 {
  font-size: clamp(3.6rem, 9vw, 7.4rem);
  line-height: 0.92;
  letter-spacing: -0.035em;
  margin-bottom: 18px;
  color: var(--navy);
  font-weight: 500;
}

.hero h1::after {
  content: '';
  display: block;
  width: 132px;
  height: 5px;
  margin: 18px 0 22px;
  background: linear-gradient(90deg, var(--brass) 0%, var(--coral) 45%, var(--teal) 100%);
  border-radius: 3px;
}

.hero .sub-h {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(1.25rem, 2.2vw, 1.65rem);
  font-weight: 600;
  color: var(--blue);
  max-width: 520px;
  margin-bottom: 16px;
  letter-spacing: -0.015em;
  line-height: 1.28;
}

.hero p.lede {
  font-size: 1.02rem;
  max-width: 440px;
  margin-bottom: 32px;
}

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 38px;
}

.hero-trust {
  display: flex;
  gap: 12px 14px;
  flex-wrap: wrap;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.hero-trust span {
  display: flex;
  align-items: center;
  gap: 9px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 10px 18px 10px 12px;
  box-shadow: var(--shadow-sm);
  font-size: 0.87rem;
  color: var(--navy);
  font-weight: 600;
}

/* ---------- Big compass illustration ---------- */
.hero-art {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  align-self: stretch;
}

.hero-art .ring {
  width: min(430px, 100%);
  aspect-ratio: 1;
}

.needle-anim {
  transform-origin: 250px 250px;
  animation: settle 2.4s cubic-bezier(.2, 1, .3, 1) .25s both;
}

@keyframes settle {
  0% { transform: rotate(-38deg); }
  65% { transform: rotate(5deg); }
  100% { transform: rotate(0); }
}

.art-caption {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  border-radius: 3px;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.art-caption .live {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #3E8E6E;
  box-shadow: 0 0 0 4px rgba(62, 142, 110, 0.16);
}

.art-caption span {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
}

.hero-tags {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 34px;
  z-index: 3;
  display: flex;
  gap: 34px;
  flex-wrap: wrap;
}

.hero-tags span {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--beige);
}

.hero-tags span::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--brass);
}

/* ---------- Values band ---------- */
.values {
  background: var(--navy);
  padding: 22px 0;
}

.values-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  flex-wrap: wrap;
}

.values-row .v {
  font-family: 'Newsreader', serif;
  font-style: italic;
  font-size: 1.14rem;
  color: var(--beige-2);
  font-weight: 300;
}

.values-row .sep {
  color: var(--brass);
  font-size: 0.6rem;
}

/* ---------- Trust strip ---------- */
.strip {
  margin-top: 64px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.strip-cell {
  padding: 26px 14px;
  border-right: 1px solid var(--line);
  min-width: 0;
}

.strip-cell:last-child {
  border-right: none;
}

.strip-cell .k {
  font-family: 'Newsreader', serif;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--navy);
  white-space: nowrap;
}

.strip-cell:nth-child(1) .k { color: var(--blue); }
.strip-cell:nth-child(2) .k { color: var(--teal); }
.strip-cell:nth-child(3) .k { color: var(--brass); }
.strip-cell:nth-child(4) .k { color: var(--blue-soft); }
.strip-cell:nth-child(5) .k { color: var(--coral); }

.strip-cell .v {
  font-size: 0.82rem;
  color: var(--body);
  margin-top: 8px;
}

@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 44px; padding-bottom: 120px; }
  .hero-tags { gap: 18px; bottom: 24px; }
  .values-row { gap: 14px; }
  .values-row .v { font-size: 1rem; }
  .hero-art { order: -1; }
  .hero-art .ring { width: 260px; }
  .strip-grid { grid-template-columns: 1fr 1fr; }
  .strip-cell { border-bottom: 1px solid var(--line); }
  .strip-cell:nth-child(2n) { border-right: none; }
}
