a:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.7);
  outline-offset: 4px;
}

/* ================= HERO ================= */

.hero {
  padding: 5.2rem 1.5rem 3rem;
  text-align: center;
}

.hero-inner {
  max-width: 900px;
  margin: 0 auto;
}

.hero h1 {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 1.4rem;
}

.hero p {
  font-size: 1.1rem;
  line-height: 1.7;
  opacity: 0.85;
}

.tagline {
  margin-top: 1.2rem;
  font-size: 0.95rem;
  opacity: 0.7;
  letter-spacing: 0.3px;
}

/* ================= CONTENT ================= */

.inline-link {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  padding-bottom: 2px;
}
.inline-link:hover {
  border-color: rgba(255, 255, 255, 0.6);
}

.divider {
  width: 70px;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  margin: 3rem auto;
}

.section {
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  text-align: center;
}

.section h2 {
  font-family: "Orbitron", sans-serif;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

.section p {
  font-size: 1.05rem;
  line-height: 1.85;
  opacity: 0.85;
  margin-bottom: 1.3rem;
}

.punch {
  opacity: 1;
  font-weight: 600;
  letter-spacing: 0.2px;
}

.bullets {
  list-style: none;
  display: grid;
  gap: 0.8rem;
  margin-top: 1.6rem;
  padding: 0;
}

.bullets li {
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.95rem 1rem;
  opacity: 0.9;
}

/* ================= AVATAR ================= */

.avatar-wrap {
  display: grid;
  gap: 1.1rem;
  justify-items: center;
  margin: 1.6rem 0 0.5rem;
}

.avatar-img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.2);
  filter: contrast(110%);
  transition: transform 0.3s ease;
}

.avatar-img:hover {
  transform: scale(1.05);
}

.founder-box {
  margin-top: 2.5rem;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.founder-title {
  font-family: "Orbitron", sans-serif;
  font-size: 0.85rem;
  letter-spacing: 1px;
  opacity: 0.6;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

/* ================= CTA ================= */

.cta {
  display: inline-block;
  margin-top: 2.2rem;
  padding: 0.9rem 1.8rem;
  border: 1px solid #fff;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.2s ease;
}

.cta:hover {
  background: #fff;
  color: #000;
}

.cta-row {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.6rem;
}

.cta.secondary {
  border-color: rgba(255, 255, 255, 0.35);
  opacity: 0.95;
}

.cta.secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

@media (max-width: 520px) {
  .nav-links {
    gap: 1rem;
    font-size: 0.8rem;
  }
  .hero {
    padding: 4.2rem 1.25rem 2.5rem;
  }
}
