/* ===== Theme Vars (Technical Force vibe) ===== */
/* ===== Base ===== */
body {
  font-family: "Inter", ui-sans-serif, system-ui;
}

/* ===== Hero ===== */
.tfx-hero {
  padding: 170px 0 72px;
  text-align: center;
  overflow: hidden;
}
.tfx-hero .tfx-title {
  font-family: "Oleo Script", system-ui;
  font-size: 55px;
  font-weight: 800;
  color: #012840;
}
.tfx-hero .tfx-sub {
  margin-top: 10px;
  color: #012840;
  max-width: 760px;
  margin-inline: auto;
}
.tfx-hero .tfx-hero-lines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(120deg, transparent 0 46px, rgba(102, 126, 234, 0.06) 46px 48px), repeating-linear-gradient(300deg, transparent 0 56px, rgba(11, 104, 255, 0.06) 56px 58px);
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 20%, black 80%, transparent);
          mask-image: linear-gradient(to bottom, transparent, black 20%, black 80%, transparent);
  pointer-events: none;
}

/* ===== Filter Bar ===== */
.tfx-team {
  background-color: white;
}
.tfx-team .tfx-content {
  font-family: "Oleo Script", system-ui;
  font-size: 55px;
  font-weight: 800;
  color: #012840;
  text-align: center;
}
.tfx-team .founder-main p {
  color: #012840;
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  text-align: left;
}
.tfx-team .founder-main h4 {
  font-size: 24px;
  font-weight: 600;
  color: #012840;
}
.tfx-team .founder-main .ofc {
  font-size: 22px;
  font-weight: 500;
  font-family: "Oleo Script", system-ui;
  position: relative;
}
.tfx-team .founder-main .ofc::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100px;
  height: 2px;
  background: linear-gradient(135deg, #042461, #5AB2FF);
  border-radius: 1px;
}

/* ===== Team Cards ===== */
.tfx-card {
  background: #012840;
  border: 1px solid rgba(102, 126, 234, 0.45);
  border-radius: 18px;
  padding: 22px;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.tfx-card:hover {
  transform: translateY(-6px);
  border-color: rgba(11, 104, 255, 0.6);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.35);
}
.tfx-card:hover::after {
  opacity: 1;
}
.tfx-card::after {
  content: "";
  position: absolute;
  inset: -120% -40%;
  background: linear-gradient(120deg, transparent 35%, rgba(255, 255, 255, 0.08) 50%, transparent 65%);
  transform: rotate(8deg);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.tfx-avatar {
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/3;
  border: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 14px;
}
.tfx-avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  filter: saturate(1.05) contrast(1.02);
}

.tfx-name {
  font-weight: 700;
  font-size: 1.05rem;
  margin: 6px 0 2px;
}

.tfx-role {
  color: #5AB2FF;
  font-weight: 600;
  margin-bottom: 10px;
}

.tfx-meta {
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
  color: white;
  font-size: 0.92rem;
}
.tfx-meta li + li {
  margin-top: 4px;
}

.tfx-socials {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
}
.tfx-socials a {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  border: 1px solid rgba(102, 126, 234, 0.45);
  color: #e6e9ff;
  transition: 0.2s ease;
}
.tfx-socials a:hover {
  background: #0b68ff;
  border-color: transparent;
}

.tfx-cta {
  width: 100%;
  border: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, #042461, #5AB2FF);
  color: #fff;
  padding: 10px 14px;
  font-weight: 600;
  letter-spacing: 0.2px;
  transition: 0.25s ease;
}
.tfx-cta:hover {
  filter: brightness(1.06);
  box-shadow: inset 0 -42px 60px rgba(255, 255, 255, 0.06);
}

/* ===== Modal ===== */
.tfx-modal .modal-dialog {
  max-width: 920px;
}

.tfx-modal-content {
  background: #012840;
  border: 1px solid rgba(102, 126, 234, 0.45);
  color: #e6e9ff;
  border-radius: 20px;
  padding: 24px;
  position: relative;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.35);
}

.tfx-close {
  position: absolute;
  right: 14px;
  top: 14px;
  filter: invert(1);
}

.tfx-modal-avatar {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 3/3;
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.tfx-modal-avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.tfx-modal-name {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.tfx-modal-role {
  color: #667eea;
  font-weight: 700;
  margin-bottom: 10px;
}

.tfx-modal-bio {
  opacity: 0.9;
}

.tfx-skillset {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.tfx-skill {
  border: 1px solid rgba(102, 126, 234, 0.45);
  color: #e6e9ff;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.88rem;
  background: rgba(255, 255, 255, 0.04);
}

/* ===== Hover Utilities ===== */
@media (hover: hover) {
  .tfx-card:hover .tfx-avatar img {
    transform: scale(1.02);
    transition: transform 0.25s ease;
  }
}
@media (max-width: 480px) {
  .tfx-title {
    font-size: 1.8rem !important;
    line-height: 1.3 !important;
  }
}/*# sourceMappingURL=Team.css.map */