/* Product name: PrivLens (Inter bold) + hero byline */

.brand-mark {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand-by {
  font-weight: 400;
  color: var(--text-faint);
  text-decoration: none;
}

.hero .hero-byline {
  font-size: 0.92em;
}

.logo-text {
  display: inline-flex;
  align-items: baseline;
  line-height: 1.15;
}

footer .logo-mark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

footer .logo-icon {
  display: block;
  height: 40px;
  width: auto;
}

footer .logo-word {
  display: block;
  height: 32px;
  width: auto;
}

footer {
  padding: 72px 0 64px;
}

.foot-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 28px 36px;
}

.foot-nav {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 28px 48px;
  flex: 1 1 360px;
  min-width: min(100%, 280px);
}

.foot-links,
.foot-links.foot-row,
.foot-links.foot-col {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: flex-start;
  gap: 12px;
}

.foot-links a {
  display: inline-flex;
  align-items: center;
  line-height: 1.2;
  color: var(--teal);
  font-size: 13px;
  text-decoration: none;
  transition: color 0.2s;
}

.foot-links a:hover {
  color: var(--teal-deep);
}

a.foot-cta {
  display: inline-flex;
  align-items: center;
  align-self: center;
  flex-shrink: 0;
  line-height: 1;
  font-family: var(--mono);
  font-size: 13px;
  background: var(--teal);
  color: #ffffff;
  padding: 12px 22px;
  border-radius: 7px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.2s, background 0.2s;
}

a.foot-cta:hover {
  transform: translateY(-1px);
  color: #ffffff;
  background: var(--teal-deep);
  box-shadow: 0 6px 20px rgba(0, 120, 212, 0.28);
}

@media (max-width: 720px) {
  .foot-nav {
    flex-direction: column;
    gap: 20px;
  }

  a.foot-cta {
    width: 100%;
    justify-content: center;
  }
}
